Je suis un exemple Microsoft pour implémenter la validation du courrier électronique avec Identity 2.0.0
Je suis coincé à cette partie
public ApplicationUserManager UserManager
{
get
{
return _userManager ?? HttpContext.GetOwinContext().GetUserManager<ApplicationUserManager>();
}
private set
{
_userManager = value;
}
}
Cela fonctionne dans un controller
mais HttpContext
ne contient aucune méthode GetOwinContext
dans un ApiController.
J'ai donc essayé HttpContext.Current.GetOwinContext()
mais la méthode GetUserManager
n'existe pas.
Je n'arrive pas à trouver un moyen d'obtenir le UserManager
que j'ai intégré 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);
...
}
cette ligne
app.CreatePerOwinContext<ApplicationUserManager>(ApplicationUserManager.Create);
appelle la fonction suivante pour configurer le 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;
}
Comment puis-je accéder à ce UserManager
dans un ApiController
?
J'ai vraiment mal compris votre question plus tôt. Je pense qu'il vous manque quelques déclarations d'utilisation.
La GetOwinContext().GetUserManager<ApplicationUserManager>()
est dans Microsoft.AspNet.Identity.Owin
.
Alors essayez d'ajouter cette partie:
using Microsoft.AspNet.Identity.Owin;
using Microsoft.AspNet.Identity; // Maybe this one too
var manager = HttpContext.Current.GetOwinContext().GetUserManager<UserManager<User>>();
Cette méthode d'extension peut être une meilleure solution si vous souhaitez tester vos contrôleurs à l'unité.
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;
}
Usage:
public ApplicationUserManager UserManager
{
get
{
return _userManager ?? Request.GetOwinContext().GetUserManager<ApplicationUserManager>();
}
private set
{
_userManager = value;
}
}
Cette seule ligne de code a sauvé ma journée ...
var manager =
new ApplicationUserManager(new UserStore<ApplicationUser>(new ApplicationDbContext()));
Vous pouvez l'utiliser dans une action du contrôleur pour obtenir une instance de UserManager.