You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
141 lines
6.4 KiB
141 lines
6.4 KiB
using System;
|
|
using System.Threading.Tasks;
|
|
using System.Web.Mvc;
|
|
using Autofac;
|
|
using Autofac.Extensions.DependencyInjection;
|
|
using Autofac.Integration.Mvc;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Owin.Host.SystemWeb;
|
|
using Microsoft.Owin.Security.Cookies;
|
|
using OpenIddict.Client;
|
|
using OpenIddict.Client.Owin;
|
|
using OpenIddict.Sandbox.AspNetCore.Server.Models;
|
|
using Owin;
|
|
using static OpenIddict.Abstractions.OpenIddictConstants;
|
|
|
|
namespace OpenIddict.Sandbox.AspNet.Client;
|
|
|
|
public class Startup
|
|
{
|
|
public void Configuration(IAppBuilder app)
|
|
{
|
|
var services = new ServiceCollection();
|
|
|
|
services.AddOpenIddict()
|
|
|
|
// Register the OpenIddict core components.
|
|
.AddCore(options =>
|
|
{
|
|
// Configure OpenIddict to use the Entity Framework 6.x stores and models.
|
|
// Note: call ReplaceDefaultEntities() to replace the default OpenIddict entities.
|
|
options.UseEntityFramework()
|
|
.UseDbContext<ApplicationDbContext>();
|
|
|
|
// Developers who prefer using MongoDB can remove the previous lines
|
|
// and configure OpenIddict to use the specified MongoDB database:
|
|
// options.UseMongoDb()
|
|
// .UseDatabase(new MongoClient().GetDatabase("openiddict"));
|
|
})
|
|
|
|
// Register the OpenIddict client components.
|
|
.AddClient(options =>
|
|
{
|
|
// Note: this sample uses the authorization code and refresh token
|
|
// flows, but you can enable the other flows if necessary.
|
|
options.AllowAuthorizationCodeFlow()
|
|
.AllowRefreshTokenFlow();
|
|
|
|
// Register the signing and encryption credentials used to protect
|
|
// sensitive data like the state tokens produced by OpenIddict.
|
|
options.AddDevelopmentEncryptionCertificate()
|
|
.AddDevelopmentSigningCertificate();
|
|
|
|
// Register the OWIN host and configure the OWIN-specific options.
|
|
options.UseOwin()
|
|
.EnableRedirectionEndpointPassthrough()
|
|
.EnablePostLogoutRedirectionEndpointPassthrough()
|
|
.SetCookieManager(new SystemWebCookieManager());
|
|
|
|
// Register the System.Net.Http integration and use the identity of the current
|
|
// assembly as a more specific user agent, which can be useful when dealing with
|
|
// providers that use the user agent as a way to throttle requests (e.g Reddit).
|
|
options.UseSystemNetHttp()
|
|
.SetProductInformation(typeof(Startup).Assembly);
|
|
|
|
// Add a client registration matching the client application definition in the server project.
|
|
options.AddRegistration(new OpenIddictClientRegistration
|
|
{
|
|
Issuer = new Uri("https://localhost:44349/", UriKind.Absolute),
|
|
ProviderName = "Local",
|
|
ProviderDisplayName = "Local OIDC server",
|
|
|
|
ClientId = "mvc",
|
|
ClientSecret = "901564A5-E7FE-42CB-B10D-61EF6A8F3654",
|
|
Scopes = { Scopes.Email, Scopes.Profile, Scopes.OfflineAccess, "demo_api" },
|
|
|
|
RedirectUri = new Uri("callback/login/local", UriKind.Relative),
|
|
PostLogoutRedirectUri = new Uri("callback/logout/local", UriKind.Relative)
|
|
});
|
|
|
|
// Register the Web providers integrations.
|
|
//
|
|
// Note: to mitigate mix-up attacks, it's recommended to use a unique redirection endpoint
|
|
// URI per provider, unless all the registered providers support returning a special "iss"
|
|
// parameter containing their URL as part of authorization responses. For more information,
|
|
// see https://datatracker.ietf.org/doc/html/draft-ietf-oauth-security-topics#section-4.4.
|
|
options.UseWebProviders()
|
|
.AddGitHub(options =>
|
|
{
|
|
options.SetClientId("c4ade52327b01ddacff3")
|
|
.SetClientSecret("da6bed851b75e317bf6b2cb67013679d9467c122")
|
|
.SetRedirectUri("callback/login/github");
|
|
})
|
|
.AddGoogle(options =>
|
|
{
|
|
options.SetClientId("1016114395689-kgtgq2p6dj27d7v6e2kjkoj54dgrrckh.apps.googleusercontent.com")
|
|
.SetClientSecret("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")
|
|
.SetRedirectUri("callback/login/google")
|
|
.SetAccessType("offline")
|
|
.AddScopes(Scopes.Profile);
|
|
});
|
|
});
|
|
|
|
// Create a new Autofac container and import the OpenIddict services.
|
|
var builder = new ContainerBuilder();
|
|
builder.Populate(services);
|
|
|
|
// Register the Entity Framework context.
|
|
builder.RegisterType<ApplicationDbContext>().AsSelf().InstancePerLifetimeScope();
|
|
|
|
// Register the MVC controllers.
|
|
builder.RegisterControllers(typeof(Startup).Assembly);
|
|
|
|
var container = builder.Build();
|
|
|
|
// Register the Autofac scope injector middleware.
|
|
app.UseAutofacLifetimeScopeInjector(container);
|
|
|
|
// Register the cookie middleware responsible for storing the user sessions.
|
|
app.UseCookieAuthentication(new CookieAuthenticationOptions
|
|
{
|
|
ExpireTimeSpan = TimeSpan.FromMinutes(50),
|
|
SlidingExpiration = false
|
|
});
|
|
|
|
// Register the OpenIddict middleware.
|
|
app.UseMiddlewareFromContainer<OpenIddictClientOwinMiddleware>();
|
|
|
|
// Configure ASP.NET MVC 5.2 to use Autofac when activating controller instances.
|
|
DependencyResolver.SetResolver(new AutofacDependencyResolver(container));
|
|
|
|
// Create the database used by the OpenIddict client stack to store tokens.
|
|
// Note: in a real world application, this step should be part of a setup script.
|
|
Task.Run(async delegate
|
|
{
|
|
await using var scope = container.BeginLifetimeScope();
|
|
|
|
var context = scope.Resolve<ApplicationDbContext>();
|
|
context.Database.CreateIfNotExists();
|
|
}).GetAwaiter().GetResult();
|
|
}
|
|
}
|
|
|