-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSendRTA.cs
More file actions
252 lines (224 loc) · 9.11 KB
/
Copy pathSendRTA.cs
File metadata and controls
252 lines (224 loc) · 9.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Configuration;
namespace SendRTA
{
public partial class SendRTA : Form
{
private readonly string _RTAKey;
private readonly string _sourceId;
private readonly string _platformTypeId;
private int returnCode = 0;
public SendRTA()
{
InitializeComponent();
_RTAKey = ConfigurationManager.AppSettings["RTAKey"];
_sourceId = ConfigurationManager.AppSettings["sourceId"];
_platformTypeId = ConfigurationManager.AppSettings["platformTypeId"];
}
private void feedRTA_SendRTABatch(object sender, EventArgs e)
{
//Service reference to //http://localhost/TeleoptiWFM/RTA/TeleoptiRtaService.svc
var rta = new RTA.TeleoptiRtaServiceClient();
var batchId = DateTime.UtcNow;
var externalUserStateBatch = new RTA.ExternalUserState[5];
//Create one ExternalUserState and add a few agents to it
externalUserStateBatch[0] = new RTA.ExternalUserState()
{
BatchId = batchId,
IsLoggedOn = true,
IsSnapshot = false,
SecondsInState = 60,
StateCode = "ADMIN",
StateDescription = "Doing Admin stuff",
Timestamp = DateTime.UtcNow,
UserCode = "2001"
};
externalUserStateBatch[1] = new RTA.ExternalUserState()
{
BatchId = batchId,
IsLoggedOn = true,
IsSnapshot = false,
SecondsInState = 60,
StateCode = "EMAIL",
StateDescription = "Working the email queue",
Timestamp = DateTime.UtcNow,
UserCode = "2002"
};
externalUserStateBatch[2] = new RTA.ExternalUserState()
{
BatchId = batchId,
IsLoggedOn = true,
IsSnapshot = false,
SecondsInState = 60,
StateCode = "IDLE",
StateDescription = "Ready to take calls",
Timestamp = DateTime.UtcNow,
UserCode = "0063"
};
externalUserStateBatch[3] = new RTA.ExternalUserState()
{
BatchId = batchId,
IsLoggedOn = true,
IsSnapshot = false,
SecondsInState = 60,
StateCode = "InCall",
StateDescription = "Currenty on a call",
Timestamp = DateTime.UtcNow,
UserCode = "2000"
};
externalUserStateBatch[4] = new RTA.ExternalUserState()
{
BatchId = batchId,
IsLoggedOn = true,
IsSnapshot = false,
SecondsInState = 60,
StateCode = "WEB",
StateDescription = "Working the web chat",
Timestamp = DateTime.UtcNow,
UserCode = "0019"
};
//Save the batch the the Teleopti RTA service
returnCode = rta.SaveBatchExternalUserState(
_RTAKey,
_platformTypeId,
_sourceId,
externalUserStateBatch);
}
private void feedRTA_SendRTASingleuser(object sender, EventArgs e)
{
var rta = new RTA.TeleoptiRtaServiceClient();
returnCode = rta.SaveExternalUserState(
_RTAKey, //authenticationKey
"0238", //userCode, e.i the ACD Login ID
"WEB", //stateCode, the RTA state using the identifier for the state
"Working the web chat", //stateDescription, the RTA state using the friendly name/description
true, //isLoggedOn
0, //secondsInState, not used
DateTime.UtcNow, //timestamp
_platformTypeId, //platformTypeId
_sourceId, //sourceId
DateTime.UtcNow, //batchId
false //isSnapshot
);
}
private void feedRTA_SendRTASnapShot(object sender, EventArgs e)
{
var rta = new RTA.TeleoptiRtaServiceClient();
var snapshotBatchId = DateTime.UtcNow;
//Create the array that will hold all posts in the batch
var externalUserStateBatchSnapShot = new RTA.ExternalUserState[2];
//Create one ExternalUserState and add it to the array
externalUserStateBatchSnapShot[0] = new RTA.ExternalUserState()
{
BatchId = snapshotBatchId,
IsLoggedOn = true,
IsSnapshot = true,
SecondsInState = 60,
StateCode = "WEB",
StateDescription = "Working the web chat",
Timestamp = DateTime.UtcNow,
UserCode = "0085"
};
//Create a second ExternalUserState and add it to the array
externalUserStateBatchSnapShot[1] = new RTA.ExternalUserState()
{
BatchId = snapshotBatchId,
IsLoggedOn = true,
IsSnapshot = true,
SecondsInState = 60,
StateCode = "InCall",
StateDescription = "Talking",
Timestamp = DateTime.UtcNow,
UserCode = "2003"
};
//Save the batch
returnCode = rta.SaveBatchExternalUserState(
_RTAKey,
_platformTypeId,
_sourceId,
externalUserStateBatchSnapShot);
//Close the snapshot batch, this will logout everybody _not_ part of the Array externalUserStateBatchSnapShot[]
returnCode = rta.SaveExternalUserState(
_RTAKey,
"",
"",
"",
true,
0,
snapshotBatchId,
_platformTypeId,
_sourceId,
snapshotBatchId,
true
);
}
private void feedRTA_SendEmptySnapShot(object sender, EventArgs e)
{
var rta = new RTA.TeleoptiRtaServiceClient();
var snapshotBatchId = DateTime.UtcNow;
//Create the array that will hold all posts in the batch
var externalUserStateBatchSnapShot = new RTA.ExternalUserState[1];
//Create one fake state and add it to the array
externalUserStateBatchSnapShot[0] = new RTA.ExternalUserState()
{
BatchId = snapshotBatchId,
IsLoggedOn = true,
IsSnapshot = true,
SecondsInState = 60,
StateCode = "Dummy",
StateDescription = "We need one state",
Timestamp = DateTime.UtcNow,
UserCode = "00000000" //one fake agent
};
//Save the batch
returnCode = rta.SaveBatchExternalUserState(
_RTAKey,
_platformTypeId,
_sourceId,
externalUserStateBatchSnapShot);
//Close the snapshot batch, this will logout everybody _not_ part of the Array externalUserStateBatchSnapShot[]
returnCode = rta.SaveExternalUserState(
_RTAKey,
"",
"",
"",
true,
0,
snapshotBatchId,
_platformTypeId,
_sourceId,
snapshotBatchId,
true
);
}
private void feedRTA_SendOneAgentCustomStateCode(object sender, EventArgs e)
{
string _agentAcd = AcdLogonId.GetItemText(AcdLogonId.SelectedItem);
string[] agent = _agentAcd.Split('\t');
string _acdLogonId = agent[0];
string _stateCode = StateCode.GetItemText(StateCode.SelectedItem);
var rta = new RTA.TeleoptiRtaServiceClient();
returnCode = rta.SaveExternalUserState(
_RTAKey, //authenticationKey
_acdLogonId, //userCode, e.i the ACD Login ID
_stateCode, //stateCode, the RTA state using the identifier for the state
"is not used for know states", //stateDescription, the RTA state using the friendly name/description
true, //isLoggedOn
0, //secondsInState, not used
DateTime.UtcNow, //timestamp
_platformTypeId, //platformTypeId
_sourceId, //sourceId
DateTime.UtcNow, //batchId
false //isSnapshot
);
}
}
}