그래 넌 할수있어. 인증 및 권한 부여 부분은 독립적으로 작동합니다. 자체 인증 서비스가있는 경우 OWIN의 인증 부분 만 사용할 수 있습니다. 고려 당신이 이미 가지고 UserManager
있는 유효성을 확인 username
하고 password
. 따라서 포스트 백 로그인 작업에 다음 코드를 작성할 수 있습니다.
[HttpPost]
public ActionResult Login(string username, string password)
{
if (new UserManager().IsValid(username, password))
{
var ident = new ClaimsIdentity(
new[] {
new Claim(ClaimTypes.NameIdentifier, username),
new Claim("http://schemas.microsoft.com/accesscontrolservice/2010/07/claims/identityprovider", "ASP.NET Identity", "http://www.w3.org/2001/XMLSchema#string"),
new Claim(ClaimTypes.Name,username),
new Claim(ClaimTypes.Role, "RoleName"),
new Claim(ClaimTypes.Role, "AnotherRole"),
},
DefaultAuthenticationTypes.ApplicationCookie);
HttpContext.GetOwinContext().Authentication.SignIn(
new AuthenticationProperties { IsPersistent = false }, ident);
return RedirectToAction("MyAction");
}
ModelState.AddModelError("", "invalid username or password");
return View();
}
사용자 관리자는 다음과 같을 수 있습니다.
class UserManager
{
public bool IsValid(string username, string password)
{
using(var db=new MyDbContext())
{
return db.Users.Any(u=>u.Username==username
&& u.Password==password);
}
}
}
결국 Authorize
속성 을 추가하여 작업이나 컨트롤러를 보호 할 수 있습니다 .
[Authorize]
public ActionResult MySecretAction()
{
}
[Authorize(Roles="Admin")]
public ActionResult MySecretAction()
{
}