82 lines
3.1 KiB
C#
82 lines
3.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.HttpsPolicy;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Sample.Mvc.Models;
|
|
using Raven.DependencyInjection;
|
|
using Raven.Identity;
|
|
using Raven.Client.Documents;
|
|
using Sample.Mvc.Common;
|
|
|
|
namespace Sample.Mvc
|
|
{
|
|
public class Startup
|
|
{
|
|
public Startup(IConfiguration configuration)
|
|
{
|
|
Configuration = configuration;
|
|
}
|
|
|
|
public IConfiguration Configuration { get; }
|
|
|
|
// This method gets called by the runtime. Use this method to add services to the container.
|
|
public void ConfigureServices(IServiceCollection services)
|
|
{
|
|
services.Configure<CookiePolicyOptions>(options =>
|
|
{
|
|
// This lambda determines whether user consent for non-essential cookies is needed for a given request.
|
|
options.CheckConsentNeeded = context => false;
|
|
options.MinimumSameSitePolicy = SameSiteMode.None;
|
|
options.Secure = CookieSecurePolicy.Always;
|
|
});
|
|
|
|
services
|
|
.AddRavenDbDocStore() // Create our IDocumentStore singleton using the database settings in appsettings.json
|
|
.AddRavenDbAsyncSession() // Create an Raven IAsyncDocumentSession for every request.
|
|
.AddRavenDbIdentity<AppUser>(); // Let Raven store users and roles.
|
|
|
|
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
|
|
}
|
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
|
|
{
|
|
if (env.IsDevelopment())
|
|
{
|
|
app.UseDeveloperExceptionPage();
|
|
}
|
|
else
|
|
{
|
|
app.UseExceptionHandler("/Home/Error");
|
|
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
|
|
app.UseHsts();
|
|
}
|
|
|
|
app.UseAuthentication();
|
|
app.UseHttpsRedirection();
|
|
app.UseStaticFiles();
|
|
app.UseCookiePolicy();
|
|
|
|
// Create the database if it doesn't exist.
|
|
// Also, create our roles if they don't exist. Needed because we're doing some role-based auth in this demo.
|
|
var docStore = app.ApplicationServices.GetRequiredService<IDocumentStore>();
|
|
docStore.EnsureExists();
|
|
docStore.EnsureRolesExist(new List<string> { AppUser.AdminRole, AppUser.ManagerRole });
|
|
|
|
app.UseMvc(routes =>
|
|
{
|
|
routes.MapRoute(
|
|
name: "default",
|
|
template: "{controller=Home}/{action=Index}/{id?}");
|
|
});
|
|
}
|
|
}
|
|
}
|