mirror of
https://github.com/bitwarden/server.git
synced 2025-05-29 15:24:51 -05:00
57 lines
1.6 KiB
C#
57 lines
1.6 KiB
C#
using System.Threading.Tasks;
|
|
using Bit.Billing.Models;
|
|
using Bit.Core.Identity;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Billing.Controllers
|
|
{
|
|
public class LoginController : Controller
|
|
{
|
|
private readonly PasswordlessSignInManager<IdentityUser> _signInManager;
|
|
|
|
public LoginController(
|
|
PasswordlessSignInManager<IdentityUser> signInManager)
|
|
{
|
|
_signInManager = signInManager;
|
|
}
|
|
|
|
public IActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
[HttpPost]
|
|
[ValidateAntiForgeryToken]
|
|
public async Task<IActionResult> Index(LoginModel model)
|
|
{
|
|
if(ModelState.IsValid)
|
|
{
|
|
var result = await _signInManager.PasswordlessSignInAsync(model.Email,
|
|
Url.Action("Confirm", "Login", null, Request.Scheme));
|
|
if(result.Succeeded)
|
|
{
|
|
return RedirectToAction("Index", "Home");
|
|
}
|
|
else
|
|
{
|
|
ModelState.AddModelError(string.Empty, "Account not found.");
|
|
}
|
|
}
|
|
|
|
return View(model);
|
|
}
|
|
|
|
public async Task<IActionResult> Confirm(string email, string token)
|
|
{
|
|
var result = await _signInManager.PasswordlessSignInAsync(email, token, false);
|
|
if(!result.Succeeded)
|
|
{
|
|
return View("Error");
|
|
}
|
|
|
|
return RedirectToAction("Index", "Home");
|
|
}
|
|
}
|
|
}
|