-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdmin.cshtml.cs
64 lines (54 loc) · 2.01 KB
/
Admin.cshtml.cs
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
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
using Org.BouncyCastle.Asn1.Crmf;
using System.Security.Claims;
namespace pdftest.Pages
{
[Authorize]
[IgnoreAntiforgeryToken]
public class AdminModel : PageModel
{
[BindProperty]
public int UserId { get; set; }
public void OnPostGetId(int id)
{
UserId = id;
}
public IActionResult OnGet()
{
if(User.FindFirstValue("IsAdmin") == "False")
{
return RedirectToPage("Home");
}
return Page();
}
public IActionResult OnPostCreateAccount(string firstname, string lastname, string email, string password, string school, string speciality, bool isadmin)
{
DbOperations.CreateNewUser(firstname, lastname, email, password, school, speciality, isadmin);
return RedirectToPage("Admin");
}
public void OnPostDeleteUser(int id)
{
DbOperations.DeleteUser(id);
}
public IActionResult OnGetReturnUser(int id)
{
return new JsonResult(DbOperations.GetUserById(id));
}
public IActionResult OnPostEditAccount(string id, string firstname, string lastname, string email, string password, string school, string speciality, bool isadmin)
{
DbOperations.UpdateUser(id, firstname, lastname, email, password, school, speciality, isadmin);
return RedirectToPage("Admin");
}
public void OnPostAddCategory(string categoryText, int categoryNum, int ticket, int points)
{
int specialityNum = DbOperations.GetSpecialityId(User.FindFirstValue("speciality"));
DbOperations.AddCategory(categoryText, specialityNum, ticket, categoryNum, points);
}
public void OnPostAddSpeciality(string speciality)
{
DbOperations.AddSpeciality(speciality);
}
}
}