コード例 #1
0
ファイル: IAMMiddleware.cs プロジェクト: hattan/mvc6deepdive
 public IAMMiddleware(RequestDelegate next,IAMModel iamModel)
 {
     _next = next;
     iAam = iamModel;
 }
コード例 #2
0
ファイル: Startup.cs プロジェクト: hattan/mvc6deepdive
        // This method gets called by the runtime. Use this method to add services to the container.
        public void ConfigureServices(IServiceCollection services)
        {
            IAMModel iAmModel = new  IAMModel
            {
                IAM = Configuration["ServerConf:IAM"],
                GitHubToken = Configuration["GitHubToken"],
            };

            services.AddInstance<IAMModel>(iAmModel);

            // Add Entity Framework services to the services container.
            // In this release there is no data provider for non Windows environment so this app
            // uses the InMemory Store. This is coming in a future release of the Framework.
            services.AddEntityFramework()
                .AddInMemoryDatabase()
                .AddDbContext<ApplicationDbContext>(options => options.UseInMemoryDatabase());

            // Use the following code to register EntityFramework services for SqlServer to the container.
            //services.AddEntityFramework()
            //   .AddSqlServer()
            //   .AddDbContext<ApplicationDbContext>(options =>
            //       options.UseSqlServer(Configuration["Data:DefaultConnection:ConnectionString"]));

            // Add Identity services to the services container.
            services.AddIdentity<ApplicationUser, IdentityRole>()
                .AddEntityFrameworkStores<ApplicationDbContext>()
                .AddDefaultTokenProviders();

            // Configure the options for the authentication middleware.
            // You can add options for Google, Twitter and other middleware as shown below.
            // For more information see http://go.microsoft.com/fwlink/?LinkID=532715
            services.Configure<FacebookAuthenticationOptions>(options =>
            {
                options.AppId = Configuration["Authentication:Facebook:AppId"];
                options.AppSecret = Configuration["Authentication:Facebook:AppSecret"];
            });

            services.Configure<MicrosoftAccountAuthenticationOptions>(options =>
            {
                options.ClientId = Configuration["Authentication:MicrosoftAccount:ClientId"];
                options.ClientSecret = Configuration["Authentication:MicrosoftAccount:ClientSecret"];
            });

            // Add MVC services to the services container.
            services.AddMvc();

            // Uncomment the following line to add Web API services which makes it easier to port Web API 2 controllers.
            // You will also need to add the Microsoft.AspNet.Mvc.WebApiCompatShim package to the 'dependencies' section of project.json.
            // services.AddWebApiConventions();

            // Register application services.
            services.AddTransient<IEmailSender, AuthMessageSender>();
            services.AddTransient<ISmsSender, AuthMessageSender>();
        }