1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-01-31 09:09:00 +03:00
Octobot/Boyfriend/Utils.cs

78 lines
2.8 KiB
C#
Raw Normal View History

2021-12-10 14:25:29 +03:00
using System.Text.RegularExpressions;
using Discord;
using Discord.Net;
2021-12-07 21:27:27 +03:00
namespace Boyfriend;
2021-12-07 15:52:37 +03:00
public static class Utils {
public static string GetBeep() {
var letters = new[] { "а", "о", "и"};
2021-12-10 14:25:29 +03:00
return $"Б{letters[new Random().Next(3)]}п! ";
2021-12-07 15:52:37 +03:00
}
2021-12-07 21:27:27 +03:00
[Obsolete("Stop hard-coding things!")]
2021-12-10 14:25:29 +03:00
public static ITextChannel GetAdminLogChannel() {
if (Boyfriend.Client.GetChannel(870929165141032971) is not ITextChannel adminLogChannel)
2021-12-07 21:27:27 +03:00
throw new ArgumentException("Invalid admin log channel");
return adminLogChannel;
}
public static string Wrap(string original) {
2021-12-10 14:25:29 +03:00
var toReturn = original.Replace("```", "```");
return $"```{toReturn}{(toReturn.EndsWith("`") || toReturn.Trim().Equals("") ? " " : "")}```";
}
public static string WrapInline(string original) {
return $"`{original}`";
2021-12-07 21:27:27 +03:00
}
public static string MentionChannel(ulong id) {
2021-12-10 14:25:29 +03:00
return $"<#{id}>";
}
public static async Task StartDelayed(Task toRun, TimeSpan delay, Func<bool>? condition = null) {
switch (delay.TotalMilliseconds) {
case < -1:
throw new ArgumentOutOfRangeException(nameof(delay), "Указана отрицательная продолжительность!");
case > int.MaxValue:
throw new ArgumentOutOfRangeException(nameof(delay), "Указана слишком большая продолжительность!");
}
await Task.Delay(delay);
var conditionResult = condition?.Invoke() ?? true;
if (conditionResult)
toRun.Start();
}
private static ulong ParseMention(string mention) {
return Convert.ToUInt64(Regex.Replace(mention, "[^0-9]", ""));
}
public static async Task<IUser> ParseUser(string mention) {
var user = Boyfriend.Client.GetUserAsync(ParseMention(mention));
return await user;
}
public static async Task<IGuildUser> ParseMember(IGuild guild, string mention) {
return await guild.GetUserAsync(ParseMention(mention));
}
public static async Task SendDirectMessage(IUser user, string toSend) {
try {
await user.SendMessageAsync(toSend);
} catch (HttpException e) {
if (e.DiscordCode != DiscordErrorCode.CannotSendMessageToUser)
throw;
}
}
public static IRole GetMuteRole(IGuild guild) {
var role = guild.Roles.FirstOrDefault(x => x.Name.ToLower() is "заключённый" or "muted");
if (role == null) throw new Exception("Не удалось найти роль мута");
return role;
}
public static async Task SilentSendAsync(ITextChannel channel, string text) {
await channel.SendMessageAsync(text, false, null, null, AllowedMentions.None);
2021-12-07 21:27:27 +03:00
}
2021-12-07 15:52:37 +03:00
}