根据请求更改OWIN Auth Middleware(多租户,每个租户的oauth API密钥)

时间:2014-08-19 21:25:39

标签: oauth-2.0 asp.net-mvc-5 owin owin-middleware

我有一个多租户应用程序。每个租户都可以使用OAUTH-2通过Facebook,Twitter,Google等对其用户进行身份验证。每个租户都有自己的API密钥用于上述服务。

设置OWIN管道的典型方法是"使用"启动时的auth提供程序,但这会在应用程序启动时设置API密钥。我需要能够为每个请求更改每个oauth API使用的密钥。

        app.UseCookieAuthentication(new CookieAuthenticationOptions
        {
            AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
            Provider = cookieAuthProvider,
            CookieName = "VarsityAuth",
        });

        app.UseExternalSignInCookie(DefaultAuthenticationTypes.ExternalCookie);

        app.UseMicrosoftAccountAuthentication(
            clientId: "lkjhlkjkl",
            clientSecret: "kjhjkk");

我需要能够根据租户更改每个请求的这些设置。我该怎么做?

1 个答案:

答案 0 :(得分:8)

编辑 - 我现在可以确认此解决方案对我有效。

我正在为我自己的项目调查此问题,该项目需要根据请求的主机名或第一个文件夹段支持多租户。

我还没有对此进行过测试,但我在启动时想到这样的代码就可以解决这个问题:

例如,我想为每个租户使用不同的auth cokie名称,并且我在启动时思考这样的代码可能有用:

// for first folder segment represents the tenant
app.Map("/branch1", app1 =>
{
    app1.UseCookieAuthentication(new CookieAuthenticationOptions
    {
        AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
        LoginPath = new PathString("/Account/Login"),
        Provider = new CookieAuthenticationProvider
       {
            OnValidateIdentity = SecurityStampValidator.OnValidateIdentity<SiteUserManager, SiteUser>(
            validateInterval: TimeSpan.FromMinutes(30),
            regenerateIdentity: (manager, user) => user.GenerateUserIdentityAsync(manager))
    },

        CookieName = "branch1-app"
    });

});

// for when the host name of the request identifies the tenant
app.MapWhen(IsDomain1, app2 =>
{
    app2.UseCookieAuthentication(new CookieAuthenticationOptions
    {
        AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
        LoginPath = new PathString("/Account/Login"),
        Provider = new CookieAuthenticationProvider
        {
            OnValidateIdentity = SecurityStampValidator.OnValidateIdentity<SiteUserManager, SiteUser>(
            validateInterval: TimeSpan.FromMinutes(30),
            regenerateIdentity: (manager, user) => user.GenerateUserIdentityAsync(manager))
        },

        CookieName = "domain1-app"
    });

});

private bool IsDomain1(IOwinContext context)
{
    return (context.Request.Host.Value == "domain1");
}