blob: aed29fc852449502eb10c2854dc5103ce515c85d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCore.Mvc;
using MyDarling.Models;
namespace MyDarling.Controllers;
public class AccountController : Controller
{
public UserManager<IdentityUser> UserManager { get; set; }
private SignInManager<IdentityUser> SignInManager;
public AccountController(UserManager<IdentityUser> userManager, SignInManager<IdentityUser> signInManager)
{
UserManager = userManager;
SignInManager = signInManager;
}
[Authorize]
public IActionResult List()
{
return View(UserManager.Users);
}
[Authorize]
public IActionResult Create()
{
return View(new IdentityUser());
}
[HttpPost]
[Authorize]
public async Task<IActionResult> Create([Bind] IdentityUser user, [Bind] string Password)
{
if (ModelState.IsValid)
{
IdentityResult result = await UserManager.CreateAsync(user, Password);
if (result.Succeeded)
{
return RedirectToAction(nameof(List));
}
foreach (IdentityError error in result.Errors)
{
ModelState.AddModelError("", error.Description);
}
}
return View();
}
public ViewResult Login(string returlUrl)
{
return View(new LoginModel { ReturnUrl = returlUrl });
}
[HttpPost]
public async Task<IActionResult> Login(LoginModel loginModel)
{
if (ModelState.IsValid)
{
IdentityUser user = await UserManager.FindByNameAsync(loginModel.Name);
if (user != null)
{
await SignInManager.SignOutAsync();
if ((await SignInManager.PasswordSignInAsync(user,
loginModel.Password, false, false))
.Succeeded)
{
return Redirect(loginModel?.ReturnUrl ?? "/Bundle");
}
}
ModelState.AddModelError("", "Invalid name or password");
}
return View(loginModel);
}
[Authorize]
public async Task<RedirectResult> Logout(string returlUrl = "/Account/Login")
{
await SignInManager.SignOutAsync();
return Redirect(returlUrl);
}
}
|