Identityを既存のプロジェクトに構成することは難しくありません。NuGetパッケージをいくつかインストールし、小さな構成を行う必要があります。
まず、パッケージマネージャーコンソールでこれらのNuGetパッケージをインストールします。
PM> Install-Package Microsoft.AspNet.Identity.Owin
PM> Install-Package Microsoft.AspNet.Identity.EntityFramework
PM> Install-Package Microsoft.Owin.Host.SystemWeb
ユーザークラスを追加し、IdentityUser
継承します。
public class AppUser : IdentityUser
{
//add your custom properties which have not included in IdentityUser before
public string MyExtraProperty { get; set; }
}
役割についても同じことを行います。
public class AppRole : IdentityRole
{
public AppRole() : base() { }
public AppRole(string name) : base(name) { }
// extra properties here
}
DbContext
親DbContext
を次のIdentityDbContext<AppUser>
ように変更します。
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>
}
同じ接続文字列を使用し、移行を有効にすると、EFが必要なテーブルを作成します。
オプションで、拡張UserManager
して目的の構成とカスタマイズを追加できます。
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;
}
}
IdentityはOWINに基づいているため、OWINも構成する必要があります。
クラスをApp_Start
フォルダー(または必要に応じて他の場所)に追加します。このクラスはOWINで使用されます。これがスタートアップクラスになります。
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"),
});
}
}
}
web.config
OWINがスタートアップクラスを見つけることができるように、ほとんどの場合、このコード行をファイルに追加するだけです。
<appSettings>
<!-- other setting here -->
<add key="owin:AppStartup" value="MyAppNamespace.IdentityConfig" />
</appSettings>
これで、プロジェクト全体で、VSによってすでにインストールされている新しいプロジェクトと同じようにIdentityを使用できます。たとえば、ログインアクションを検討してください
[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);
}
あなたは役割を作り、ユーザーに追加することができます:
public ActionResult CreateRole(string roleName)
{
var roleManager=HttpContext.GetOwinContext().GetUserManager<RoleManager<AppRole>>();
if (!roleManager.RoleExists(roleName))
roleManager.Create(new AppRole(roleName));
// rest of code
}
次のように、ユーザーにロールを追加することもできます。
UserManager.AddToRole(UserManager.FindByName("username").Id, "roleName");
を使用Authorize
すると、アクションまたはコントローラーを保護できます。
[Authorize]
public ActionResult MySecretAction() {}
または
[Authorize(Roles = "Admin")]]
public ActionResult MySecretAction() {}
追加のパッケージをインストールして、好きなように、Microsoft.Owin.Security.Facebook
または必要に応じて、それらを要件に合わせて構成することもできます。
注:関連する名前空間をファイルに追加することを忘れないでください:
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;
また、Identityの高度な使用について、これとこれのような他の私の答えを見ることができます。