-
Notifications
You must be signed in to change notification settings - Fork 780
/
ssoOauthHelpler.js
111 lines (92 loc) · 4.77 KB
/
ssoOauthHelpler.js
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
const { StatusCodes, ActivityTypes, tokenExchangeOperationName } = require('botbuilder');
class SsoOAuthHelpler {
constructor(oAuthConnectName, storage) {
this.oAuthConnectName = oAuthConnectName;
this.storage = storage;
}
/// <summary>
/// Determines if a "signin/tokenExchange" should be processed by this caller.
///
/// If a token exchange is unsuccessful, an InvokeResponse of PreconditionFailed is sent.
/// </summary>
/// <param name="turnContext"><see cref="ITurnContext"/> for this specific activity.</param>
/// <returns>True if the bot should continue processing this TokenExchange request.</returns>
async shouldProcessTokenExchange(turnContext) {
if (turnContext.activity.name !== tokenExchangeOperationName) {
throw new Error("Only 'signin/tokenExchange' invoke activities can be procssed by TokenExchangeHelper.");
}
if (!await this.exchangedToken(turnContext)) {
// If the TokenExchange is NOT successful, the response will have already been sent by ExchangedToken
return false;
}
// If a user is signed into multiple Teams clients, the Bot might receive a "signin/tokenExchange" from each client.
// Each token exchange request for a specific user login will have an identical activity.value.Id.
// Only one of these token exchange requests should be processe by the bot. For a distributed bot in production,
// this requires a distributed storage to ensure only one token exchange is processed.
// This example utilizes Bot Framework IStorage's ETag implementation for token exchange activity deduplication.
// Create a StoreItem with Etag of the unique 'signin/tokenExchange' request
const storeItem = {
eTag: turnContext.activity.value.id
};
return true;
}
async exchangedToken(turnContext) {
let tokenExchangeResponse = null;
const tokenExchangeRequest = turnContext.activity.value;
try {
// turnContext.adapter IExtendedUserTokenProvider
tokenExchangeResponse = await turnContext.adapter.exchangeToken(
turnContext,
tokenExchangeRequest.connectionName,
turnContext.activity.from.id,
{ token: tokenExchangeRequest.token });
console.log('tokenExchangeResponse: ' + JSON.stringify(tokenExchangeResponse));
} catch (err) {
console.log(err);
// Ignore Exceptions
// If token exchange failed for any reason, tokenExchangeResponse above stays null , and hence we send back a failure invoke response to the caller.
}
if (!tokenExchangeResponse || !tokenExchangeResponse.token) {
// The token could not be exchanged (which could be due to a consent requirement)
// Notify the sender that PreconditionFailed so they can respond accordingly.
await turnContext.sendActivity(
{
type: ActivityTypes.InvokeResponse,
value:
{
status: StatusCodes.PRECONDITION_FAILED,
// TokenExchangeInvokeResponse
body:
{
id: tokenExchangeRequest.id,
connectionName: tokenExchangeRequest.connectionName,
failureDetail: 'The bot is unable to exchange token. Proceed with regular login.'
}
}
});
return false;
} else {
// Store response in TurnState, so the SsoOAuthPrompt can use it, and not have to do the exchange again.
turnContext.turnState.tokenExchangeInvokeRequest = tokenExchangeRequest;
turnContext.turnState.tokenResponse = tokenExchangeResponse;
}
return true;
}
getStorageKey(turnContext) {
if (!turnContext || !turnContext.activity || !turnContext.activity.conversation) {
throw new Error('Invalid context, can not get storage key!');
}
const activity = turnContext.activity;
const channelId = activity.channelId;
const conversationId = activity.conversation.id;
if (activity.type !== ActivityTypes.Invoke || activity.name !== tokenExchangeOperationName) {
throw new Error('TokenExchangeState can only be used with Invokes of signin/tokenExchange.');
}
const value = activity.value;
if (!value || !value.id) {
throw new Error('Invalid signin/tokenExchange. Missing activity.value.id.');
}
return `${channelId}/${conversationId}/${value.id}`;
}
}
exports.SsoOAuthHelpler = SsoOAuthHelpler;