blob: 2e5978b7f4641e33e2428e05808ccd9ff4476a5a (
plain) (
blame)
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
using ExamTemplate.Services;
using Microsoft.AspNetCore.Mvc;
using ExamTemplate.Web.Models.User;
using AutoMapper;
using ExamTemplate.Services.Models;
using System.Threading.Tasks;
namespace ExamTemplate.Web.Controllers
{
public class UserController : Controller
{
private readonly IMapper _autoMapper;
private readonly UserService _userService;
public UserController(IMapper autoMapper, UserService userService)
{
this._autoMapper = autoMapper;
this._userService = userService;
}
[HttpGet]
[Route("/Register")]
public IActionResult Register()
{
return View();
}
[HttpPost]
[Route("/Register")]
public async Task<IActionResult> Register(RegisterUserViewModel registerUserViewModel)
{
if (!ModelState.IsValid)
return View(registerUserViewModel);
RegisterUserServiceModel registerUserServiceModel = this._autoMapper.Map<RegisterUserServiceModel>(registerUserViewModel);
bool result = await this._userService.RegisterUserAsync(registerUserServiceModel);
if (result)
return RedirectToAction("Index", "Home");
else
return View();
}
[HttpGet]
[Route("/Login")]
public IActionResult Login()
{
return View();
}
[HttpPost]
[Route("/Login")]
public async Task<IActionResult> Login(LoginUserViewModel loginUserViewModel)
{
if (!ModelState.IsValid)
return View(loginUserViewModel);
LoginUserServiceModel loginUserServiceModel = this._autoMapper.Map<LoginUserServiceModel>(loginUserViewModel);
bool result = await this._userService.LoginUserAsync(loginUserServiceModel);
if (result)
return RedirectToAction("Index", "Home");
else
return View();
}
[HttpPost]
public async Task<IActionResult> Logout()
{
await this._userService.LogoutAsync();
return RedirectToAction("Login");
}
[HttpGet]
[Route("/Profile/{username}")]
public async Task<IActionResult> Profile(string username)
{
UserServiceModel userServiceModel = await this._userService.GetUserByUsernameAsync(username);
if (userServiceModel == default(UserServiceModel))
return RedirectToAction("Login");
UserViewModel userViewModel = this._autoMapper.Map<UserViewModel>(userServiceModel);
return View(userViewModel);
}
[HttpGet]
[Route("/EditProfile")]
public async Task<IActionResult> EditProfile()
{
UserServiceModel userServiceModel = await this._userService.GetUserByClaimsAsync(this.HttpContext.User);
if (userServiceModel == default(UserServiceModel))
return RedirectToAction("Login");
EditUserViewModel editUserViewModel = this._autoMapper.Map<EditUserViewModel>(userServiceModel);
return View(editUserViewModel);
}
[HttpPost]
[Route("/EditProfile")]
public async Task<IActionResult> EditProfile(EditUserViewModel editUserViewModel)
{
if (!this._userService.IsSignedIn(HttpContext.User))
return RedirectToAction("Login");
EditUserServiceModel editUserServiceModel = this._autoMapper.Map<EditUserServiceModel>(editUserViewModel);
bool result = await this._userService.EditUserAsync(HttpContext.User, editUserServiceModel);
if (result)
{
await this._userService.LogoutAsync();
return RedirectToAction("Profile", new { username = editUserViewModel.Username });
}
else
{
UserServiceModel userServiceModel = await this._userService.GetUserByClaimsAsync(HttpContext.User);
return RedirectToAction("Profile", new { username = userServiceModel.Username });
}
}
}
}
|