- Notifications
You must be signed in to change notification settings - Fork 843
/
Copy pathAdapterWithErrorHandler.cs
68 lines (62 loc) · 3.18 KB
/
AdapterWithErrorHandler.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
usingSystem;
usingSystem.Net.Http;
usingMicrosoft.Bot.Builder;
usingMicrosoft.Bot.Builder.Integration.AspNet.Core;
usingMicrosoft.Bot.Builder.Teams;
usingMicrosoft.Bot.Builder.TraceExtensions;
usingMicrosoft.Bot.Connector.Authentication;
usingMicrosoft.Extensions.Configuration;
usingMicrosoft.Extensions.Logging;
namespaceMicrosoft.BotBuilderSamples
{
/// <summary>
/// A CloudAdapter with error handling capabilities.
/// </summary>
publicclassAdapterWithErrorHandler:CloudAdapter
{
/// <summary>
/// Initializes a new instance of the <see cref="AdapterWithErrorHandler"/> class.
/// </summary>
/// <param name="configuration">The configuration.</param>
/// <param name="httpClientFactory">The HTTP client factory.</param>
/// <param name="logger">The logger.</param>
/// <param name="storage">The storage.</param>
/// <param name="conversationState">The conversation state.</param>
publicAdapterWithErrorHandler(IConfigurationconfiguration,IHttpClientFactoryhttpClientFactory,ILogger<IBotFrameworkHttpAdapter>logger,IStoragestorage,ConversationStateconversationState)
:base(configuration,httpClientFactory,logger)
{
if(configuration.GetValue<bool>("UseSingleSignOn"))
{
Use(newTeamsSSOTokenExchangeMiddleware(storage,configuration["ConnectionName"]));
}
OnTurnError=async(turnContext,exception)=>
{
// Log any leaked exception from the application.
// NOTE: In production environment, you should consider logging this to
// Azure Application Insights. Visit https://aka.ms/bottelemetry to see how
// to add telemetry capture to your bot.
logger.LogError(exception,$"[OnTurnError] unhandled error : {exception.Message}");
// Uncomment the line below for local debugging.
// await turnContext.SendActivityAsync($"Sorry, it looks like something went wrong. Exception Caught: {exception.Message}");
if(conversationState!=null)
{
try
{
// Delete the conversationState for the current conversation to prevent the
// bot from getting stuck in an error-loop caused by being in a bad state.
// ConversationState should be thought of as similar to "cookie-state" in a Web page.
awaitconversationState.DeleteAsync(turnContext);
}
catch(Exceptione)
{
logger.LogError(e,$"Exception caught on attempting to delete ConversationState : {e.Message}");
}
}
// Send a trace activity, which will be displayed in the Bot Framework Emulator
awaitturnContext.TraceActivityAsync("OnTurnError Trace",exception.Message,"https://www.botframework.com/schemas/error","TurnError");
};
}
}
}