This repository was archived by the owner on Nov 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathimplAgent.go
389 lines (366 loc) · 11.4 KB
/
implAgent.go
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
package avayacloud
import (
"encoding/json"
"fmt"
"sort"
"strconv"
"strings"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
)
type agentsHandle struct {
s *Session
position int
}
type stationType struct {
ID int `json:"id"`
Name string `json:"name"`
Extension string `json:"extension"`
SecurityCode string `json:"securityCode"`
ClientID int `json:"clientId"`
AgentStationGroupID int `json:"agentStationGroupId"`
Username string `json:"username"`
}
func (s *Session) generateExtension(subAccountID int, extensionType string) (string, error) {
url := "/spokenAbc/extensions/next/" + strconv.Itoa(subAccountID) + "/type/" + extensionType
body, err := s.postRaw(url, "text/plain", nil)
if err != nil {
s.log.WithFields(logrus.Fields{
"extensionType": extensionType,
"response": prettyError(body),
}).WithError(err).Error("Error on generating an extension")
}
return string(body), err
}
func (s *Session) getAgentStationGroupID(subAccountID int) (int, error) {
body, err := s.get("/spokenAbc/agentStationGroups/client/" + strconv.Itoa(subAccountID))
type agentStationGroup struct {
ID int `json:"id"`
Name string `json:"name"`
Active bool `json:"active"`
}
asg := []agentStationGroup{}
err = json.Unmarshal(body, &asg)
if err != nil {
return 0, err
}
if len(asg) == 0 {
return 0, errors.New("There are no agent station groups -- expected at least one")
}
sort.Slice(asg[:], func(i, j int) bool {
return asg[i].ID < asg[j].ID
})
return asg[0].ID, nil
}
func (s *Session) getSkills() ([]string, error) {
sv, err := s.getSkillIDs(s.defaultSubAccountID, "AGENT")
if err != nil {
return []string{}, err
}
rv := make([]string, len(sv))
for i, v := range sv {
rv[i] = v.SkillName
}
return rv, nil
}
func (s *Session) getNewNumber(numberClass string) (value int, err error) {
path := fmt.Sprintf("/spokenAbc/numbers/next/%d/type/%s", s.defaultSubAccountID, numberClass)
body, err := s.postRaw(path, "application/text", []byte{})
if err != nil {
return 0, err
}
n, err := strconv.Atoi(string(body))
return n, err
}
func (s *Session) createSkill(name string) error {
newNumber, err := s.getNewNumber("SKILL")
if err != nil {
return err
}
type skillType struct {
Name string `json:"name"`
Number int `json:"number"`
ClientID int `json:"clientId"`
SkillType string `json:"skillType"`
}
skill := skillType{
ClientID: s.defaultSubAccountID,
Name: stationName,
Number: newNumber,
SkillType: "AGENT",
}
_, err = s.postJSON("/spokenAbc/jobs/skills", skill)
if err != nil {
return err
}
_, err = s.waitFor(func() (interface{}, error) {
skills, err := s.getSkills()
if err != nil {
return "", err
}
for _, value := range skills {
if strings.EqualFold(value, name) {
return value, nil
}
}
return "", errors.New("Skill was not created")
}, waitRetries, waitInterval, true)
if err != nil {
return err
}
return nil
}
func (s *Session) updateAgentSkills(username string, skills []Skill) error {
return errors.New("Unimplemented")
}
func (s *Session) getSkillIDs(subAccountID int, skillType string) ([]Skill, error) {
body, err := s.get("/spokenAbc/skills/multiClientSkills?clientIds=" + strconv.Itoa(subAccountID) + "&skillType=AGENT")
if err != nil {
return []Skill{}, err
}
type skill struct {
ID int `json:"id"`
Name string `json:"name"`
Number int `json:"number"`
Extension string `json:"extension"`
SkillType string `json:"skillType"`
}
type skillResponse struct {
SkillResponses map[string][]skill `json:"skillResponses"`
}
sr := skillResponse{}
err = json.Unmarshal(body, &sr)
if err != nil {
return []Skill{}, err
}
skillList, exists := sr.SkillResponses[strconv.Itoa(subAccountID)]
if !exists {
return []Skill{}, errors.New("Getting Skills: The sub account didn't respond")
}
if len(skillList) == 0 {
return []Skill{}, errors.New("There are no skills -- expected at least one")
}
rv := make([]Skill, 0, len(skillList))
for _, v := range skillList {
if strings.EqualFold(skillType, v.SkillType) {
rv = append(rv, Skill{
SkillNumber: v.Number,
SkillName: v.Name,
SkillPriority: -1, // Don't know how to get this
})
}
}
return rv, nil
}
func (s *Session) getAgent(username string) (Agent, error) {
body, err := s.get("/spokenAbc/agents/username/" + username)
if err != nil {
return Agent{}, errors.WithMessage(err, "doing getAgent()")
}
rv := Agent{}
err = json.Unmarshal(body, &rv)
if err != nil {
return Agent{}, errors.WithMessage(err, "doing unmarshal in getAgent()")
}
return rv, err
}
func (s *Session) getAgents() *Handle {
return &Handle{internalHandle: &agentsHandle{s: s}}
}
func (h *agentsHandle) getMoreAgents() ([]Agent, error) {
body, err := h.s.get("/spokenAbc/agents?clientId=" + strconv.Itoa(h.s.defaultSubAccountID))
if err != nil {
return []Agent{}, errors.WithMessage(err, "doing getMoreAgents()")
}
rv := []Agent{}
err = json.Unmarshal(body, &rv)
if err != nil {
return []Agent{}, errors.WithMessage(err, "doing unmarshal in getMoreAgents()")
}
if h.position == len(rv) {
return []Agent{}, nil
}
h.position += len(rv)
if h.position > len(rv) {
return []Agent{}, errors.New("Call to getMoreAgents() when you are past the end")
}
return rv, err
}
func (s *Session) getStation(subAccountID int, username string) (stationType, error) {
body, err := s.get("/spokenAbc/stations?clientId=" + strconv.Itoa(subAccountID))
if err != nil {
return stationType{}, errors.WithMessage(err, "doing getStation()")
}
stations := []stationType{}
err = json.Unmarshal(body, &stations)
if err != nil {
return stationType{}, errors.WithMessage(err, "doing unmarshal in getStation()")
}
for _, s := range stations {
if s.Username == username {
return s, nil
}
}
return stationType{}, errors.New("Station not found")
}
func (s *Session) createStation(agentStationGroupID, subAccountID int, stationExtension, agentUsername string) (stationType, error) {
station := stationType{
AgentStationGroupID: agentStationGroupID,
ClientID: subAccountID,
Extension: stationExtension,
Name: stationName,
SecurityCode: generateSecurityCode(stationExtension),
Username: agentUsername,
}
_, err := s.postJSON("/spokenAbc/jobs/stations", station)
if err != nil {
return stationType{}, err
}
newStation, err := s.waitFor(func() (interface{}, error) { x, err := s.getStation(subAccountID, agentUsername); return x, err }, waitRetries, waitInterval, true)
if err != nil {
return stationType{}, err
}
return newStation.(stationType), err
}
func (s *Session) deleteStation(subAccountID int, username string) error {
station, err := s.getStation(subAccountID, username)
if err != nil {
return err
}
_, err = s.delete("/spokenAbc/jobs/stations/" + strconv.Itoa(station.ID))
if err != nil {
return err
}
_, err = s.waitFor(func() (interface{}, error) { _, err := s.getStation(subAccountID, username); return nil, err }, waitRetries, waitInterval, false)
return err
}
func (s *Session) createAgent(username, password, firstName, lastName, email string, skills []string) (Agent, error) {
sa, err := s.getActiveSubAccount()
if err != nil {
return Agent{}, err
}
agentStationGroupID, err := s.getAgentStationGroupID(sa.ID)
if err != nil {
return Agent{}, err
}
agentLoginID, err := s.generateExtension(sa.ID, "AGENT")
if err != nil {
return Agent{}, err
}
availableSkills, err := s.getSkillIDs(sa.ID, "AGENT")
if err != nil {
return Agent{}, err
}
if len(availableSkills) == 0 {
return Agent{}, errors.New("There are no available skills to provision this agent")
}
availableSkillsByName := make(map[string]int)
for _, v := range availableSkills {
availableSkillsByName[v.SkillName] = v.SkillNumber
}
//
// Go through the requested skills and log them. If none specified, pick the first one.
//
type agentSkill struct {
SkillNumber int `json:"skillNumber"`
SkillPriority int `json:"skillPriority"`
}
agentSkills := make([]agentSkill, 0, len(skills))
priority := 1
for _, name := range skills {
if number, exists := availableSkillsByName[name]; exists {
agentSkills = append(agentSkills, agentSkill{SkillNumber: number, SkillPriority: priority})
priority++
} else {
return Agent{}, errors.New(fmt.Sprintf("Requested skill '%s' is not available", name))
}
}
if len(agentSkills) == 0 {
agentSkills = append(agentSkills, agentSkill{
SkillNumber: availableSkills[0].SkillNumber,
SkillPriority: 1,
})
}
//
// Make the skill structure to send to AC
//
skillIDs := make([]int, len(agentSkills))
for k, v := range agentSkills {
skillIDs[k] = v.SkillNumber
}
type createAgentRequest struct {
Username string `json:"username"`
FirstName string `json:"firstName"`
LastName string `json:"lastName"`
Password string `json:"password"`
Email string `json:"email"`
LoginID string `json:"loginId"`
AgentStationGroupID int `json:"agentStationGroupId"`
SecurityCode string `json:"securityCode"`
StartDate string `json:"startDate"`
EndDate string `json:"endDate"`
AvayaPassword string `json:"avayaPassword"`
ClientID int `json:"clientId"`
SkillIDs []int `json:"skillIds"`
AgentSkills []agentSkill `json:"agentSkills"`
SupervisorID int `json:"supervisorId"`
ChannelIDs []int `json:"channelIds"`
}
car := createAgentRequest{
Username: username,
Password: password,
FirstName: firstName,
LastName: lastName,
Email: email,
LoginID: agentLoginID,
AgentStationGroupID: agentStationGroupID,
ClientID: sa.ID,
SecurityCode: generateSecurityCode(agentLoginID),
AvayaPassword: generateAvayaPassword(agentLoginID),
StartDate: "2019-03-21",
EndDate: "2038-01-01",
// no supervisors
SupervisorID: 0,
// channel 1 is voice
ChannelIDs: []int{1},
SkillIDs: skillIDs,
AgentSkills: agentSkills,
}
_, err = s.postJSON("/spokenAbc/jobs/agents", car)
if err != nil {
return Agent{}, err
}
entity, err := s.waitFor(func() (interface{}, error) { a, err := s.getAgent(username); return a, err }, waitRetries, waitInterval, true)
if err != nil {
return Agent{}, errors.WithMessage(err, "Create Agent never completed")
}
stationExtension, err := s.generateExtension(sa.ID, "STATION")
if err != nil {
return Agent{}, err
}
_, err = s.createStation(agentStationGroupID, sa.ID, stationExtension, username)
if err != nil {
return Agent{}, err
}
return entity.(Agent), err
}
func (s *Session) deleteAgent(username string) error {
agent, err := s.getAgent(username)
if err != nil {
return errors.New("Agent does not exist to delete")
}
s.deleteStation(agent.ClientID, agent.Username)
//
// Delete the agent.
//
type deleteAgentRequest struct {
Username string `json:"username"`
LoginID string `json:"loginId"`
}
_, err = s.postJSON("/spokenAbc/agents/removeAgent", deleteAgentRequest{Username: username, LoginID: agent.LoginID})
if err != nil {
return err
}
_, err = s.waitFor(func() (interface{}, error) { _, err := s.getAgent(username); return nil, err }, waitRetries, waitInterval, false)
return err
}