Configurar a identidade para o seu projeto existente não é algo difícil. Você deve instalar algum pacote NuGet e fazer algumas pequenas configurações.
Primeiro instale estes pacotes NuGet com o Package Manager Console:
PM> Install-Package Microsoft.AspNet.Identity.Owin
PM> Install-Package Microsoft.AspNet.Identity.EntityFramework
PM> Install-Package Microsoft.Owin.Host.SystemWeb
Adicione uma classe de usuário e com IdentityUser
herança:
public class AppUser : IdentityUser
{
//add your custom properties which have not included in IdentityUser before
public string MyExtraProperty { get; set; }
}
Faça o mesmo para a função:
public class AppRole : IdentityRole
{
public AppRole() : base() { }
public AppRole(string name) : base(name) { }
// extra properties here
}
Mude seu DbContext
pai de DbContext
para IdentityDbContext<AppUser>
assim:
public class MyDbContext : IdentityDbContext<AppUser>
{
// Other part of codes still same
// You don't need to add AppUser and AppRole
// since automatically added by inheriting form IdentityDbContext<AppUser>
}
Se você usar a mesma cadeia de conexão e a migração ativada, o EF criará as tabelas necessárias para você.
Opcionalmente, você pode estender UserManager
para adicionar sua configuração e customização desejadas:
public class AppUserManager : UserManager<AppUser>
{
public AppUserManager(IUserStore<AppUser> store)
: base(store)
{
}
// this method is called by Owin therefore this is the best place to configure your User Manager
public static AppUserManager Create(
IdentityFactoryOptions<AppUserManager> options, IOwinContext context)
{
var manager = new AppUserManager(
new UserStore<AppUser>(context.Get<MyDbContext>()));
// optionally configure your manager
// ...
return manager;
}
}
Como o Identity é baseado no OWIN, você também precisa configurar o OWIN:
Adicione uma classe à App_Start
pasta (ou a qualquer outro lugar, se desejar). Esta classe é usada pelo OWIN. Esta será sua classe de inicialização.
namespace MyAppNamespace
{
public class IdentityConfig
{
public void Configuration(IAppBuilder app)
{
app.CreatePerOwinContext(() => new MyDbContext());
app.CreatePerOwinContext<AppUserManager>(AppUserManager.Create);
app.CreatePerOwinContext<RoleManager<AppRole>>((options, context) =>
new RoleManager<AppRole>(
new RoleStore<AppRole>(context.Get<MyDbContext>())));
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
LoginPath = new PathString("/Home/Login"),
});
}
}
}
Quase pronto, basta adicionar esta linha de código ao seu web.config
arquivo para que o OWIN possa encontrar sua classe de inicialização.
<appSettings>
<!-- other setting here -->
<add key="owin:AppStartup" value="MyAppNamespace.IdentityConfig" />
</appSettings>
Agora, em todo o projeto, você pode usar o Identity, como qualquer novo projeto já instalado pelo VS. Considere a ação de login, por exemplo
[HttpPost]
public ActionResult Login(LoginViewModel login)
{
if (ModelState.IsValid)
{
var userManager = HttpContext.GetOwinContext().GetUserManager<AppUserManager>();
var authManager = HttpContext.GetOwinContext().Authentication;
AppUser user = userManager.Find(login.UserName, login.Password);
if (user != null)
{
var ident = userManager.CreateIdentity(user,
DefaultAuthenticationTypes.ApplicationCookie);
//use the instance that has been created.
authManager.SignIn(
new AuthenticationProperties { IsPersistent = false }, ident);
return Redirect(login.ReturnUrl ?? Url.Action("Index", "Home"));
}
}
ModelState.AddModelError("", "Invalid username or password");
return View(login);
}
Você pode criar funções e adicionar aos seus usuários:
public ActionResult CreateRole(string roleName)
{
var roleManager=HttpContext.GetOwinContext().GetUserManager<RoleManager<AppRole>>();
if (!roleManager.RoleExists(roleName))
roleManager.Create(new AppRole(roleName));
// rest of code
}
Você também pode adicionar uma função a um usuário, assim:
UserManager.AddToRole(UserManager.FindByName("username").Id, "roleName");
Ao usar, Authorize
você pode proteger suas ações ou controladores:
[Authorize]
public ActionResult MySecretAction() {}
ou
[Authorize(Roles = "Admin")]]
public ActionResult MySecretAction() {}
Você também pode instalar pacotes adicionais e configurá-los para atender aos seus requisitos, como Microsoft.Owin.Security.Facebook
ou o que você quiser.
Nota: Não esqueça de adicionar espaços de nome relevantes aos seus arquivos:
using Microsoft.AspNet.Identity;
using Microsoft.Owin.Security;
using Microsoft.AspNet.Identity.Owin;
using Microsoft.AspNet.Identity.EntityFramework;
using Microsoft.Owin;
using Microsoft.Owin.Security.Cookies;
using Owin;
Você também pode ver minhas outras respostas como esta e esta para uso avançado da identidade.