2019-02-15 23:19:59 -05:00
|
|
|
|
using Microsoft.AspNetCore.Authentication;
|
2018-04-04 15:38:34 -04:00
|
|
|
|
using Microsoft.AspNetCore.Authentication.Cookies;
|
2019-02-15 23:19:59 -05:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
2019-03-31 20:56:31 -04:00
|
|
|
|
using SharedLibraryCore;
|
2019-12-02 16:52:36 -05:00
|
|
|
|
using SharedLibraryCore.Interfaces;
|
2018-04-05 00:38:45 -04:00
|
|
|
|
using System;
|
2021-06-30 22:13:25 -04:00
|
|
|
|
using System.Linq;
|
2019-02-15 23:19:59 -05:00
|
|
|
|
using System.Security.Claims;
|
|
|
|
|
using System.Threading.Tasks;
|
2022-06-15 20:37:34 -04:00
|
|
|
|
using SharedLibraryCore.Helpers;
|
2018-04-04 15:38:34 -04:00
|
|
|
|
|
|
|
|
|
namespace WebfrontCore.Controllers
|
|
|
|
|
{
|
|
|
|
|
public class AccountController : BaseController
|
|
|
|
|
{
|
2019-12-02 16:52:36 -05:00
|
|
|
|
public AccountController(IManager manager) : base(manager)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
2019-02-22 20:06:51 -05:00
|
|
|
|
|
2018-04-04 15:38:34 -04:00
|
|
|
|
[HttpGet]
|
2022-06-15 20:37:34 -04:00
|
|
|
|
[Obsolete]
|
2022-04-19 19:43:58 -04:00
|
|
|
|
public async Task<IActionResult> Login(int clientId, string password)
|
2018-04-04 15:38:34 -04:00
|
|
|
|
{
|
2018-04-05 18:50:04 -04:00
|
|
|
|
if (clientId == 0 || string.IsNullOrEmpty(password))
|
2018-04-04 15:38:34 -04:00
|
|
|
|
{
|
2022-04-19 19:43:58 -04:00
|
|
|
|
return Unauthorized("Invalid credentials");
|
2018-04-04 15:38:34 -04:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-05 00:38:45 -04:00
|
|
|
|
try
|
2018-04-04 15:38:34 -04:00
|
|
|
|
{
|
2019-08-02 19:04:34 -04:00
|
|
|
|
var privilegedClient = await Manager.GetClientService().GetClientForLogin(clientId);
|
2022-06-15 20:37:34 -04:00
|
|
|
|
var loginSuccess = false;
|
|
|
|
|
|
|
|
|
|
if (Utilities.IsDevelopment)
|
|
|
|
|
{
|
|
|
|
|
loginSuccess = clientId == 1;
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-29 13:08:25 -04:00
|
|
|
|
if (!Authorized && !loginSuccess)
|
|
|
|
|
{
|
2022-06-15 20:37:34 -04:00
|
|
|
|
loginSuccess = Manager.TokenAuthenticator.AuthorizeToken(new TokenIdentifier
|
|
|
|
|
{
|
2022-06-16 11:07:03 -04:00
|
|
|
|
ClientId = clientId,
|
2022-06-15 20:37:34 -04:00
|
|
|
|
Token = password
|
|
|
|
|
}) ||
|
|
|
|
|
(await Task.FromResult(Hashing.Hash(password, privilegedClient.PasswordSalt)))[0] ==
|
|
|
|
|
privilegedClient.Password;
|
2019-07-29 13:08:25 -04:00
|
|
|
|
}
|
2019-02-16 16:04:40 -05:00
|
|
|
|
|
2019-02-22 20:06:51 -05:00
|
|
|
|
if (loginSuccess)
|
2018-04-04 15:38:34 -04:00
|
|
|
|
{
|
2018-04-05 00:38:45 -04:00
|
|
|
|
var claims = new[]
|
|
|
|
|
{
|
2019-04-17 18:50:53 -04:00
|
|
|
|
new Claim(ClaimTypes.NameIdentifier, privilegedClient.Name),
|
|
|
|
|
new Claim(ClaimTypes.Role, privilegedClient.Level.ToString()),
|
|
|
|
|
new Claim(ClaimTypes.Sid, privilegedClient.ClientId.ToString()),
|
2022-06-15 20:37:34 -04:00
|
|
|
|
new Claim(ClaimTypes.PrimarySid, privilegedClient.NetworkId.ToString("X")),
|
|
|
|
|
new Claim(ClaimTypes.PrimaryGroupSid, privilegedClient.GameName.ToString())
|
2018-04-07 17:47:21 -04:00
|
|
|
|
};
|
2018-04-04 15:38:34 -04:00
|
|
|
|
|
2018-04-05 00:38:45 -04:00
|
|
|
|
var claimsIdentity = new ClaimsIdentity(claims, "login");
|
|
|
|
|
var claimsPrinciple = new ClaimsPrincipal(claimsIdentity);
|
2019-08-04 21:38:55 -04:00
|
|
|
|
await SignInAsync(claimsPrinciple);
|
2021-06-30 22:13:25 -04:00
|
|
|
|
|
2022-06-15 20:37:34 -04:00
|
|
|
|
Manager.AddEvent(new GameEvent
|
2021-06-30 22:13:25 -04:00
|
|
|
|
{
|
|
|
|
|
Origin = privilegedClient,
|
|
|
|
|
Type = GameEvent.EventType.Login,
|
|
|
|
|
Owner = Manager.GetServers().First(),
|
2021-07-05 17:08:13 -04:00
|
|
|
|
Data = HttpContext.Request.Headers.ContainsKey("X-Forwarded-For")
|
|
|
|
|
? HttpContext.Request.Headers["X-Forwarded-For"].ToString()
|
2022-06-15 20:37:34 -04:00
|
|
|
|
: HttpContext.Connection.RemoteIpAddress?.ToString()
|
2021-06-30 22:13:25 -04:00
|
|
|
|
});
|
2018-04-05 00:38:45 -04:00
|
|
|
|
|
2022-04-19 19:43:58 -04:00
|
|
|
|
return Ok($"Welcome {privilegedClient.Name}. You are now logged in");
|
2018-04-05 00:38:45 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-04 15:38:34 -04:00
|
|
|
|
|
2018-04-05 00:38:45 -04:00
|
|
|
|
catch (Exception)
|
|
|
|
|
{
|
2022-04-19 19:43:58 -04:00
|
|
|
|
return Unauthorized("Could not validate credentials");
|
2018-04-04 15:38:34 -04:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-19 19:43:58 -04:00
|
|
|
|
return Unauthorized("Invalid credentials");
|
2018-04-04 15:38:34 -04:00
|
|
|
|
}
|
2018-04-05 18:50:04 -04:00
|
|
|
|
|
|
|
|
|
[HttpGet]
|
2022-04-19 19:43:58 -04:00
|
|
|
|
public async Task<IActionResult> Logout()
|
2018-04-05 18:50:04 -04:00
|
|
|
|
{
|
2021-06-30 22:13:25 -04:00
|
|
|
|
if (Authorized)
|
|
|
|
|
{
|
2022-06-15 20:37:34 -04:00
|
|
|
|
Manager.AddEvent(new GameEvent
|
2021-06-30 22:13:25 -04:00
|
|
|
|
{
|
|
|
|
|
Origin = Client,
|
|
|
|
|
Type = GameEvent.EventType.Logout,
|
|
|
|
|
Owner = Manager.GetServers().First(),
|
2021-07-05 17:08:13 -04:00
|
|
|
|
Data = HttpContext.Request.Headers.ContainsKey("X-Forwarded-For")
|
|
|
|
|
? HttpContext.Request.Headers["X-Forwarded-For"].ToString()
|
2022-06-15 20:37:34 -04:00
|
|
|
|
: HttpContext.Connection.RemoteIpAddress?.ToString()
|
2021-06-30 22:13:25 -04:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-08 02:44:42 -04:00
|
|
|
|
await HttpContext.SignOutAsync(CookieAuthenticationDefaults.AuthenticationScheme);
|
2018-04-05 18:50:04 -04:00
|
|
|
|
return RedirectToAction("Index", "Home");
|
|
|
|
|
}
|
2018-04-04 15:38:34 -04:00
|
|
|
|
}
|
|
|
|
|
}
|