web-dev-qa-db-ja.com

apicontrollerのOwinContextからUserManagerを取得できません

Identity 2.0.0で電子メール検証を実装するためにMicrosoftのサンプルをフォローしています

私はこの部分で立ち往生しています

public ApplicationUserManager UserManager
{
   get
   {
      return _userManager ?? HttpContext.GetOwinContext().GetUserManager<ApplicationUserManager>();
   }
   private set
   {
      _userManager = value;
   }
}

これはcontrollerで機能しますが、HttpContextにはApiControllerGetOwinContextメソッドが含まれていません。

そこでHttpContext.Current.GetOwinContext()を試しましたが、メソッドGetUserManagerは存在しません。

ビルドするUserManagerを取得する方法がわかりませんStartup.Auth.cs

// For more information on configuring authentication, please visit http://go.Microsoft.com/fwlink/?LinkId=301864
public void ConfigureAuth(IAppBuilder app)
{
    //Configure the db context, user manager and role manager to use a single instance per request
    app.CreatePerOwinContext(ApplicationDbContext.Create);
    app.CreatePerOwinContext<ApplicationUserManager>(ApplicationUserManager.Create); 
    ...
}

この行

app.CreatePerOwinContext<ApplicationUserManager>(ApplicationUserManager.Create);

次の関数を呼び出してUserManagerを構成します

public static ApplicationUserManager Create(IdentityFactoryOptions<ApplicationUserManager> options, IOwinContext context)
{
     var manager = new ApplicationUserManager(new UserStore<ApplicationUser>(context.Get<ApplicationDbContext>()));
     //Configure validation logic for usernames
     manager.UserValidator = new UserValidator<ApplicationUser>(manager)
     {
         AllowOnlyAlphanumericUserNames = false,
         RequireUniqueEmail = true
     };

     // Configure user lockout defaults
     manager.UserLockoutEnabledByDefault = true;
     manager.DefaultAccountLockoutTimeSpan = TimeSpan.FromMinutes(5);
     manager.MaxFailedAccessAttemptsBeforeLockout = 5;

     manager.EmailService = new EmailService();

     var dataProtectionProvider = options.DataProtectionProvider;
     if (dataProtectionProvider != null)
     {
         manager.UserTokenProvider = new DataProtectorTokenProvider<ApplicationUser>(dataProtectionProvider.Create("ASP.NET Identity"));
     }
     return manager;
}

UserManagerでこのApiControllerにアクセスするにはどうすればよいですか?

67
Marc

先ほどの質問を本当に誤解しました。いくつかのusingステートメントが欠落しているだけだと思います。

GetOwinContext().GetUserManager<ApplicationUserManager>()Microsoft.AspNet.Identity.Owinにあります。

この部分を追加してみてください:

using Microsoft.AspNet.Identity.Owin;
using Microsoft.AspNet.Identity; // Maybe this one too

var manager = HttpContext.Current.GetOwinContext().GetUserManager<UserManager<User>>();
86
Rikard

この拡張メソッドは、コントローラーの単体テストを行う場合に適したソリューションです。

using System;
using System.Net.Http;
using System.Web;
using Microsoft.Owin;

public static IOwinContext GetOwinContext(this HttpRequestMessage request)
{
    var context = request.Properties["MS_HttpContext"] as HttpContextWrapper;
    if (context != null)
    {
        return HttpContextBaseExtensions.GetOwinContext(context.Request);
    }
    return null;
}

使用法:

public ApplicationUserManager UserManager
{
   get
   {
      return _userManager ?? Request.GetOwinContext().GetUserManager<ApplicationUserManager>();
   }
   private set
   {
      _userManager = value;
   }
}
26
moander

この1行のコードで1日を節約できました...

       var manager = 
       new ApplicationUserManager(new UserStore<ApplicationUser>(new ApplicationDbContext()));

コントローラーアクション内で使用して、UserManagerのインスタンスを取得できます。

5
mubsher