76 lines
2.6 KiB
C#
76 lines
2.6 KiB
C#
using Bootstrap.Admin.Models;
|
|
using Bootstrap.Security;
|
|
using Microsoft.AspNetCore.Authentication;
|
|
using Microsoft.AspNetCore.Authentication.Cookies;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System.Linq;
|
|
using System.Security.Claims;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bootstrap.Admin.Controllers
|
|
{
|
|
/// <summary>
|
|
/// Account controller.
|
|
/// </summary>
|
|
[AllowAnonymous]
|
|
[AutoValidateAntiforgeryToken]
|
|
public class AccountController : Controller
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpGet]
|
|
public ActionResult Login()
|
|
{
|
|
return View("Login", new ModelBase());
|
|
}
|
|
/// <summary>
|
|
/// Login the specified userName, password and remember.
|
|
/// </summary>
|
|
/// <returns>The login.</returns>
|
|
/// <param name="userName">User name.</param>
|
|
/// <param name="password">Password.</param>
|
|
/// <param name="remember">Remember.</param>
|
|
[HttpPost]
|
|
public async Task<IActionResult> Login(string userName, string password, string remember)
|
|
{
|
|
if (BootstrapUser.Authenticate(userName, password))
|
|
{
|
|
var identity = new ClaimsIdentity(CookieAuthenticationDefaults.AuthenticationScheme);
|
|
identity.AddClaim(new Claim(ClaimTypes.Name, userName));
|
|
await HttpContext.SignInAsync(CookieAuthenticationDefaults.AuthenticationScheme, new ClaimsPrincipal(identity), new AuthenticationProperties() { IsPersistent = remember == "true" });
|
|
}
|
|
// redirect origin url
|
|
var originUrl = Request.Query[CookieAuthenticationDefaults.ReturnUrlParameter].FirstOrDefault() ?? "~/Home/Index";
|
|
return Redirect(originUrl);
|
|
}
|
|
/// <summary>
|
|
/// Logout this instance.
|
|
/// </summary>
|
|
/// <returns>The logout.</returns>
|
|
public async Task<IActionResult> Logout()
|
|
{
|
|
await HttpContext.SignOutAsync(CookieAuthenticationDefaults.AuthenticationScheme);
|
|
return Redirect("~" + CookieAuthenticationDefaults.LoginPath);
|
|
}
|
|
/// <summary>
|
|
/// Accesses the denied.
|
|
/// </summary>
|
|
/// <returns>The denied.</returns>
|
|
[ResponseCache(Duration = 600)]
|
|
public ActionResult AccessDenied()
|
|
{
|
|
return View();
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public ActionResult Mobile()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
} |