// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using Microsoft.Bot.Builder;
using Microsoft.Bot.Builder.Integration.AspNet.Core;
using Microsoft.Bot.Builder.Teams;
using Microsoft.Bot.Builder.TraceExtensions;
using Microsoft.Teams.Bot.Apps;
using Microsoft.Teams.Bot.Compat;
namespace PABot
{
public class AdapterWithErrorHandler : CompatAdapter
{
public AdapterWithErrorHandler(
TeamsBotApplication teamsBotApp,
IHttpContextAccessor httpContextAccessor,
IConfiguration configuration,
ILogger<IBotFrameworkHttpAdapter> logger,
IStorage storage,
ConversationState conversationState
)
: base(
teamsBotApp,
httpContextAccessor,
logger)
{
base.Use(new TeamsSSOTokenExchangeMiddleware(storage, configuration["ConnectionName"] ?? "graph"));
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 below commented line 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 a error-loop caused by being in a bad state.
// ConversationState should be thought of as similar to "cookie-state" in a Web pages.
await conversationState.DeleteAsync(turnContext);
}
catch (Exception e)
{
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
await turnContext.TraceActivityAsync(
"OnTurnError Trace",
exception.Message,
"https://www.botframework.com/schemas/error",
"TurnError");
};
}
}
}microsoft/teams.net
Publicmirrored from https://github.com/microsoft/teams.netAvailable
core/samples/PABot/AdapterWithErrorHandler.cs
65lines · modepreview