Mevcut projenize Kimlik yapılandırmak zor bir şey değildir. Bazı NuGet paketlerini kurmalı ve küçük bir yapılandırma yapmalısınız.
Önce bu NuGet paketlerini Package Manager Konsolu ile kurun:
PM> Install-Package Microsoft.AspNet.Identity.Owin
PM> Install-Package Microsoft.AspNet.Identity.EntityFramework
PM> Install-Package Microsoft.Owin.Host.SystemWeb
IdentityUser
Kalıtımla bir kullanıcı sınıfı ekleyin :
public class AppUser : IdentityUser
{
//add your custom properties which have not included in IdentityUser before
public string MyExtraProperty { get; set; }
}
Rol için aynı şeyi yapın:
public class AppRole : IdentityRole
{
public AppRole() : base() { }
public AppRole(string name) : base(name) { }
// extra properties here
}
Senin değiştirin DbContext
gelen ebeveyn DbContext
için IdentityDbContext<AppUser>
böyle:
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>
}
Aynı bağlantı dizesini ve etkin geçişi kullanırsanız, EF sizin için gerekli tabloları oluşturur.
İsteğe bağlı olarak, UserManager
istediğiniz yapılandırmayı ve özelleştirmeyi eklemek için genişletebilirsiniz :
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;
}
}
Kimlik OWIN'e dayandığından, OWIN'i de yapılandırmanız gerekir:
App_Start
Klasöre (veya isterseniz başka bir yere) bir sınıf ekleyin . Bu sınıf OWIN tarafından kullanılır. Bu başlangıç sınıfınız olacak.
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"),
});
}
}
}
Neredeyse bitti, bu kod satırını web.config
dosyanıza ekleyin, böylece OWIN başlangıç sınıfınızı bulabilir.
<appSettings>
<!-- other setting here -->
<add key="owin:AppStartup" value="MyAppNamespace.IdentityConfig" />
</appSettings>
Şimdi tüm projede, tıpkı VS tarafından önceden kurulmuş herhangi bir yeni proje gibi Kimlik'i kullanabilirsiniz. Örneğin, giriş işlemini düşünün
[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);
}
Rol yapabilir ve kullanıcılarınıza ekleyebilirsiniz:
public ActionResult CreateRole(string roleName)
{
var roleManager=HttpContext.GetOwinContext().GetUserManager<RoleManager<AppRole>>();
if (!roleManager.RoleExists(roleName))
roleManager.Create(new AppRole(roleName));
// rest of code
}
Ayrıca, bir kullanıcıya aşağıdaki gibi bir rol ekleyebilirsiniz:
UserManager.AddToRole(UserManager.FindByName("username").Id, "roleName");
Kullanarak Authorize
eylemlerinizi veya denetleyicilerinizi koruyabilirsiniz:
[Authorize]
public ActionResult MySecretAction() {}
veya
[Authorize(Roles = "Admin")]]
public ActionResult MySecretAction() {}
Ayrıca, ek paketler kurabilir ve Microsoft.Owin.Security.Facebook
istediğiniz gibi veya istediğiniz gibi gereksinimlerinizi karşılayacak şekilde yapılandırabilirsiniz .
Not: Dosyalarınıza alakalı ad alanları eklemeyi unutmayın:
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;
Ayrıca böyle benim diğer cevaplar görebiliyordu bu ve bu Kimlik gelişmiş kullanım için.