-
Notifications
You must be signed in to change notification settings - Fork 159
/
StatusController.cs
102 lines (84 loc) · 2.87 KB
/
StatusController.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
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
// Copyright (c) 2022 Jon P Smith, GitHub: JonPSmith, web: http://www.thereformedprogrammer.net/
// Licensed under MIT license. See License.txt in the project root for license information.
using System;
using System.Threading.Tasks;
using AuthPermissions.AdminCode;
using AuthPermissions.AspNetCore;
using AuthPermissions.BaseCode.CommonCode;
using AuthPermissions.SupportCode.DownStatusCode;
using Example4.MvcWebApp.IndividualAccounts.PermissionsCode;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace Example4.MvcWebApp.IndividualAccounts.Controllers;
//Stop non-logged in user getting to StatusController
[Authorize]
public class StatusController : Controller
{
private readonly ISetRemoveStatus _status;
public StatusController(ISetRemoveStatus status)
{
_status = status;
}
public IActionResult Index(string message)
{
ViewBag.Message = message;
var downCacheList = _status.GetAllDownKeyValues();
return View(downCacheList);
}
[HasPermission(Example4Permissions.AppStatusAllDown)]
public IActionResult TakeAllDown()
{
return View();
}
[HttpPost]
[ValidateAntiForgeryToken]
[HasPermission(Example4Permissions.AppStatusAllDown)]
public IActionResult TakeAllDown(ManuelAppDownDto data)
{
data.UserId = User.GetUserIdFromUser();
data.StartedUtc = DateTime.UtcNow;
_status.SetAppDown(data);
return RedirectToAction("Index", new { });
}
[HasPermission(Example4Permissions.AppStatusTenantDown)]
public async Task<IActionResult> TakeTenantDown([FromServices] IAuthTenantAdminService tenantAdminService)
{
return View(await ManuelTenantDownDto.SetupListOfTenantsAsync(tenantAdminService));
}
[HttpPost]
[ValidateAntiForgeryToken]
[HasPermission(Example4Permissions.AppStatusTenantDown)]
public async Task<IActionResult> TakeTenantDown(ManuelTenantDownDto data)
{
await _status.SetTenantDownWithDelayAsync(TenantDownVersions.ManualDown, data.TenantId);
return RedirectToAction("Index", new { });
}
/// <summary>
/// This can remove ANY down status from the list
/// </summary>
/// <param name="key"></param>
/// <returns></returns>
[HasPermission(Example4Permissions.AppStatusRemove)]
public IActionResult Remove(string key)
{
_status.RemoveAnyDown(key);
return RedirectToAction("Index", new { });
}
//---------------------------------------------------------------------
public IActionResult ShowAppDownStatus()
{
return View(_status.GetAppDownMessage());
}
public IActionResult ShowTenantDownStatus()
{
return View();
}
public IActionResult ShowTenantDeleted()
{
return View();
}
public IActionResult ShowTenantManuallyDown()
{
return View();
}
}