* move stuff out into file transfer manager * obnoxious unsupported version text, adjustments to filetransfermanager * add back file upload transfer progress * restructure code * cleanup some more stuff I guess * downloadids by playername * individual anim/sound bs * fix migration stuff, finalize impl of individual sound/anim pause * fixes with logging stuff * move download manager to transient * rework dl ui first iteration * some refactoring and cleanup * more code cleanup * refactoring * switch to hostbuilder * some more rework I guess * more refactoring * clean up mediator calls and disposal * fun code cleanup * push error message when log level is set to anything but information in non-debug builds * remove notificationservice * move message to after login * add download bars to gameworld * fixes download progress bar * set gpose ui min and max size * remove unnecessary usings * adjustments to reconnection logic * add options to set visible/offline groups visibility * add impl of uploading display, transfer list in settings ui * attempt to fix issues with server selection * add back download status to compact ui * make dl bar fixed size based * some fixes for upload/download handling * adjust text from Syncing back to Uploading --------- Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com> Co-authored-by: Stanley Dimant <stanley.dimant@varian.com>
297 lines
9.6 KiB
C#
297 lines
9.6 KiB
C#
using Dalamud.Interface.Internal.Notifications;
|
|
using MareSynchronos.API.Data.Enum;
|
|
using MareSynchronos.API.Dto;
|
|
using MareSynchronos.API.Dto.Group;
|
|
using MareSynchronos.API.Dto.User;
|
|
using MareSynchronos.Services.Mediator;
|
|
using Microsoft.AspNetCore.SignalR.Client;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace MareSynchronos.WebAPI;
|
|
|
|
public partial class ApiController
|
|
{
|
|
public Task Client_DownloadReady(Guid requestId)
|
|
{
|
|
Logger.LogDebug("Server sent {requestId} ready", requestId);
|
|
Mediator.Publish(new DownloadReadyMessage(requestId));
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task Client_GroupChangePermissions(GroupPermissionDto groupPermission)
|
|
{
|
|
Logger.LogTrace("Client_GroupChangePermissions: {perm}", groupPermission);
|
|
ExecuteSafely(() => _pairManager.SetGroupPermissions(groupPermission));
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task Client_GroupDelete(GroupDto groupDto)
|
|
{
|
|
Logger.LogTrace("Client_GroupDelete: {dto}", groupDto);
|
|
ExecuteSafely(() => _pairManager.RemoveGroup(groupDto.Group));
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task Client_GroupPairChangePermissions(GroupPairUserPermissionDto permissionDto)
|
|
{
|
|
Logger.LogTrace("Client_GroupPairChangePermissions: {perm}", permissionDto);
|
|
ExecuteSafely(() =>
|
|
{
|
|
if (string.Equals(permissionDto.UID, UID, StringComparison.Ordinal)) _pairManager.SetGroupUserPermissions(permissionDto);
|
|
else _pairManager.SetGroupPairUserPermissions(permissionDto);
|
|
});
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task Client_GroupPairChangeUserInfo(GroupPairUserInfoDto userInfo)
|
|
{
|
|
Logger.LogTrace("Client_GroupPairChangeUserInfo: {dto}", userInfo);
|
|
ExecuteSafely(() =>
|
|
{
|
|
if (string.Equals(userInfo.UID, UID, StringComparison.Ordinal)) _pairManager.SetGroupStatusInfo(userInfo);
|
|
else _pairManager.SetGroupPairStatusInfo(userInfo);
|
|
});
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task Client_GroupPairJoined(GroupPairFullInfoDto groupPairInfoDto)
|
|
{
|
|
Logger.LogTrace("Client_GroupPairJoined: {dto}", groupPairInfoDto);
|
|
ExecuteSafely(() => _pairManager.AddGroupPair(groupPairInfoDto));
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task Client_GroupPairLeft(GroupPairDto groupPairDto)
|
|
{
|
|
Logger.LogTrace("Client_GroupPairLeft: {dto}", groupPairDto);
|
|
ExecuteSafely(() => _pairManager.RemoveGroupPair(groupPairDto));
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task Client_GroupSendFullInfo(GroupFullInfoDto groupInfo)
|
|
{
|
|
Logger.LogTrace("Client_GroupSendFullInfo: {dto}", groupInfo);
|
|
ExecuteSafely(() => _pairManager.AddGroup(groupInfo));
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task Client_GroupSendInfo(GroupInfoDto groupInfo)
|
|
{
|
|
Logger.LogTrace("Client_GroupSendInfo: {dto}", groupInfo);
|
|
ExecuteSafely(() => _pairManager.SetGroupInfo(groupInfo));
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task Client_ReceiveServerMessage(MessageSeverity messageSeverity, string message)
|
|
{
|
|
switch (messageSeverity)
|
|
{
|
|
case MessageSeverity.Error:
|
|
Mediator.Publish(new NotificationMessage("Warning from " + _serverManager.CurrentServer!.ServerName, message, NotificationType.Error, 7500));
|
|
break;
|
|
|
|
case MessageSeverity.Warning:
|
|
Mediator.Publish(new NotificationMessage("Warning from " + _serverManager.CurrentServer!.ServerName, message, NotificationType.Warning, 7500));
|
|
break;
|
|
|
|
case MessageSeverity.Information:
|
|
if (_doNotNotifyOnNextInfo)
|
|
{
|
|
_doNotNotifyOnNextInfo = false;
|
|
break;
|
|
}
|
|
Mediator.Publish(new NotificationMessage("Info from " + _serverManager.CurrentServer!.ServerName, message, NotificationType.Info, 5000));
|
|
break;
|
|
}
|
|
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task Client_UpdateSystemInfo(SystemInfoDto systemInfo)
|
|
{
|
|
SystemInfoDto = systemInfo;
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task Client_UserAddClientPair(UserPairDto dto)
|
|
{
|
|
Logger.LogDebug("Client_UserAddClientPair: {dto}", dto);
|
|
ExecuteSafely(() => _pairManager.AddUserPair(dto));
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task Client_UserReceiveCharacterData(OnlineUserCharaDataDto dataDto)
|
|
{
|
|
Logger.LogTrace("Client_UserReceiveCharacterData: {user}", dataDto.User);
|
|
ExecuteSafely(() => _pairManager.ReceiveCharaData(dataDto));
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task Client_UserReceiveUploadStatus(UserDto dto)
|
|
{
|
|
Logger.LogTrace("Client_UserReceiveUploadStatus: {dto}", dto);
|
|
ExecuteSafely(() => _pairManager.ReceiveUploadStatus(dto));
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task Client_UserRemoveClientPair(UserDto dto)
|
|
{
|
|
Logger.LogDebug("Client_UserRemoveClientPair: {dto}", dto);
|
|
ExecuteSafely(() => _pairManager.RemoveUserPair(dto));
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task Client_UserSendOffline(UserDto dto)
|
|
{
|
|
Logger.LogDebug("Client_UserSendOffline: {dto}", dto);
|
|
ExecuteSafely(() => _pairManager.MarkPairOffline(dto.User));
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task Client_UserSendOnline(OnlineUserIdentDto dto)
|
|
{
|
|
Logger.LogDebug("Client_UserSendOnline: {dto}", dto);
|
|
ExecuteSafely(() => _pairManager.MarkPairOnline(dto));
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task Client_UserUpdateOtherPairPermissions(UserPermissionsDto dto)
|
|
{
|
|
Logger.LogDebug("Client_UserUpdateOtherPairPermissions: {dto}", dto);
|
|
ExecuteSafely(() => _pairManager.UpdatePairPermissions(dto));
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task Client_UserUpdateSelfPairPermissions(UserPermissionsDto dto)
|
|
{
|
|
Logger.LogDebug("Client_UserUpdateSelfPairPermissions: {dto}", dto);
|
|
ExecuteSafely(() => _pairManager.UpdateSelfPairPermissions(dto));
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public void OnDownloadReady(Action<Guid> act)
|
|
{
|
|
if (_initialized) return;
|
|
_mareHub!.On(nameof(Client_DownloadReady), act);
|
|
}
|
|
|
|
public void OnGroupChangePermissions(Action<GroupPermissionDto> act)
|
|
{
|
|
if (_initialized) return;
|
|
_mareHub!.On(nameof(Client_GroupChangePermissions), act);
|
|
}
|
|
|
|
public void OnGroupDelete(Action<GroupDto> act)
|
|
{
|
|
if (_initialized) return;
|
|
_mareHub!.On(nameof(Client_GroupDelete), act);
|
|
}
|
|
|
|
public void OnGroupPairChangePermissions(Action<GroupPairUserPermissionDto> act)
|
|
{
|
|
if (_initialized) return;
|
|
_mareHub!.On(nameof(Client_GroupPairChangePermissions), act);
|
|
}
|
|
|
|
public void OnGroupPairChangeUserInfo(Action<GroupPairUserInfoDto> act)
|
|
{
|
|
if (_initialized) return;
|
|
_mareHub!.On(nameof(Client_GroupPairChangeUserInfo), act);
|
|
}
|
|
|
|
public void OnGroupPairJoined(Action<GroupPairFullInfoDto> act)
|
|
{
|
|
if (_initialized) return;
|
|
_mareHub!.On(nameof(Client_GroupPairJoined), act);
|
|
}
|
|
|
|
public void OnGroupPairLeft(Action<GroupPairDto> act)
|
|
{
|
|
if (_initialized) return;
|
|
_mareHub!.On(nameof(Client_GroupPairLeft), act);
|
|
}
|
|
|
|
public void OnGroupSendFullInfo(Action<GroupFullInfoDto> act)
|
|
{
|
|
if (_initialized) return;
|
|
_mareHub!.On(nameof(Client_GroupSendFullInfo), act);
|
|
}
|
|
|
|
public void OnGroupSendInfo(Action<GroupInfoDto> act)
|
|
{
|
|
if (_initialized) return;
|
|
_mareHub!.On(nameof(Client_GroupSendInfo), act);
|
|
}
|
|
|
|
public void OnReceiveServerMessage(Action<MessageSeverity, string> act)
|
|
{
|
|
if (_initialized) return;
|
|
_mareHub!.On(nameof(Client_ReceiveServerMessage), act);
|
|
}
|
|
|
|
public void OnUpdateSystemInfo(Action<SystemInfoDto> act)
|
|
{
|
|
if (_initialized) return;
|
|
_mareHub!.On(nameof(Client_UpdateSystemInfo), act);
|
|
}
|
|
|
|
public void OnUserAddClientPair(Action<UserPairDto> act)
|
|
{
|
|
if (_initialized) return;
|
|
_mareHub!.On(nameof(Client_UserAddClientPair), act);
|
|
}
|
|
|
|
public void OnUserReceiveCharacterData(Action<OnlineUserCharaDataDto> act)
|
|
{
|
|
if (_initialized) return;
|
|
_mareHub!.On(nameof(Client_UserReceiveCharacterData), act);
|
|
}
|
|
|
|
public void OnUserReceiveUploadStatus(Action<UserDto> act)
|
|
{
|
|
if (_initialized) return;
|
|
_mareHub!.On(nameof(Client_UserReceiveUploadStatus), act);
|
|
}
|
|
|
|
public void OnUserRemoveClientPair(Action<UserDto> act)
|
|
{
|
|
if (_initialized) return;
|
|
_mareHub!.On(nameof(Client_UserRemoveClientPair), act);
|
|
}
|
|
|
|
public void OnUserSendOffline(Action<UserDto> act)
|
|
{
|
|
if (_initialized) return;
|
|
_mareHub!.On(nameof(Client_UserSendOffline), act);
|
|
}
|
|
|
|
public void OnUserSendOnline(Action<OnlineUserIdentDto> act)
|
|
{
|
|
if (_initialized) return;
|
|
_mareHub!.On(nameof(Client_UserSendOnline), act);
|
|
}
|
|
|
|
public void OnUserUpdateOtherPairPermissions(Action<UserPermissionsDto> act)
|
|
{
|
|
if (_initialized) return;
|
|
_mareHub!.On(nameof(Client_UserUpdateOtherPairPermissions), act);
|
|
}
|
|
|
|
public void OnUserUpdateSelfPairPermissions(Action<UserPermissionsDto> act)
|
|
{
|
|
if (_initialized) return;
|
|
_mareHub!.On(nameof(Client_UserUpdateSelfPairPermissions), act);
|
|
}
|
|
|
|
private void ExecuteSafely(Action act)
|
|
{
|
|
try
|
|
{
|
|
act();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Logger.LogCritical(ex, "Error on executing safely");
|
|
}
|
|
}
|
|
} |