-
Notifications
You must be signed in to change notification settings - Fork 177
/
Copy pathLivePersonController.cs
303 lines (263 loc) · 13.1 KB
/
LivePersonController.cs
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
using System;
using System.IO;
using System.Linq;
using System.Net;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
using Bot.Builder.Community.Components.Handoff.LivePerson.Models;
using Bot.Builder.Community.Components.Handoff.Shared;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Bot.Builder;
using Microsoft.Bot.Connector.Authentication;
using Microsoft.Bot.Schema;
using Newtonsoft.Json;
namespace Bot.Builder.Community.Components.Handoff.LivePerson
{
[ApiController]
[Route("api/liveperson")]
public class LivePersonHandoffController : HandoffController
{
private readonly BotAdapter _adapter;
private readonly ILivePersonCredentialsProvider _credentials;
private readonly IBot _bot;
public LivePersonHandoffController(BotAdapter adapter, IBot bot, ILivePersonCredentialsProvider credentials, ConversationHandoffRecordMap conversationHandoffRecordMap) : base(conversationHandoffRecordMap)
{
_credentials = credentials;
_adapter = adapter;
_bot = bot;
}
[HttpPost]
[HttpGet]
public async Task PostAsync()
{
using (var sr = new StreamReader(Request.Body))
{
var body = await sr.ReadToEndAsync();
if (!Authenticate(Request, Response, body))
{
return;
}
var webhookData = JsonConvert.DeserializeObject<WebhookData>(body);
if (webhookData != null)
{
switch (webhookData.type)
{
case "cqm.ExConversationChangeNotification":
await HandleExConversationChangeNotification(body);
break;
case "ms.MessagingEventNotification":
switch (webhookData.body?.changes?.FirstOrDefault()?.@event.type)
{
case "ChatStateEvent":
await HandleChatStateEvent(body);
break;
case "AcceptStatusEvent":
await HandleAcceptStatusEvent(body);
break;
case "RichContentEvent":
await HandleRichContentEvent(body);
break;
case "ContentEvent":
await HandleContentEvent(body);
break;
}
break;
}
}
}
Response.StatusCode = (int)HttpStatusCode.OK;
}
private async Task HandleContentEvent(string body)
{
var webhookData = JsonConvert.DeserializeObject<WebhookData>(body);
foreach (var change in webhookData.body.changes)
{
if (change?.@event?.type == "ContentEvent" && change?.originatorMetadata?.role == "ASSIGNED_AGENT")
{
if (change.@event.message != null)
{
var humanActivity = MessageFactory.Text(change.@event.message);
await SendActivityToUser(change, humanActivity);
}
}
}
}
private async Task HandleRichContentEvent(string body)
{
var webhookData = JsonConvert.DeserializeObject<WebhookData>(body);
foreach (var change in webhookData.body.changes)
{
if (change?.@event?.type == "RichContentEvent" &&
change?.originatorMetadata?.role == "ASSIGNED_AGENT")
{
if (change.@event.Content != null)
{
var text = change.@event.Content.Elements?.FirstOrDefault(e => e.Type == "text")?.Text;
if (!string.IsNullOrEmpty(text))
{
var humanActivity = MessageFactory.Text(text);
var suggestedActions = change.@event.Content.Elements
.Where(e => e.Type == "button").ToList();
if (suggestedActions.Any())
{
humanActivity.SuggestedActions = new SuggestedActions()
{
Actions = suggestedActions.Select(a => new CardAction()
{
Title = a.Title,
Type = ActionTypes.ImBack,
Value = a.Title
}).ToList()
};
}
await SendActivityToUser(change, humanActivity);
}
}
}
}
}
private async Task SendActivityToUser(Change change, Activity humanActivity)
{
if (await ConversationHandoffRecordMap.GetByRemoteConversationId(change.conversationId) is
LivePersonHandoffRecord handoffRecord)
{
if (!handoffRecord.ConversationRecord.IsClosed)
{
MicrosoftAppCredentials.TrustServiceUrl(handoffRecord.ConversationReference.ServiceUrl);
await (_adapter).ContinueConversationAsync(
_credentials.MsAppId,
handoffRecord.ConversationReference,
(turnContext, cancellationToken) =>
turnContext.SendActivityAsync(humanActivity, cancellationToken), default);
}
}
else
{
// The bot has no record of this conversation, this should not happen
throw new Exception("Cannot find conversation");
}
}
private async Task HandleAcceptStatusEvent(string body)
{
var webhookData = JsonConvert.DeserializeObject<Models.AcceptStatusEvent.WebhookData>(body);
foreach (var change in webhookData.body.changes)
{
if (change?.originatorMetadata?.role == "ASSIGNED_AGENT")
{
// Agent has accepted the conversation
var convId = change?.conversationId;
if (await ConversationHandoffRecordMap.GetByRemoteConversationId(change.conversationId) is LivePersonHandoffRecord handoffRecord)
{
if (handoffRecord.ConversationRecord.IsAcknowledged || handoffRecord.ConversationRecord.IsClosed)
{
// Already acknowledged this one
break;
}
var conversationRecord = new LivePersonConversationRecord()
{
AppJWT = handoffRecord.ConversationRecord.AppJWT,
ConsumerJWS = handoffRecord.ConversationRecord.ConsumerJWS,
MessageDomain = handoffRecord.ConversationRecord.MessageDomain,
ConversationId = handoffRecord.ConversationRecord.ConversationId,
IsClosed = handoffRecord.ConversationRecord.IsClosed,
IsAcknowledged = true
};
var updatedHandoffRecord = new LivePersonHandoffRecord(handoffRecord.ConversationReference, conversationRecord);
// Update atomically -- only one will succeed
if (ConversationHandoffRecordMap.TryUpdate(convId, updatedHandoffRecord, handoffRecord))
{
var eventActivity = EventFactory.CreateHandoffStatus(
updatedHandoffRecord.ConversationReference.Conversation, "accepted") as Activity;
//await _adapter.ContinueConversationAsync(_credentials.MsAppId, eventActivity, _bot.OnTurnAsync, default);
//TEMPORARY WORKAROUND UNTIL CLOUDADAPTER IS IN PLACE SO ABOVE LINE WILL WORK
await (_adapter).ContinueConversationAsync(
_credentials.MsAppId,
handoffRecord.ConversationReference,
(turnContext, cancellationToken) => turnContext.SendActivityAsync(eventActivity, cancellationToken), default);
}
}
}
}
}
private async Task HandleChatStateEvent(string body)
{
var webhookData = JsonConvert.DeserializeObject<Models.ChatStateEvent.WebhookData>(body);
foreach (var change in webhookData.body.changes)
{
if (change?.@event?.chatState == "COMPOSING")
{
if (await ConversationHandoffRecordMap.GetByRemoteConversationId(change.conversationId) is LivePersonHandoffRecord handoffRecord)
{
var typingActivity = new Activity
{
Type = ActivityTypes.Typing
};
await _adapter.ContinueConversationAsync(
_credentials.MsAppId,
handoffRecord.ConversationReference,
(turnContext, cancellationToken) => turnContext.SendActivityAsync(typingActivity, cancellationToken), default);
}
}
}
}
private async Task HandleExConversationChangeNotification(string body)
{
var webhookData = JsonConvert.DeserializeObject<Models.ExConversationChangeNotification.WebhookData>(body);
foreach (var change in webhookData.body.changes)
{
string state = change?.result?.conversationDetails?.state;
switch (state)
{
case "CLOSE":
{
// Agent has closed the conversation
var conversationId = change?.result?.convId;
if (await ConversationHandoffRecordMap.GetByRemoteConversationId(conversationId) is LivePersonHandoffRecord handoffRecord)
{
var eventActivity = EventFactory.CreateHandoffStatus(handoffRecord.ConversationReference.Conversation, "completed") as Activity;
//await _adapter.ContinueConversationAsync(_credentials.MsAppId, eventActivity, _bot.OnTurnAsync, default);
//TEMPORARY WORKAROUND UNTIL CLOUDADAPTER IS IN PLACE SO ABOVE LINE WILL WORK
await (_adapter).ContinueConversationAsync(
_credentials.MsAppId,
handoffRecord.ConversationReference,
(turnContext, cancellationToken) => turnContext.SendActivityAsync(eventActivity, cancellationToken), default);
}
}
break;
case "OPEN":
break;
}
}
}
private bool Authenticate(HttpRequest request, HttpResponse response, string body)
{
// https://github.com/LivePersonInc/developers-community/blob/ae8890694cb9b3be797ca382e9ad7395382aed25/pages/documents/MessagingChannels/ConnectorAPI/webhooks/security.md#authentication
if (!request.Headers.ContainsKey("X-Liveperson-Signature") || !request.Headers.ContainsKey("X-Liveperson-Client-Id") || !request.Headers.ContainsKey("X-Liveperson-Account-Id"))
{
response.StatusCode = (int)HttpStatusCode.BadRequest;
return false;
}
using (var hmac = new HMACSHA1(Encoding.UTF8.GetBytes(_credentials.LpAppSecret)))
{
var hash = hmac.ComputeHash(Encoding.ASCII.GetBytes(body));
var signature = $"sha1={Convert.ToBase64String(hash)}";
if (signature != request.Headers["X-Liveperson-Signature"])
{
response.StatusCode = (int)HttpStatusCode.Unauthorized;
return false;
}
}
var account = request.Headers["X-Liveperson-Account-Id"];
var clientId = request.Headers["X-Liveperson-Client-Id"];
if (account != _credentials.LpAccount || clientId != _credentials.LpAppId)
{
response.StatusCode = (int)HttpStatusCode.Unauthorized;
return false;
}
response.StatusCode = (int)HttpStatusCode.OK;
return true;
}
}
}