|
| 1 | +using Microsoft.AspNetCore.Builder; |
| 2 | +using Microsoft.AspNetCore.Hosting; |
| 3 | +using Microsoft.Bot.Builder.BotFramework; |
| 4 | +using Microsoft.Bot.Builder.Integration.AspNet.Core; |
| 5 | +using Microsoft.Extensions.Configuration; |
| 6 | +using Microsoft.Extensions.DependencyInjection; |
| 7 | +using Microsoft.Bot.Builder.Ai.LUIS; |
| 8 | +using Microsoft.Extensions.Logging; |
| 9 | +using System; |
| 10 | +using Microsoft.Bot.Builder.Core.Extensions; |
| 11 | +using Microsoft.Bot.Builder.TraceExtensions; |
| 12 | + |
| 13 | +namespace ConferenceConciergeBot |
| 14 | +{ |
| 15 | + public class Startup |
| 16 | + { |
| 17 | + public Startup(IHostingEnvironment env) |
| 18 | + { |
| 19 | + var builder = new ConfigurationBuilder() |
| 20 | + .SetBasePath(env.ContentRootPath) |
| 21 | + .AddJsonFile("appsettings.json", optional: true, reloadOnChange: true) |
| 22 | + .AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true) |
| 23 | + .AddEnvironmentVariables(); |
| 24 | + configuration = builder.Build(); |
| 25 | + } |
| 26 | + |
| 27 | + // This method gets called by the runtime. Use this method to add services to the container. |
| 28 | + // For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940 |
| 29 | + // This method gets called by the runtime. Use this method to add services to the container. |
| 30 | + public void ConfigureServices(IServiceCollection services) |
| 31 | + { |
| 32 | + services.AddBot<CCBot>(options => |
| 33 | + { |
| 34 | + options.CredentialProvider = new ConfigurationCredentialProvider(configuration); |
| 35 | + |
| 36 | + options.Middleware.Add(new CatchExceptionMiddleware<Exception>(async (context, exception) => |
| 37 | + { |
| 38 | + await context.TraceActivity("EchoBot Exception", exception); |
| 39 | + await context.SendActivity("Sorry, it looks like something went wrong!"); |
| 40 | + })); |
| 41 | + |
| 42 | + // The Memory Storage used here is for local bot debugging only. When the bot |
| 43 | + // is restarted, anything stored in memory will be gone. |
| 44 | + IStorage dataStore = new MemoryStorage(); |
| 45 | + |
| 46 | + options.Middleware.Add(new ConversationState<BotStateInfo>(dataStore)); |
| 47 | + |
| 48 | + // Add LUIS recognizer as middleware |
| 49 | + options.Middleware.Add( |
| 50 | + new LuisRecognizerMiddleware( |
| 51 | + new LuisModel( |
| 52 | + "290e750c-8f15-4f17-a65c-4d4f4347373b", |
| 53 | + "7c01ac34fbc54eee99cf592d77e7704e", |
| 54 | + new Uri("https://westeurope.api.cognitive.microsoft.com/luis/v2.0/apps/")))); |
| 55 | + }); |
| 56 | + } |
| 57 | + |
| 58 | + private IConfiguration configuration; |
| 59 | + |
| 60 | + // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. |
| 61 | + public void Configure(IApplicationBuilder app, IHostingEnvironment env) |
| 62 | + { |
| 63 | + if (env.IsDevelopment()) |
| 64 | + { |
| 65 | + app.UseDeveloperExceptionPage(); |
| 66 | + } |
| 67 | + |
| 68 | + app.UseDefaultFiles(); |
| 69 | + app.UseStaticFiles(); |
| 70 | + app.UseBotFramework(); |
| 71 | + } |
| 72 | + } |
| 73 | +} |
0 commit comments