feat: upgrade to .NET 6, refactor everything
This commit is contained in:
@@ -1,82 +1,81 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
using Myriad.Cache;
|
||||
using Myriad.Rest;
|
||||
using Myriad.Types;
|
||||
|
||||
namespace Myriad.Extensions
|
||||
namespace Myriad.Extensions;
|
||||
|
||||
public static class CacheExtensions
|
||||
{
|
||||
public static class CacheExtensions
|
||||
public static async Task<Guild> GetGuild(this IDiscordCache cache, ulong guildId)
|
||||
{
|
||||
public static async Task<Guild> GetGuild(this IDiscordCache cache, ulong guildId)
|
||||
{
|
||||
if (!(await cache.TryGetGuild(guildId) is Guild guild))
|
||||
throw new KeyNotFoundException($"Guild {guildId} not found in cache");
|
||||
return guild;
|
||||
}
|
||||
if (!(await cache.TryGetGuild(guildId) is Guild guild))
|
||||
throw new KeyNotFoundException($"Guild {guildId} not found in cache");
|
||||
return guild;
|
||||
}
|
||||
|
||||
public static async Task<Channel> GetChannel(this IDiscordCache cache, ulong channelId)
|
||||
{
|
||||
if (!(await cache.TryGetChannel(channelId) is Channel channel))
|
||||
throw new KeyNotFoundException($"Channel {channelId} not found in cache");
|
||||
return channel;
|
||||
}
|
||||
public static async Task<Channel> GetChannel(this IDiscordCache cache, ulong channelId)
|
||||
{
|
||||
if (!(await cache.TryGetChannel(channelId) is Channel channel))
|
||||
throw new KeyNotFoundException($"Channel {channelId} not found in cache");
|
||||
return channel;
|
||||
}
|
||||
|
||||
public static async Task<User> GetUser(this IDiscordCache cache, ulong userId)
|
||||
{
|
||||
if (!(await cache.TryGetUser(userId) is User user))
|
||||
throw new KeyNotFoundException($"User {userId} not found in cache");
|
||||
return user;
|
||||
}
|
||||
public static async Task<User> GetUser(this IDiscordCache cache, ulong userId)
|
||||
{
|
||||
if (!(await cache.TryGetUser(userId) is User user))
|
||||
throw new KeyNotFoundException($"User {userId} not found in cache");
|
||||
return user;
|
||||
}
|
||||
|
||||
public static async Task<Role> GetRole(this IDiscordCache cache, ulong roleId)
|
||||
{
|
||||
if (!(await cache.TryGetRole(roleId) is Role role))
|
||||
throw new KeyNotFoundException($"Role {roleId} not found in cache");
|
||||
return role;
|
||||
}
|
||||
public static async Task<Role> GetRole(this IDiscordCache cache, ulong roleId)
|
||||
{
|
||||
if (!(await cache.TryGetRole(roleId) is Role role))
|
||||
throw new KeyNotFoundException($"Role {roleId} not found in cache");
|
||||
return role;
|
||||
}
|
||||
|
||||
public static async ValueTask<User?> GetOrFetchUser(this IDiscordCache cache, DiscordApiClient rest, ulong userId)
|
||||
{
|
||||
if (await cache.TryGetUser(userId) is User cacheUser)
|
||||
return cacheUser;
|
||||
public static async ValueTask<User?> GetOrFetchUser(this IDiscordCache cache, DiscordApiClient rest,
|
||||
ulong userId)
|
||||
{
|
||||
if (await cache.TryGetUser(userId) is User cacheUser)
|
||||
return cacheUser;
|
||||
|
||||
var restUser = await rest.GetUser(userId);
|
||||
if (restUser != null)
|
||||
await cache.SaveUser(restUser);
|
||||
return restUser;
|
||||
}
|
||||
var restUser = await rest.GetUser(userId);
|
||||
if (restUser != null)
|
||||
await cache.SaveUser(restUser);
|
||||
return restUser;
|
||||
}
|
||||
|
||||
public static async ValueTask<Channel?> GetOrFetchChannel(this IDiscordCache cache, DiscordApiClient rest, ulong channelId)
|
||||
{
|
||||
if (await cache.TryGetChannel(channelId) is { } cacheChannel)
|
||||
return cacheChannel;
|
||||
public static async ValueTask<Channel?> GetOrFetchChannel(this IDiscordCache cache, DiscordApiClient rest,
|
||||
ulong channelId)
|
||||
{
|
||||
if (await cache.TryGetChannel(channelId) is { } cacheChannel)
|
||||
return cacheChannel;
|
||||
|
||||
var restChannel = await rest.GetChannel(channelId);
|
||||
if (restChannel != null)
|
||||
await cache.SaveChannel(restChannel);
|
||||
return restChannel;
|
||||
}
|
||||
|
||||
public static async Task<Channel> GetOrCreateDmChannel(this IDiscordCache cache, DiscordApiClient rest, ulong recipientId)
|
||||
{
|
||||
if (await cache.TryGetDmChannel(recipientId) is { } cacheChannel)
|
||||
return cacheChannel;
|
||||
|
||||
var restChannel = await rest.CreateDm(recipientId);
|
||||
var restChannel = await rest.GetChannel(channelId);
|
||||
if (restChannel != null)
|
||||
await cache.SaveChannel(restChannel);
|
||||
return restChannel;
|
||||
}
|
||||
return restChannel;
|
||||
}
|
||||
|
||||
public static async Task<Channel> GetRootChannel(this IDiscordCache cache, ulong channelOrThread)
|
||||
{
|
||||
var channel = await cache.GetChannel(channelOrThread);
|
||||
if (!channel.IsThread())
|
||||
return channel;
|
||||
public static async Task<Channel> GetOrCreateDmChannel(this IDiscordCache cache, DiscordApiClient rest,
|
||||
ulong recipientId)
|
||||
{
|
||||
if (await cache.TryGetDmChannel(recipientId) is { } cacheChannel)
|
||||
return cacheChannel;
|
||||
|
||||
var parent = await cache.GetChannel(channel.ParentId!.Value);
|
||||
return parent;
|
||||
}
|
||||
var restChannel = await rest.CreateDm(recipientId);
|
||||
await cache.SaveChannel(restChannel);
|
||||
return restChannel;
|
||||
}
|
||||
|
||||
public static async Task<Channel> GetRootChannel(this IDiscordCache cache, ulong channelOrThread)
|
||||
{
|
||||
var channel = await cache.GetChannel(channelOrThread);
|
||||
if (!channel.IsThread())
|
||||
return channel;
|
||||
|
||||
var parent = await cache.GetChannel(channel.ParentId!.Value);
|
||||
return parent;
|
||||
}
|
||||
}
|
@@ -1,16 +1,15 @@
|
||||
using Myriad.Types;
|
||||
|
||||
namespace Myriad.Extensions
|
||||
namespace Myriad.Extensions;
|
||||
|
||||
public static class ChannelExtensions
|
||||
{
|
||||
public static class ChannelExtensions
|
||||
{
|
||||
public static string Mention(this Channel channel) => $"<#{channel.Id}>";
|
||||
public static string Mention(this Channel channel) => $"<#{channel.Id}>";
|
||||
|
||||
public static bool IsThread(this Channel channel) => channel.Type.IsThread();
|
||||
public static bool IsThread(this Channel channel) => channel.Type.IsThread();
|
||||
|
||||
public static bool IsThread(this Channel.ChannelType type) =>
|
||||
type is Channel.ChannelType.GuildPublicThread
|
||||
or Channel.ChannelType.GuildPrivateThread
|
||||
or Channel.ChannelType.GuildNewsThread;
|
||||
}
|
||||
public static bool IsThread(this Channel.ChannelType type) =>
|
||||
type is Channel.ChannelType.GuildPublicThread
|
||||
or Channel.ChannelType.GuildPrivateThread
|
||||
or Channel.ChannelType.GuildNewsThread;
|
||||
}
|
@@ -1,22 +1,21 @@
|
||||
using Myriad.Types;
|
||||
|
||||
namespace Myriad.Extensions
|
||||
namespace Myriad.Extensions;
|
||||
|
||||
public static class GuildExtensions
|
||||
{
|
||||
public static class GuildExtensions
|
||||
public static int FileSizeLimit(this Guild guild)
|
||||
{
|
||||
public static int FileSizeLimit(this Guild guild)
|
||||
switch (guild.PremiumTier)
|
||||
{
|
||||
switch (guild.PremiumTier)
|
||||
{
|
||||
default:
|
||||
case PremiumTier.NONE:
|
||||
case PremiumTier.TIER_1:
|
||||
return 8;
|
||||
case PremiumTier.TIER_2:
|
||||
return 50;
|
||||
case PremiumTier.TIER_3:
|
||||
return 100;
|
||||
}
|
||||
default:
|
||||
case PremiumTier.NONE:
|
||||
case PremiumTier.TIER_1:
|
||||
return 8;
|
||||
case PremiumTier.TIER_2:
|
||||
return 50;
|
||||
case PremiumTier.TIER_3:
|
||||
return 100;
|
||||
}
|
||||
}
|
||||
}
|
@@ -1,14 +1,13 @@
|
||||
using Myriad.Gateway;
|
||||
using Myriad.Types;
|
||||
|
||||
namespace Myriad.Extensions
|
||||
{
|
||||
public static class MessageExtensions
|
||||
{
|
||||
public static string JumpLink(this Message msg) =>
|
||||
$"https://discord.com/channels/{msg.GuildId}/{msg.ChannelId}/{msg.Id}";
|
||||
namespace Myriad.Extensions;
|
||||
|
||||
public static string JumpLink(this MessageReactionAddEvent msg) =>
|
||||
$"https://discord.com/channels/{msg.GuildId}/{msg.ChannelId}/{msg.MessageId}";
|
||||
}
|
||||
public static class MessageExtensions
|
||||
{
|
||||
public static string JumpLink(this Message msg) =>
|
||||
$"https://discord.com/channels/{msg.GuildId}/{msg.ChannelId}/{msg.Id}";
|
||||
|
||||
public static string JumpLink(this MessageReactionAddEvent msg) =>
|
||||
$"https://discord.com/channels/{msg.GuildId}/{msg.ChannelId}/{msg.MessageId}";
|
||||
}
|
@@ -1,176 +1,167 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
using Myriad.Cache;
|
||||
using Myriad.Gateway;
|
||||
using Myriad.Types;
|
||||
|
||||
namespace Myriad.Extensions
|
||||
namespace Myriad.Extensions;
|
||||
|
||||
public static class PermissionExtensions
|
||||
{
|
||||
public static class PermissionExtensions
|
||||
private const PermissionSet NeedsViewChannel =
|
||||
PermissionSet.SendMessages |
|
||||
PermissionSet.SendTtsMessages |
|
||||
PermissionSet.ManageMessages |
|
||||
PermissionSet.EmbedLinks |
|
||||
PermissionSet.AttachFiles |
|
||||
PermissionSet.ReadMessageHistory |
|
||||
PermissionSet.MentionEveryone |
|
||||
PermissionSet.UseExternalEmojis |
|
||||
PermissionSet.AddReactions |
|
||||
PermissionSet.Connect |
|
||||
PermissionSet.Speak |
|
||||
PermissionSet.MuteMembers |
|
||||
PermissionSet.DeafenMembers |
|
||||
PermissionSet.MoveMembers |
|
||||
PermissionSet.UseVad |
|
||||
PermissionSet.Stream |
|
||||
PermissionSet.PrioritySpeaker;
|
||||
|
||||
private const PermissionSet NeedsSendMessages =
|
||||
PermissionSet.MentionEveryone |
|
||||
PermissionSet.SendTtsMessages |
|
||||
PermissionSet.AttachFiles |
|
||||
PermissionSet.EmbedLinks;
|
||||
|
||||
public static Task<PermissionSet> PermissionsFor(this IDiscordCache cache, MessageCreateEvent message) =>
|
||||
PermissionsFor(cache, message.ChannelId, message.Author.Id, message.Member, message.WebhookId != null);
|
||||
|
||||
public static Task<PermissionSet>
|
||||
PermissionsFor(this IDiscordCache cache, ulong channelId, GuildMember member) =>
|
||||
PermissionsFor(cache, channelId, member.User.Id, member);
|
||||
|
||||
public static async Task<PermissionSet> PermissionsFor(this IDiscordCache cache, ulong channelId, ulong userId,
|
||||
GuildMemberPartial? member, bool isWebhook = false)
|
||||
{
|
||||
public static Task<PermissionSet> PermissionsFor(this IDiscordCache cache, MessageCreateEvent message) =>
|
||||
PermissionsFor(cache, message.ChannelId, message.Author.Id, message.Member, isWebhook: message.WebhookId != null);
|
||||
if (!(await cache.TryGetChannel(channelId) is Channel channel))
|
||||
// todo: handle channel not found better
|
||||
return PermissionSet.Dm;
|
||||
|
||||
public static Task<PermissionSet> PermissionsFor(this IDiscordCache cache, ulong channelId, GuildMember member) =>
|
||||
PermissionsFor(cache, channelId, member.User.Id, member);
|
||||
if (channel.GuildId == null)
|
||||
return PermissionSet.Dm;
|
||||
|
||||
public static async Task<PermissionSet> PermissionsFor(this IDiscordCache cache, ulong channelId, ulong userId, GuildMemberPartial? member, bool isWebhook = false)
|
||||
{
|
||||
if (!(await cache.TryGetChannel(channelId) is Channel channel))
|
||||
// todo: handle channel not found better
|
||||
return PermissionSet.Dm;
|
||||
var rootChannel = await cache.GetRootChannel(channelId);
|
||||
|
||||
if (channel.GuildId == null)
|
||||
return PermissionSet.Dm;
|
||||
var guild = await cache.GetGuild(channel.GuildId.Value);
|
||||
|
||||
var rootChannel = await cache.GetRootChannel(channelId);
|
||||
if (isWebhook)
|
||||
return EveryonePermissions(guild);
|
||||
|
||||
var guild = await cache.GetGuild(channel.GuildId.Value);
|
||||
|
||||
if (isWebhook)
|
||||
return EveryonePermissions(guild);
|
||||
|
||||
return PermissionsFor(guild, rootChannel, userId, member);
|
||||
}
|
||||
|
||||
public static PermissionSet EveryonePermissions(this Guild guild) =>
|
||||
guild.Roles.FirstOrDefault(r => r.Id == guild.Id)?.Permissions ?? PermissionSet.Dm;
|
||||
|
||||
public static async Task<PermissionSet> EveryonePermissions(this IDiscordCache cache, Channel channel)
|
||||
{
|
||||
if (channel.Type == Channel.ChannelType.Dm)
|
||||
return PermissionSet.Dm;
|
||||
|
||||
var defaultPermissions = (await cache.GetGuild(channel.GuildId!.Value)).EveryonePermissions();
|
||||
var overwrite = channel.PermissionOverwrites?.FirstOrDefault(r => r.Id == channel.GuildId);
|
||||
if (overwrite == null)
|
||||
return defaultPermissions;
|
||||
|
||||
var perms = defaultPermissions;
|
||||
perms &= ~overwrite.Deny;
|
||||
perms |= overwrite.Allow;
|
||||
|
||||
return perms;
|
||||
}
|
||||
|
||||
public static PermissionSet PermissionsFor(Guild guild, Channel channel, MessageCreateEvent msg) =>
|
||||
PermissionsFor(guild, channel, msg.Author.Id, msg.Member);
|
||||
|
||||
public static PermissionSet PermissionsFor(Guild guild, Channel channel, ulong userId, GuildMemberPartial? member)
|
||||
{
|
||||
if (channel.Type == Channel.ChannelType.Dm)
|
||||
return PermissionSet.Dm;
|
||||
|
||||
if (member == null)
|
||||
// this happens with system (Discord platform-owned) users - they're not actually in the guild, so there is no member object.
|
||||
return EveryonePermissions(guild);
|
||||
|
||||
var perms = GuildPermissions(guild, userId, member.Roles);
|
||||
perms = ApplyChannelOverwrites(perms, channel, userId, member.Roles);
|
||||
|
||||
if ((perms & PermissionSet.Administrator) == PermissionSet.Administrator)
|
||||
return PermissionSet.All;
|
||||
|
||||
if ((perms & PermissionSet.ViewChannel) == 0)
|
||||
perms &= ~NeedsViewChannel;
|
||||
|
||||
if ((perms & PermissionSet.SendMessages) == 0)
|
||||
perms &= ~NeedsSendMessages;
|
||||
|
||||
return perms;
|
||||
}
|
||||
|
||||
public static PermissionSet GuildPermissions(this Guild guild, ulong userId, ICollection<ulong> roleIds)
|
||||
{
|
||||
if (guild.OwnerId == userId)
|
||||
return PermissionSet.All;
|
||||
|
||||
var perms = PermissionSet.None;
|
||||
foreach (var role in guild.Roles)
|
||||
{
|
||||
if (role.Id == guild.Id || roleIds.Contains(role.Id))
|
||||
perms |= role.Permissions;
|
||||
}
|
||||
|
||||
if (perms.HasFlag(PermissionSet.Administrator))
|
||||
return PermissionSet.All;
|
||||
|
||||
return perms;
|
||||
}
|
||||
|
||||
public static PermissionSet ApplyChannelOverwrites(PermissionSet perms, Channel channel, ulong userId,
|
||||
ICollection<ulong> roleIds)
|
||||
{
|
||||
if (channel.PermissionOverwrites == null)
|
||||
return perms;
|
||||
|
||||
var everyoneDeny = PermissionSet.None;
|
||||
var everyoneAllow = PermissionSet.None;
|
||||
var roleDeny = PermissionSet.None;
|
||||
var roleAllow = PermissionSet.None;
|
||||
var userDeny = PermissionSet.None;
|
||||
var userAllow = PermissionSet.None;
|
||||
|
||||
foreach (var overwrite in channel.PermissionOverwrites)
|
||||
{
|
||||
switch (overwrite.Type)
|
||||
{
|
||||
case Channel.OverwriteType.Role when overwrite.Id == channel.GuildId:
|
||||
everyoneDeny |= overwrite.Deny;
|
||||
everyoneAllow |= overwrite.Allow;
|
||||
break;
|
||||
case Channel.OverwriteType.Role when roleIds.Contains(overwrite.Id):
|
||||
roleDeny |= overwrite.Deny;
|
||||
roleAllow |= overwrite.Allow;
|
||||
break;
|
||||
case Channel.OverwriteType.Member when overwrite.Id == userId:
|
||||
userDeny |= overwrite.Deny;
|
||||
userAllow |= overwrite.Allow;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
perms &= ~everyoneDeny;
|
||||
perms |= everyoneAllow;
|
||||
perms &= ~roleDeny;
|
||||
perms |= roleAllow;
|
||||
perms &= ~userDeny;
|
||||
perms |= userAllow;
|
||||
return perms;
|
||||
}
|
||||
|
||||
private const PermissionSet NeedsViewChannel =
|
||||
PermissionSet.SendMessages |
|
||||
PermissionSet.SendTtsMessages |
|
||||
PermissionSet.ManageMessages |
|
||||
PermissionSet.EmbedLinks |
|
||||
PermissionSet.AttachFiles |
|
||||
PermissionSet.ReadMessageHistory |
|
||||
PermissionSet.MentionEveryone |
|
||||
PermissionSet.UseExternalEmojis |
|
||||
PermissionSet.AddReactions |
|
||||
PermissionSet.Connect |
|
||||
PermissionSet.Speak |
|
||||
PermissionSet.MuteMembers |
|
||||
PermissionSet.DeafenMembers |
|
||||
PermissionSet.MoveMembers |
|
||||
PermissionSet.UseVad |
|
||||
PermissionSet.Stream |
|
||||
PermissionSet.PrioritySpeaker;
|
||||
|
||||
private const PermissionSet NeedsSendMessages =
|
||||
PermissionSet.MentionEveryone |
|
||||
PermissionSet.SendTtsMessages |
|
||||
PermissionSet.AttachFiles |
|
||||
PermissionSet.EmbedLinks;
|
||||
|
||||
public static string ToPermissionString(this PermissionSet perms)
|
||||
{
|
||||
// TODO: clean string
|
||||
return perms.ToString();
|
||||
}
|
||||
return PermissionsFor(guild, rootChannel, userId, member);
|
||||
}
|
||||
|
||||
public static PermissionSet EveryonePermissions(this Guild guild) =>
|
||||
guild.Roles.FirstOrDefault(r => r.Id == guild.Id)?.Permissions ?? PermissionSet.Dm;
|
||||
|
||||
public static async Task<PermissionSet> EveryonePermissions(this IDiscordCache cache, Channel channel)
|
||||
{
|
||||
if (channel.Type == Channel.ChannelType.Dm)
|
||||
return PermissionSet.Dm;
|
||||
|
||||
var defaultPermissions = (await cache.GetGuild(channel.GuildId!.Value)).EveryonePermissions();
|
||||
var overwrite = channel.PermissionOverwrites?.FirstOrDefault(r => r.Id == channel.GuildId);
|
||||
if (overwrite == null)
|
||||
return defaultPermissions;
|
||||
|
||||
var perms = defaultPermissions;
|
||||
perms &= ~overwrite.Deny;
|
||||
perms |= overwrite.Allow;
|
||||
|
||||
return perms;
|
||||
}
|
||||
|
||||
public static PermissionSet PermissionsFor(Guild guild, Channel channel, MessageCreateEvent msg) =>
|
||||
PermissionsFor(guild, channel, msg.Author.Id, msg.Member);
|
||||
|
||||
public static PermissionSet PermissionsFor(Guild guild, Channel channel, ulong userId,
|
||||
GuildMemberPartial? member)
|
||||
{
|
||||
if (channel.Type == Channel.ChannelType.Dm)
|
||||
return PermissionSet.Dm;
|
||||
|
||||
if (member == null)
|
||||
// this happens with system (Discord platform-owned) users - they're not actually in the guild, so there is no member object.
|
||||
return EveryonePermissions(guild);
|
||||
|
||||
var perms = GuildPermissions(guild, userId, member.Roles);
|
||||
perms = ApplyChannelOverwrites(perms, channel, userId, member.Roles);
|
||||
|
||||
if ((perms & PermissionSet.Administrator) == PermissionSet.Administrator)
|
||||
return PermissionSet.All;
|
||||
|
||||
if ((perms & PermissionSet.ViewChannel) == 0)
|
||||
perms &= ~NeedsViewChannel;
|
||||
|
||||
if ((perms & PermissionSet.SendMessages) == 0)
|
||||
perms &= ~NeedsSendMessages;
|
||||
|
||||
return perms;
|
||||
}
|
||||
|
||||
public static PermissionSet GuildPermissions(this Guild guild, ulong userId, ICollection<ulong> roleIds)
|
||||
{
|
||||
if (guild.OwnerId == userId)
|
||||
return PermissionSet.All;
|
||||
|
||||
var perms = PermissionSet.None;
|
||||
foreach (var role in guild.Roles)
|
||||
if (role.Id == guild.Id || roleIds.Contains(role.Id))
|
||||
perms |= role.Permissions;
|
||||
|
||||
if (perms.HasFlag(PermissionSet.Administrator))
|
||||
return PermissionSet.All;
|
||||
|
||||
return perms;
|
||||
}
|
||||
|
||||
public static PermissionSet ApplyChannelOverwrites(PermissionSet perms, Channel channel, ulong userId,
|
||||
ICollection<ulong> roleIds)
|
||||
{
|
||||
if (channel.PermissionOverwrites == null)
|
||||
return perms;
|
||||
|
||||
var everyoneDeny = PermissionSet.None;
|
||||
var everyoneAllow = PermissionSet.None;
|
||||
var roleDeny = PermissionSet.None;
|
||||
var roleAllow = PermissionSet.None;
|
||||
var userDeny = PermissionSet.None;
|
||||
var userAllow = PermissionSet.None;
|
||||
|
||||
foreach (var overwrite in channel.PermissionOverwrites)
|
||||
switch (overwrite.Type)
|
||||
{
|
||||
case Channel.OverwriteType.Role when overwrite.Id == channel.GuildId:
|
||||
everyoneDeny |= overwrite.Deny;
|
||||
everyoneAllow |= overwrite.Allow;
|
||||
break;
|
||||
case Channel.OverwriteType.Role when roleIds.Contains(overwrite.Id):
|
||||
roleDeny |= overwrite.Deny;
|
||||
roleAllow |= overwrite.Allow;
|
||||
break;
|
||||
case Channel.OverwriteType.Member when overwrite.Id == userId:
|
||||
userDeny |= overwrite.Deny;
|
||||
userAllow |= overwrite.Allow;
|
||||
break;
|
||||
}
|
||||
|
||||
perms &= ~everyoneDeny;
|
||||
perms |= everyoneAllow;
|
||||
perms &= ~roleDeny;
|
||||
perms |= roleAllow;
|
||||
perms &= ~userDeny;
|
||||
perms |= userAllow;
|
||||
return perms;
|
||||
}
|
||||
|
||||
public static string ToPermissionString(this PermissionSet perms) =>
|
||||
// TODO: clean string
|
||||
perms.ToString();
|
||||
}
|
@@ -1,20 +1,17 @@
|
||||
using System;
|
||||
|
||||
using Myriad.Types;
|
||||
|
||||
namespace Myriad.Extensions
|
||||
namespace Myriad.Extensions;
|
||||
|
||||
public static class SnowflakeExtensions
|
||||
{
|
||||
public static class SnowflakeExtensions
|
||||
{
|
||||
public static readonly DateTimeOffset DiscordEpoch = new(2015, 1, 1, 0, 0, 0, TimeSpan.Zero);
|
||||
public static readonly DateTimeOffset DiscordEpoch = new(2015, 1, 1, 0, 0, 0, TimeSpan.Zero);
|
||||
|
||||
public static DateTimeOffset SnowflakeToTimestamp(ulong snowflake) =>
|
||||
DiscordEpoch + TimeSpan.FromMilliseconds(snowflake >> 22);
|
||||
public static DateTimeOffset SnowflakeToTimestamp(ulong snowflake) =>
|
||||
DiscordEpoch + TimeSpan.FromMilliseconds(snowflake >> 22);
|
||||
|
||||
public static DateTimeOffset Timestamp(this Message msg) => SnowflakeToTimestamp(msg.Id);
|
||||
public static DateTimeOffset Timestamp(this Channel channel) => SnowflakeToTimestamp(channel.Id);
|
||||
public static DateTimeOffset Timestamp(this Guild guild) => SnowflakeToTimestamp(guild.Id);
|
||||
public static DateTimeOffset Timestamp(this Webhook webhook) => SnowflakeToTimestamp(webhook.Id);
|
||||
public static DateTimeOffset Timestamp(this User user) => SnowflakeToTimestamp(user.Id);
|
||||
}
|
||||
public static DateTimeOffset Timestamp(this Message msg) => SnowflakeToTimestamp(msg.Id);
|
||||
public static DateTimeOffset Timestamp(this Channel channel) => SnowflakeToTimestamp(channel.Id);
|
||||
public static DateTimeOffset Timestamp(this Guild guild) => SnowflakeToTimestamp(guild.Id);
|
||||
public static DateTimeOffset Timestamp(this Webhook webhook) => SnowflakeToTimestamp(webhook.Id);
|
||||
public static DateTimeOffset Timestamp(this User user) => SnowflakeToTimestamp(user.Id);
|
||||
}
|
@@ -1,12 +1,11 @@
|
||||
using Myriad.Types;
|
||||
|
||||
namespace Myriad.Extensions
|
||||
{
|
||||
public static class UserExtensions
|
||||
{
|
||||
public static string Mention(this User user) => $"<@{user.Id}>";
|
||||
namespace Myriad.Extensions;
|
||||
|
||||
public static string AvatarUrl(this User user, string? format = "png", int? size = 128) =>
|
||||
$"https://cdn.discordapp.com/avatars/{user.Id}/{user.Avatar}.{format}?size={size}";
|
||||
}
|
||||
public static class UserExtensions
|
||||
{
|
||||
public static string Mention(this User user) => $"<@{user.Id}>";
|
||||
|
||||
public static string AvatarUrl(this User user, string? format = "png", int? size = 128) =>
|
||||
$"https://cdn.discordapp.com/avatars/{user.Id}/{user.Avatar}.{format}?size={size}";
|
||||
}
|
Reference in New Issue
Block a user