mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
63 lines
3.3 KiB
C#
63 lines
3.3 KiB
C#
using Discord;
|
|
using NadekoBot.Core.Services.Database.Models;
|
|
using System;
|
|
using System.IO;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NadekoBot.Extensions
|
|
{
|
|
public static class IUserExtensions
|
|
{
|
|
public static async Task<IUserMessage> SendConfirmAsync(this IUser user, string text)
|
|
=> await (await user.GetOrCreateDMChannelAsync().ConfigureAwait(false)).SendMessageAsync("", embed: new EmbedBuilder().WithOkColor().WithDescription(text).Build()).ConfigureAwait(false);
|
|
|
|
public static async Task<IUserMessage> SendConfirmAsync(this IUser user, string title, string text, string url = null)
|
|
{
|
|
var eb = new EmbedBuilder().WithOkColor().WithDescription(text).WithTitle(title);
|
|
if (url != null && Uri.IsWellFormedUriString(url, UriKind.Absolute))
|
|
eb.WithUrl(url);
|
|
return await (await user.GetOrCreateDMChannelAsync().ConfigureAwait(false)).SendMessageAsync("", embed: eb.Build()).ConfigureAwait(false);
|
|
}
|
|
|
|
public static async Task<IUserMessage> SendErrorAsync(this IUser user, string title, string error, string url = null)
|
|
{
|
|
var eb = new EmbedBuilder().WithErrorColor().WithDescription(error).WithTitle(title);
|
|
if (url != null && Uri.IsWellFormedUriString(url, UriKind.Absolute))
|
|
eb.WithUrl(url);
|
|
|
|
return await (await user.GetOrCreateDMChannelAsync().ConfigureAwait(false)).SendMessageAsync("", embed: eb.Build()).ConfigureAwait(false);
|
|
}
|
|
|
|
public static async Task<IUserMessage> SendErrorAsync(this IUser user, string error)
|
|
=> await (await user.GetOrCreateDMChannelAsync().ConfigureAwait(false)).SendMessageAsync("", embed: new EmbedBuilder().WithErrorColor().WithDescription(error).Build()).ConfigureAwait(false);
|
|
|
|
public static async Task<IUserMessage> SendFileAsync(this IUser user, string filePath, string caption = null, string text = null, bool isTTS = false)
|
|
{
|
|
using (var file = File.Open(filePath, FileMode.Open))
|
|
{
|
|
return await (await user.GetOrCreateDMChannelAsync().ConfigureAwait(false)).SendFileAsync(file, caption ?? "x", text, isTTS).ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
public static async Task<IUserMessage> SendFileAsync(this IUser user, Stream fileStream, string fileName, string caption = null, bool isTTS = false) =>
|
|
await (await user.GetOrCreateDMChannelAsync().ConfigureAwait(false)).SendFileAsync(fileStream, fileName, caption, isTTS).ConfigureAwait(false);
|
|
|
|
// This method is used by everything that fetches the avatar from a user
|
|
public static Uri RealAvatarUrl(this IUser usr, ushort size = 128)
|
|
{
|
|
return usr.AvatarId == null
|
|
? new Uri(usr.GetDefaultAvatarUrl())
|
|
: new Uri(usr.GetAvatarUrl(ImageFormat.Auto, size));
|
|
}
|
|
|
|
// This method is only used for the xp card
|
|
public static Uri RealAvatarUrl(this DiscordUser usr)
|
|
{
|
|
return usr.AvatarId == null
|
|
? null
|
|
: new Uri(usr.AvatarId.StartsWith("a_", StringComparison.InvariantCulture)
|
|
? $"{DiscordConfig.CDNUrl}avatars/{usr.UserId}/{usr.AvatarId}.gif"
|
|
: $"{DiscordConfig.CDNUrl}avatars/{usr.UserId}/{usr.AvatarId}.png");
|
|
}
|
|
}
|
|
} |