Compare commits
16 Commits
3500db98c2
...
chat-disab
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d78f9dafcc | ||
| 8e4432af45 | |||
|
|
d92496020e | ||
| 35f3390dda | |||
| efc0ef09f9 | |||
|
|
6b543529aa | ||
| dfb0594a5b | |||
|
|
8e7d7bf489 | ||
|
|
9b2fea6fa4 | ||
|
|
efb5a8072b | ||
|
|
8ea337ab2d | ||
|
|
b1d7ee5b34 | ||
| 0170ac377d | |||
| 9d9e8e9be6 | |||
|
|
bb88bea5aa | ||
|
|
67cb24a069 |
@@ -1,11 +1,12 @@
|
|||||||
namespace LightlessSync.API.Data.Enum;
|
namespace LightlessSync.API.Data.Enum;
|
||||||
|
|
||||||
[Flags]
|
[Flags]
|
||||||
public enum GroupPermissions
|
public enum GroupPermissions
|
||||||
{
|
{
|
||||||
NoneSet = 0x0,
|
NoneSet = 0x0,
|
||||||
PreferDisableAnimations = 0x1,
|
PreferDisableAnimations = 0x1,
|
||||||
PreferDisableSounds = 0x2,
|
PreferDisableSounds = 0x2,
|
||||||
DisableInvites = 0x4,
|
DisableInvites = 0x4,
|
||||||
PreferDisableVFX = 0x8,
|
PreferDisableVFX = 0x8,
|
||||||
|
DisableChat = 0x10,
|
||||||
}
|
}
|
||||||
@@ -19,11 +19,16 @@ public static class GroupPermissionsExtensions
|
|||||||
return perm.HasFlag(GroupPermissions.PreferDisableSounds);
|
return perm.HasFlag(GroupPermissions.PreferDisableSounds);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static bool IsPreferDisableVFX(this GroupPermissions perm)
|
public static bool IsPreferDisableVFX(this GroupPermissions perm)
|
||||||
{
|
{
|
||||||
return perm.HasFlag(GroupPermissions.PreferDisableVFX);
|
return perm.HasFlag(GroupPermissions.PreferDisableVFX);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static bool IsDisableChat(this GroupPermissions perm)
|
||||||
|
{
|
||||||
|
return perm.HasFlag(GroupPermissions.DisableChat);
|
||||||
|
}
|
||||||
|
|
||||||
public static void SetDisableInvites(this ref GroupPermissions perm, bool set)
|
public static void SetDisableInvites(this ref GroupPermissions perm, bool set)
|
||||||
{
|
{
|
||||||
if (set) perm |= GroupPermissions.DisableInvites;
|
if (set) perm |= GroupPermissions.DisableInvites;
|
||||||
@@ -42,9 +47,15 @@ public static class GroupPermissionsExtensions
|
|||||||
else perm &= ~GroupPermissions.PreferDisableSounds;
|
else perm &= ~GroupPermissions.PreferDisableSounds;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void SetPreferDisableVFX(this ref GroupPermissions perm, bool set)
|
public static void SetPreferDisableVFX(this ref GroupPermissions perm, bool set)
|
||||||
{
|
{
|
||||||
if (set) perm |= GroupPermissions.PreferDisableVFX;
|
if (set) perm |= GroupPermissions.PreferDisableVFX;
|
||||||
else perm &= ~GroupPermissions.PreferDisableVFX;
|
else perm &= ~GroupPermissions.PreferDisableVFX;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void SetDisableChat(this ref GroupPermissions perm, bool set)
|
||||||
|
{
|
||||||
|
if (set) perm |= GroupPermissions.DisableChat;
|
||||||
|
else perm &= ~GroupPermissions.DisableChat;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
80
LightlessSyncAPI/Dto/Chat/ChatDtos.cs
Normal file
80
LightlessSyncAPI/Dto/Chat/ChatDtos.cs
Normal file
@@ -0,0 +1,80 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using LightlessSync.API.Data;
|
||||||
|
using LightlessSync.API.Dto.User;
|
||||||
|
using MessagePack;
|
||||||
|
|
||||||
|
namespace LightlessSync.API.Dto.Chat;
|
||||||
|
|
||||||
|
public enum ChatChannelType : byte
|
||||||
|
{
|
||||||
|
Zone = 0,
|
||||||
|
Group = 1
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum ChatSenderKind : byte
|
||||||
|
{
|
||||||
|
Anonymous = 0,
|
||||||
|
IdentifiedUser = 1
|
||||||
|
}
|
||||||
|
|
||||||
|
[MessagePackObject]
|
||||||
|
public readonly record struct ChatChannelDescriptor
|
||||||
|
{
|
||||||
|
[Key(0)] public ChatChannelType Type { get; init; }
|
||||||
|
[Key(1)] public ushort WorldId { get; init; }
|
||||||
|
[Key(2)] public ushort ZoneId { get; init; }
|
||||||
|
[Key(3)] public string? CustomKey { get; init; }
|
||||||
|
|
||||||
|
public ChatChannelDescriptor WithNormalizedCustomKey() =>
|
||||||
|
this with { CustomKey = string.IsNullOrWhiteSpace(CustomKey) ? string.Empty : CustomKey };
|
||||||
|
}
|
||||||
|
|
||||||
|
[MessagePackObject(keyAsPropertyName: true)]
|
||||||
|
public readonly record struct ChatPresenceUpdateDto(ChatChannelDescriptor Channel, ushort TerritoryId, bool IsActive);
|
||||||
|
|
||||||
|
[MessagePackObject(keyAsPropertyName: true)]
|
||||||
|
public readonly record struct ChatSendRequestDto(ChatChannelDescriptor Channel, string Message);
|
||||||
|
|
||||||
|
[MessagePackObject(keyAsPropertyName: true)]
|
||||||
|
public readonly record struct ChatSenderDescriptor(
|
||||||
|
ChatSenderKind Kind,
|
||||||
|
string Token,
|
||||||
|
string? DisplayName,
|
||||||
|
string? HashedCid,
|
||||||
|
UserData? User,
|
||||||
|
bool CanResolveProfile);
|
||||||
|
|
||||||
|
[MessagePackObject(keyAsPropertyName: true)]
|
||||||
|
public readonly record struct ChatMessageDto(
|
||||||
|
ChatChannelDescriptor Channel,
|
||||||
|
ChatSenderDescriptor Sender,
|
||||||
|
string Message,
|
||||||
|
DateTime SentAtUtc,
|
||||||
|
string MessageId);
|
||||||
|
|
||||||
|
[MessagePackObject(keyAsPropertyName: true)]
|
||||||
|
public readonly record struct ChatReportSubmitDto(
|
||||||
|
ChatChannelDescriptor Channel,
|
||||||
|
string MessageId,
|
||||||
|
string Reason,
|
||||||
|
string? AdditionalContext);
|
||||||
|
|
||||||
|
[MessagePackObject(keyAsPropertyName: true)]
|
||||||
|
public readonly record struct ChatParticipantMuteRequestDto(
|
||||||
|
ChatChannelDescriptor Channel,
|
||||||
|
string Token,
|
||||||
|
bool Mute);
|
||||||
|
|
||||||
|
[MessagePackObject(keyAsPropertyName: true)]
|
||||||
|
public readonly record struct ZoneChatChannelInfoDto(
|
||||||
|
ChatChannelDescriptor Channel,
|
||||||
|
string DisplayName,
|
||||||
|
IReadOnlyList<string> Territories);
|
||||||
|
|
||||||
|
[MessagePackObject(keyAsPropertyName: true)]
|
||||||
|
public readonly record struct GroupChatChannelInfoDto(
|
||||||
|
ChatChannelDescriptor Channel,
|
||||||
|
string DisplayName,
|
||||||
|
string GroupId,
|
||||||
|
bool IsOwner);
|
||||||
@@ -7,8 +7,9 @@ namespace LightlessSync.API.Dto.Group;
|
|||||||
[MessagePackObject(keyAsPropertyName: true)]
|
[MessagePackObject(keyAsPropertyName: true)]
|
||||||
public record GroupFullInfoDto(GroupData Group, UserData Owner, GroupPermissions GroupPermissions,
|
public record GroupFullInfoDto(GroupData Group, UserData Owner, GroupPermissions GroupPermissions,
|
||||||
GroupUserPreferredPermissions GroupUserPermissions, GroupPairUserInfo GroupUserInfo,
|
GroupUserPreferredPermissions GroupUserPermissions, GroupPairUserInfo GroupUserInfo,
|
||||||
Dictionary<string, GroupPairUserInfo> GroupPairUserInfos) : GroupInfoDto(Group, Owner, GroupPermissions)
|
Dictionary<string, GroupPairUserInfo> GroupPairUserInfos, int GroupUserCount) : GroupInfoDto(Group, Owner, GroupPermissions)
|
||||||
{
|
{
|
||||||
public GroupUserPreferredPermissions GroupUserPermissions { get; set; } = GroupUserPermissions;
|
public GroupUserPreferredPermissions GroupUserPermissions { get; set; } = GroupUserPermissions;
|
||||||
public GroupPairUserInfo GroupUserInfo { get; set; } = GroupUserInfo;
|
public GroupPairUserInfo GroupUserInfo { get; set; } = GroupUserInfo;
|
||||||
|
public int GroupUserCount { get; set; } = GroupUserCount;
|
||||||
}
|
}
|
||||||
7
LightlessSyncAPI/Dto/Group/GroupPruneSettingsDto.cs
Normal file
7
LightlessSyncAPI/Dto/Group/GroupPruneSettingsDto.cs
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
using LightlessSync.API.Data;
|
||||||
|
using MessagePack;
|
||||||
|
|
||||||
|
namespace LightlessSync.API.Dto.Group;
|
||||||
|
|
||||||
|
[MessagePackObject(keyAsPropertyName: true)]
|
||||||
|
public record GroupPruneSettingsDto(GroupData Group, bool AutoPruneEnabled, int AutoPruneDays);
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net8.0</TargetFramework>
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|||||||
@@ -1,15 +1,16 @@
|
|||||||
using LightlessSync.API.Data;
|
using LightlessSync.API.Data;
|
||||||
using LightlessSync.API.Data.Enum;
|
using LightlessSync.API.Data.Enum;
|
||||||
using LightlessSync.API.Dto;
|
using LightlessSync.API.Dto;
|
||||||
|
using LightlessSync.API.Dto.Chat;
|
||||||
using LightlessSync.API.Dto.CharaData;
|
using LightlessSync.API.Dto.CharaData;
|
||||||
using LightlessSync.API.Dto.Group;
|
using LightlessSync.API.Dto.Group;
|
||||||
using LightlessSync.API.Dto.User;
|
using LightlessSync.API.Dto.User;
|
||||||
|
|
||||||
namespace LightlessSync.API.SignalR;
|
namespace LightlessSync.API.SignalR;
|
||||||
|
|
||||||
public interface ILightlessHub
|
public interface ILightlessHub
|
||||||
{
|
{
|
||||||
const int ApiVersion = 34;
|
const int ApiVersion = 35;
|
||||||
const string Path = "/lightless";
|
const string Path = "/lightless";
|
||||||
|
|
||||||
Task<bool> CheckClientHealth();
|
Task<bool> CheckClientHealth();
|
||||||
@@ -21,7 +22,7 @@ public interface ILightlessHub
|
|||||||
Task Client_GroupPairJoined(GroupPairFullInfoDto groupPairInfoDto);
|
Task Client_GroupPairJoined(GroupPairFullInfoDto groupPairInfoDto);
|
||||||
Task Client_GroupPairLeft(GroupPairDto groupPairDto);
|
Task Client_GroupPairLeft(GroupPairDto groupPairDto);
|
||||||
Task Client_GroupSendFullInfo(GroupFullInfoDto groupInfo);
|
Task Client_GroupSendFullInfo(GroupFullInfoDto groupInfo);
|
||||||
Task Client_GroupSendProfile (GroupProfileDto groupInfo);
|
Task Client_GroupSendProfile(GroupProfileDto groupInfo);
|
||||||
Task Client_GroupSendInfo(GroupInfoDto groupInfo);
|
Task Client_GroupSendInfo(GroupInfoDto groupInfo);
|
||||||
Task Client_ReceiveServerMessage(MessageSeverity messageSeverity, string message);
|
Task Client_ReceiveServerMessage(MessageSeverity messageSeverity, string message);
|
||||||
Task Client_ReceiveBroadcastPairRequest(UserPairNotificationDto dto);
|
Task Client_ReceiveBroadcastPairRequest(UserPairNotificationDto dto);
|
||||||
@@ -43,8 +44,11 @@ public interface ILightlessHub
|
|||||||
Task Client_GposeLobbyPushCharacterData(CharaDataDownloadDto charaDownloadDto);
|
Task Client_GposeLobbyPushCharacterData(CharaDataDownloadDto charaDownloadDto);
|
||||||
Task Client_GposeLobbyPushPoseData(UserData userData, PoseData poseData);
|
Task Client_GposeLobbyPushPoseData(UserData userData, PoseData poseData);
|
||||||
Task Client_GposeLobbyPushWorldData(UserData userData, WorldData worldData);
|
Task Client_GposeLobbyPushWorldData(UserData userData, WorldData worldData);
|
||||||
|
Task Client_ChatReceive(ChatMessageDto message);
|
||||||
|
|
||||||
Task<ConnectionDto> GetConnectionDto();
|
Task<ConnectionDto> GetConnectionDto();
|
||||||
|
Task<IReadOnlyList<ZoneChatChannelInfoDto>> GetZoneChatChannels();
|
||||||
|
Task<IReadOnlyList<GroupChatChannelInfoDto>> GetGroupChatChannels();
|
||||||
|
|
||||||
Task GroupBanUser(GroupPairDto dto, string reason);
|
Task GroupBanUser(GroupPairDto dto, string reason);
|
||||||
Task GroupChangeGroupPermissionState(GroupPermissionDto dto);
|
Task GroupChangeGroupPermissionState(GroupPermissionDto dto);
|
||||||
@@ -64,6 +68,8 @@ public interface ILightlessHub
|
|||||||
Task<GroupProfileDto> GroupGetProfile(GroupDto dto);
|
Task<GroupProfileDto> GroupGetProfile(GroupDto dto);
|
||||||
Task GroupSetProfile(GroupProfileDto dto);
|
Task GroupSetProfile(GroupProfileDto dto);
|
||||||
Task GroupSetUserInfo(GroupPairUserInfoDto groupPair);
|
Task GroupSetUserInfo(GroupPairUserInfoDto groupPair);
|
||||||
|
Task<GroupPruneSettingsDto> GroupGetPruneSettings(GroupDto dto);
|
||||||
|
Task GroupSetPruneSettings(GroupPruneSettingsDto dto);
|
||||||
Task<List<GroupFullInfoDto>> GroupsGetAll();
|
Task<List<GroupFullInfoDto>> GroupsGetAll();
|
||||||
Task GroupUnbanUser(GroupPairDto groupPair);
|
Task GroupUnbanUser(GroupPairDto groupPair);
|
||||||
Task<int> GroupPrune(GroupDto group, int days, bool execute);
|
Task<int> GroupPrune(GroupDto group, int days, bool execute);
|
||||||
@@ -105,4 +111,8 @@ public interface ILightlessHub
|
|||||||
Task GposeLobbyPushCharacterData(CharaDataDownloadDto charaDownloadDto);
|
Task GposeLobbyPushCharacterData(CharaDataDownloadDto charaDownloadDto);
|
||||||
Task GposeLobbyPushPoseData(PoseData poseData);
|
Task GposeLobbyPushPoseData(PoseData poseData);
|
||||||
Task GposeLobbyPushWorldData(WorldData worldData);
|
Task GposeLobbyPushWorldData(WorldData worldData);
|
||||||
}
|
Task UpdateChatPresence(ChatPresenceUpdateDto presence);
|
||||||
|
Task SendChatMessage(ChatSendRequestDto request);
|
||||||
|
Task ReportChatMessage(ChatReportSubmitDto request);
|
||||||
|
Task SetChatParticipantMute(ChatParticipantMuteRequestDto request);
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user