2018-02-21 20:29:23 -05:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
2018-04-08 02:44:42 -04:00
|
|
|
|
using SharedLibraryCore;
|
2018-11-05 22:01:29 -05:00
|
|
|
|
using SharedLibraryCore.Database.Models;
|
2018-04-08 02:44:42 -04:00
|
|
|
|
using SharedLibraryCore.Dtos;
|
2020-08-17 22:21:11 -04:00
|
|
|
|
using SharedLibraryCore.Dtos.Meta.Responses;
|
2019-12-02 16:52:36 -05:00
|
|
|
|
using SharedLibraryCore.Interfaces;
|
2020-08-17 22:21:11 -04:00
|
|
|
|
using SharedLibraryCore.QueryHelper;
|
2018-02-21 20:29:23 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2022-03-23 09:43:57 -04:00
|
|
|
|
using System.Threading;
|
2018-02-21 20:29:23 -05:00
|
|
|
|
using System.Threading.Tasks;
|
2021-03-22 12:09:25 -04:00
|
|
|
|
using Data.Models;
|
2021-11-23 18:26:33 -05:00
|
|
|
|
using Stats.Config;
|
2020-08-17 22:21:11 -04:00
|
|
|
|
using WebfrontCore.ViewComponents;
|
2018-02-21 20:29:23 -05:00
|
|
|
|
|
|
|
|
|
namespace WebfrontCore.Controllers
|
|
|
|
|
{
|
2018-03-06 02:22:19 -05:00
|
|
|
|
public class ClientController : BaseController
|
2018-02-21 20:29:23 -05:00
|
|
|
|
{
|
2022-03-23 09:43:57 -04:00
|
|
|
|
private readonly IMetaServiceV2 _metaService;
|
2022-01-28 18:28:49 -05:00
|
|
|
|
private readonly StatsConfiguration _config;
|
2019-12-02 16:52:36 -05:00
|
|
|
|
|
2022-03-23 09:43:57 -04:00
|
|
|
|
public ClientController(IManager manager, IMetaServiceV2 metaService, StatsConfiguration config) : base(manager)
|
2020-08-17 22:21:11 -04:00
|
|
|
|
{
|
|
|
|
|
_metaService = metaService;
|
2022-01-28 18:28:49 -05:00
|
|
|
|
_config = config;
|
2019-12-02 16:52:36 -05:00
|
|
|
|
}
|
|
|
|
|
|
2022-03-23 09:43:57 -04:00
|
|
|
|
public async Task<IActionResult> ProfileAsync(int id, MetaType? metaFilterType, CancellationToken token = default)
|
2018-02-21 20:29:23 -05:00
|
|
|
|
{
|
2018-03-06 02:22:19 -05:00
|
|
|
|
var client = await Manager.GetClientService().Get(id);
|
2019-03-29 22:56:56 -04:00
|
|
|
|
|
2018-05-24 15:48:57 -04:00
|
|
|
|
if (client == null)
|
|
|
|
|
{
|
|
|
|
|
return NotFound();
|
|
|
|
|
}
|
2018-04-08 02:44:42 -04:00
|
|
|
|
|
2022-02-22 18:09:50 -05:00
|
|
|
|
var activePenalties = await Manager.GetPenaltyService().GetActivePenaltiesAsync(client.AliasLinkId,
|
|
|
|
|
client.CurrentAliasId, client.NetworkId, client.IPAddress);
|
2020-08-17 22:21:11 -04:00
|
|
|
|
|
2022-02-01 19:20:29 -05:00
|
|
|
|
var persistentMetaTask = new[]
|
|
|
|
|
{
|
2022-03-23 09:43:57 -04:00
|
|
|
|
_metaService.GetPersistentMetaByLookup(EFMeta.ClientTagV2, EFMeta.ClientTagNameV2, client.ClientId, token),
|
|
|
|
|
_metaService.GetPersistentMeta("GravatarEmail", client.ClientId, token)
|
2022-02-01 19:20:29 -05:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var persistentMeta = await Task.WhenAll(persistentMetaTask);
|
|
|
|
|
var tag = persistentMeta[0];
|
|
|
|
|
var gravatar = persistentMeta[1];
|
|
|
|
|
|
2022-03-23 09:43:57 -04:00
|
|
|
|
if (tag?.Value != null)
|
2021-01-24 12:47:19 -05:00
|
|
|
|
{
|
2022-03-23 09:43:57 -04:00
|
|
|
|
client.SetAdditionalProperty(EFMeta.ClientTagV2, tag.Value);
|
2021-01-24 12:47:19 -05:00
|
|
|
|
}
|
2018-09-02 17:59:27 -04:00
|
|
|
|
|
2022-02-28 16:20:46 -05:00
|
|
|
|
// even though we haven't set their level to "banned" yet
|
|
|
|
|
// (ie they haven't reconnected with the infringing player identifier)
|
|
|
|
|
// we want to show them as banned as to not confuse people.
|
|
|
|
|
if (activePenalties.Any(penalty => penalty.Type == EFPenalty.PenaltyType.Ban))
|
|
|
|
|
{
|
|
|
|
|
client.Level = Data.Models.Client.EFClient.Permission.Banned;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-22 12:09:25 -04:00
|
|
|
|
var displayLevelInt = (int)client.Level;
|
|
|
|
|
var displayLevel = client.Level.ToLocalizedLevelName();
|
2019-07-24 11:36:37 -04:00
|
|
|
|
|
|
|
|
|
if (!Authorized && client.Level.ShouldHideLevel())
|
|
|
|
|
{
|
2021-03-22 12:09:25 -04:00
|
|
|
|
displayLevelInt = (int)Data.Models.Client.EFClient.Permission.User;
|
|
|
|
|
displayLevel = Data.Models.Client.EFClient.Permission.User.ToLocalizedLevelName();
|
2019-07-24 11:36:37 -04:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-24 12:47:19 -05:00
|
|
|
|
displayLevel = string.IsNullOrEmpty(client.Tag) ? displayLevel : $"{displayLevel} ({client.Tag})";
|
|
|
|
|
|
2022-02-01 19:20:29 -05:00
|
|
|
|
var clientDto = new PlayerInfo
|
2018-02-21 20:29:23 -05:00
|
|
|
|
{
|
|
|
|
|
Name = client.Name,
|
2019-07-24 11:36:37 -04:00
|
|
|
|
Level = displayLevel,
|
|
|
|
|
LevelInt = displayLevelInt,
|
2018-02-21 20:29:23 -05:00
|
|
|
|
ClientId = client.ClientId,
|
|
|
|
|
IPAddress = client.IPAddressString,
|
|
|
|
|
NetworkId = client.NetworkId,
|
2020-08-17 22:21:11 -04:00
|
|
|
|
Meta = new List<InformationResponse>(),
|
2018-02-21 20:29:23 -05:00
|
|
|
|
Aliases = client.AliasLink.Children
|
2019-12-27 15:42:17 -05:00
|
|
|
|
.Select(_alias => _alias.Name)
|
|
|
|
|
.GroupBy(_alias => _alias.StripColors())
|
|
|
|
|
// we want the longest "duplicate" name
|
|
|
|
|
.Select(_grp => _grp.OrderByDescending(_name => _name.Length).First())
|
2019-11-15 15:50:20 -05:00
|
|
|
|
.Distinct()
|
2019-12-27 15:42:17 -05:00
|
|
|
|
.OrderBy(a => a)
|
2018-02-21 20:29:23 -05:00
|
|
|
|
.ToList(),
|
|
|
|
|
IPs = client.AliasLink.Children
|
2019-11-15 15:50:20 -05:00
|
|
|
|
.Where(i => i.IPAddress != null)
|
|
|
|
|
.OrderByDescending(i => i.DateAdded)
|
2018-02-21 20:29:23 -05:00
|
|
|
|
.Select(i => i.IPAddress.ConvertIPtoString())
|
2019-11-15 15:50:20 -05:00
|
|
|
|
.Prepend(client.CurrentAlias.IPAddress.ConvertIPtoString())
|
2018-02-21 20:29:23 -05:00
|
|
|
|
.Distinct()
|
|
|
|
|
.ToList(),
|
2021-03-22 12:09:25 -04:00
|
|
|
|
HasActivePenalty = activePenalties.Any(_penalty => _penalty.Type != EFPenalty.PenaltyType.Flag),
|
2018-04-15 00:26:27 -04:00
|
|
|
|
Online = Manager.GetActiveClients().FirstOrDefault(c => c.ClientId == client.ClientId) != null,
|
2020-08-17 22:21:11 -04:00
|
|
|
|
TimeOnline = (DateTime.UtcNow - client.LastConnection).HumanizeForCurrentCulture(),
|
|
|
|
|
LinkedAccounts = client.LinkedAccounts,
|
|
|
|
|
MetaFilterType = metaFilterType
|
2018-02-21 20:29:23 -05:00
|
|
|
|
};
|
2018-03-09 03:01:12 -05:00
|
|
|
|
|
2020-08-17 22:21:11 -04:00
|
|
|
|
var meta = await _metaService.GetRuntimeMeta<InformationResponse>(new ClientPaginationRequest
|
|
|
|
|
{
|
|
|
|
|
ClientId = client.ClientId,
|
|
|
|
|
Before = DateTime.UtcNow
|
|
|
|
|
}, MetaType.Information);
|
|
|
|
|
|
2019-04-14 11:55:05 -04:00
|
|
|
|
if (gravatar != null)
|
|
|
|
|
{
|
2020-08-17 22:21:11 -04:00
|
|
|
|
clientDto.Meta.Add(new InformationResponse()
|
2019-04-14 11:55:05 -04:00
|
|
|
|
{
|
|
|
|
|
Key = "GravatarEmail",
|
2020-08-17 22:21:11 -04:00
|
|
|
|
Type = MetaType.Other,
|
2019-04-14 11:55:05 -04:00
|
|
|
|
Value = gravatar.Value
|
|
|
|
|
});
|
|
|
|
|
}
|
2018-06-26 21:17:24 -04:00
|
|
|
|
|
2020-08-17 22:21:11 -04:00
|
|
|
|
clientDto.ActivePenalty = activePenalties.OrderByDescending(_penalty => _penalty.Type).FirstOrDefault();
|
|
|
|
|
clientDto.Meta.AddRange(Authorized ? meta : meta.Where(m => !m.IsSensitive));
|
2019-04-14 11:55:05 -04:00
|
|
|
|
|
2022-02-01 19:20:29 -05:00
|
|
|
|
var strippedName = clientDto.Name.StripColors();
|
2019-08-02 19:04:34 -04:00
|
|
|
|
ViewBag.Title = strippedName.Substring(strippedName.Length - 1).ToLower()[0] == 's' ?
|
|
|
|
|
strippedName + "'" :
|
|
|
|
|
strippedName + "'s";
|
2018-05-05 18:52:04 -04:00
|
|
|
|
ViewBag.Title += " " + Localization["WEBFRONT_CLIENT_PROFILE_TITLE"];
|
2019-08-02 19:04:34 -04:00
|
|
|
|
ViewBag.Description = $"Client information for {strippedName}";
|
|
|
|
|
ViewBag.Keywords = $"IW4MAdmin, client, profile, {strippedName}";
|
2022-01-28 18:28:49 -05:00
|
|
|
|
ViewBag.UseNewStats = _config?.EnableAdvancedMetrics ?? true;
|
2018-02-24 00:56:03 -05:00
|
|
|
|
|
2018-02-21 20:29:23 -05:00
|
|
|
|
return View("Profile/Index", clientDto);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<IActionResult> PrivilegedAsync()
|
|
|
|
|
{
|
2021-03-23 11:28:17 -04:00
|
|
|
|
if (Manager.GetApplicationSettings().Configuration().EnablePrivilegedUserPrivacy && !Authorized)
|
|
|
|
|
{
|
|
|
|
|
return RedirectToAction("Index", "Home");
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-06 02:22:19 -05:00
|
|
|
|
var admins = (await Manager.GetClientService().GetPrivilegedClients())
|
2019-09-27 16:49:03 -04:00
|
|
|
|
.OrderByDescending(_client => _client.Level)
|
|
|
|
|
.ThenBy(_client => _client.Name);
|
2018-05-14 13:55:10 -04:00
|
|
|
|
|
2018-11-05 22:01:29 -05:00
|
|
|
|
var adminsDict = new Dictionary<EFClient.Permission, IList<ClientInfo>>();
|
2018-04-02 23:11:19 -04:00
|
|
|
|
|
2018-02-21 20:29:23 -05:00
|
|
|
|
foreach (var admin in admins)
|
|
|
|
|
{
|
|
|
|
|
if (!adminsDict.ContainsKey(admin.Level))
|
2018-11-25 22:11:55 -05:00
|
|
|
|
{
|
2018-02-21 20:29:23 -05:00
|
|
|
|
adminsDict.Add(admin.Level, new List<ClientInfo>());
|
2018-11-25 22:11:55 -05:00
|
|
|
|
}
|
2018-02-21 20:29:23 -05:00
|
|
|
|
|
|
|
|
|
adminsDict[admin.Level].Add(new ClientInfo()
|
|
|
|
|
{
|
|
|
|
|
Name = admin.Name,
|
|
|
|
|
ClientId = admin.ClientId
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-05 18:52:04 -04:00
|
|
|
|
ViewBag.Title = Localization["WEBFRONT_CLIENT_PRIVILEGED_TITLE"];
|
2021-01-08 20:21:23 -05:00
|
|
|
|
ViewBag.Description = Localization["WEBFRONT_DESCRIPTION_PRIVILEGED"];
|
|
|
|
|
ViewBag.Keywords = Localization["WEBFRONT_KEYWORDS_PRIVILEGED"];
|
2018-03-13 17:30:22 -04:00
|
|
|
|
|
2018-02-21 20:29:23 -05:00
|
|
|
|
return View("Privileged/Index", adminsDict);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task<IActionResult> FindAsync(string clientName)
|
|
|
|
|
{
|
2019-05-13 11:36:11 -04:00
|
|
|
|
if (string.IsNullOrWhiteSpace(clientName))
|
|
|
|
|
{
|
|
|
|
|
return StatusCode(400);
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-25 22:05:35 -04:00
|
|
|
|
var clientsDto = await Manager.GetClientService().FindClientsByIdentifier(clientName);
|
2019-11-15 15:50:20 -05:00
|
|
|
|
|
|
|
|
|
foreach (var client in clientsDto)
|
2019-07-24 11:36:37 -04:00
|
|
|
|
{
|
2021-03-22 12:09:25 -04:00
|
|
|
|
if (!Authorized && ((Data.Models.Client.EFClient.Permission)client.LevelInt).ShouldHideLevel())
|
2019-07-24 11:36:37 -04:00
|
|
|
|
{
|
2021-03-22 12:09:25 -04:00
|
|
|
|
client.LevelInt = (int)Data.Models.Client.EFClient.Permission.User;
|
|
|
|
|
client.Level = Data.Models.Client.EFClient.Permission.User.ToLocalizedLevelName();
|
2019-07-24 11:36:37 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-02-21 20:29:23 -05:00
|
|
|
|
|
2018-05-05 18:52:04 -04:00
|
|
|
|
ViewBag.Title = $"{clientsDto.Count} {Localization["WEBFRONT_CLIENT_SEARCH_MATCHING"]} \"{clientName}\"";
|
2018-02-21 20:29:23 -05:00
|
|
|
|
return View("Find/Index", clientsDto);
|
|
|
|
|
}
|
2019-03-27 20:40:26 -04:00
|
|
|
|
|
2022-03-24 17:23:40 -04:00
|
|
|
|
public async Task<IActionResult> Meta(int id, int count, int offset, long? startAt, MetaType? metaFilterType, CancellationToken token)
|
2019-03-27 20:40:26 -04:00
|
|
|
|
{
|
2020-08-17 22:21:11 -04:00
|
|
|
|
var request = new ClientPaginationRequest
|
2019-04-16 12:32:42 -04:00
|
|
|
|
{
|
2020-08-17 22:21:11 -04:00
|
|
|
|
ClientId = id,
|
|
|
|
|
Count = count,
|
|
|
|
|
Offset = offset,
|
|
|
|
|
Before = DateTime.FromFileTimeUtc(startAt ?? DateTime.UtcNow.ToFileTimeUtc())
|
|
|
|
|
};
|
|
|
|
|
|
2022-03-24 17:23:40 -04:00
|
|
|
|
var meta = await ProfileMetaListViewComponent.GetClientMeta(_metaService, metaFilterType, Client.Level, request, token);
|
2019-11-15 15:50:20 -05:00
|
|
|
|
|
2020-11-11 18:31:26 -05:00
|
|
|
|
if (!meta.Any())
|
2019-03-27 20:40:26 -04:00
|
|
|
|
{
|
|
|
|
|
return Ok();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return View("Components/ProfileMetaList/_List", meta);
|
|
|
|
|
}
|
2018-02-21 20:29:23 -05:00
|
|
|
|
}
|
|
|
|
|
}
|