675 lines
28 KiB
C#
675 lines
28 KiB
C#
using Discord;
|
|
using Discord.Commands;
|
|
using NadekoBot.Extensions;
|
|
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using NadekoBot.Services;
|
|
using NadekoBot.Attributes;
|
|
using System.Text.RegularExpressions;
|
|
using Discord.WebSocket;
|
|
using NadekoBot.Services.Database;
|
|
using NadekoBot.Services.Database.Models;
|
|
|
|
//todo fix delmsgoncmd
|
|
namespace NadekoBot.Modules.Administration
|
|
{
|
|
[Module(".", AppendSpace = false)]
|
|
public partial class Administration : DiscordModule
|
|
{
|
|
public Administration(ILocalization loc, CommandService cmds, DiscordSocketClient client) : base(loc, cmds, client)
|
|
{
|
|
|
|
}
|
|
////todo owner only
|
|
//[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
//[RequireContext(ContextType.Guild)]
|
|
//public async Task Restart(IUserMessage umsg)
|
|
//{
|
|
// var channel = (ITextChannel)umsg.Channel;
|
|
|
|
// await channel.SendMessageAsync("`Restarting in 2 seconds...`");
|
|
// await Task.Delay(2000);
|
|
// System.Diagnostics.Process.Start(System.Reflection.Assembly.GetEntryAssembly().Location);
|
|
// Environment.Exit(0);
|
|
//}
|
|
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequirePermission(GuildPermission.Administrator)]
|
|
public async Task Delmsgoncmd(IUserMessage umsg)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
GuildConfig conf;
|
|
using (var uow = DbHandler.UnitOfWork())
|
|
{
|
|
conf = uow.GuildConfigs.For(channel.Guild.Id);
|
|
conf.DeleteMessageOnCommand = !conf.DeleteMessageOnCommand;
|
|
uow.GuildConfigs.Update(conf);
|
|
await uow.CompleteAsync();
|
|
}
|
|
if (conf.DeleteMessageOnCommand)
|
|
await channel.SendMessageAsync("❗`Now automatically deleting successfull command invokations.`");
|
|
else
|
|
await channel.SendMessageAsync("❗`Stopped automatic deletion of successfull command invokations.`");
|
|
}
|
|
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequirePermission(GuildPermission.ManageRoles)]
|
|
public async Task Setrole(IUserMessage umsg, IGuildUser usr, [Remainder] IRole role)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
try
|
|
{
|
|
await usr.AddRolesAsync(role).ConfigureAwait(false);
|
|
await channel.SendMessageAsync($"Successfully added role **{role.Name}** to user **{usr.Username}**").ConfigureAwait(false);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
await channel.SendMessageAsync("Failed to add roles. Bot has insufficient permissions.\n").ConfigureAwait(false);
|
|
Console.WriteLine(ex.ToString());
|
|
}
|
|
}
|
|
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequirePermission(GuildPermission.ManageRoles)]
|
|
public async Task Removerole(IUserMessage umsg, IGuildUser usr, [Remainder] IRole role)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
try
|
|
{
|
|
await usr.RemoveRolesAsync(role).ConfigureAwait(false);
|
|
await channel.SendMessageAsync($"Successfully removed role **{role.Name}** from user **{usr.Username}**").ConfigureAwait(false);
|
|
}
|
|
catch
|
|
{
|
|
await channel.SendMessageAsync("Failed to remove roles. Most likely reason: Insufficient permissions.").ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequirePermission(GuildPermission.ManageRoles)]
|
|
public async Task RenameRole(IUserMessage umsg, IRole roleToEdit, string newname)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
try
|
|
{
|
|
if (roleToEdit.Position > (await channel.Guild.GetCurrentUserAsync().ConfigureAwait(false)).Roles.Max(r => r.Position))
|
|
{
|
|
await channel.SendMessageAsync("You can't edit roles higher than your highest role.").ConfigureAwait(false);
|
|
return;
|
|
}
|
|
await roleToEdit.ModifyAsync(g => g.Name = newname).ConfigureAwait(false);
|
|
await channel.SendMessageAsync("Role renamed.").ConfigureAwait(false);
|
|
}
|
|
catch (Exception)
|
|
{
|
|
await channel.SendMessageAsync("Failed to rename role. Probably insufficient permissions.").ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequirePermission(GuildPermission.ManageRoles)]
|
|
public async Task RemoveAllRoles(IUserMessage umsg, [Remainder] IGuildUser user)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
|
|
try
|
|
{
|
|
await user.RemoveRolesAsync(user.Roles).ConfigureAwait(false);
|
|
await channel.SendMessageAsync($"Successfully removed **all** roles from user **{user.Username}**").ConfigureAwait(false);
|
|
}
|
|
catch
|
|
{
|
|
await channel.SendMessageAsync("Failed to remove roles. Most likely reason: Insufficient permissions.").ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequirePermission(GuildPermission.ManageRoles)]
|
|
public async Task CreateRole(IUserMessage umsg, [Remainder] string roleName = null)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(roleName))
|
|
return;
|
|
try
|
|
{
|
|
var r = await channel.Guild.CreateRoleAsync(roleName).ConfigureAwait(false);
|
|
await channel.SendMessageAsync($"Successfully created role **{r.Name}**.").ConfigureAwait(false);
|
|
}
|
|
catch (Exception)
|
|
{
|
|
await channel.SendMessageAsync(":warning: Unspecified error.").ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequirePermission(GuildPermission.ManageRoles)]
|
|
public async Task RoleColor(IUserMessage umsg, params string[] args)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
|
|
if (args.Count() != 2 && args.Count() != 4)
|
|
{
|
|
await channel.SendMessageAsync("The parameters are invalid.").ConfigureAwait(false);
|
|
return;
|
|
}
|
|
var roleName = args[0].ToUpperInvariant();
|
|
var role = channel.Guild.Roles.Where(r=>r.Name.ToUpperInvariant() == roleName).FirstOrDefault();
|
|
|
|
if (role == null)
|
|
{
|
|
await channel.SendMessageAsync("That role does not exist.").ConfigureAwait(false);
|
|
return;
|
|
}
|
|
try
|
|
{
|
|
var rgb = args.Count() == 4;
|
|
var arg1 = args[1].Replace("#", "");
|
|
|
|
var red = Convert.ToByte(rgb ? int.Parse(arg1) : Convert.ToInt32(arg1.Substring(0, 2), 16));
|
|
var green = Convert.ToByte(rgb ? int.Parse(args[2]) : Convert.ToInt32(arg1.Substring(2, 2), 16));
|
|
var blue = Convert.ToByte(rgb ? int.Parse(args[3]) : Convert.ToInt32(arg1.Substring(4, 2), 16));
|
|
|
|
await role.ModifyAsync(r => r.Color = new Color(red, green, blue).RawValue).ConfigureAwait(false);
|
|
await channel.SendMessageAsync($"Role {role.Name}'s color has been changed.").ConfigureAwait(false);
|
|
}
|
|
catch (Exception)
|
|
{
|
|
await channel.SendMessageAsync("Error occured, most likely invalid parameters or insufficient permissions.").ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequirePermission(GuildPermission.BanMembers)]
|
|
public async Task Ban(IUserMessage umsg, IGuildUser user)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
|
|
var msg = "";
|
|
|
|
if (!string.IsNullOrWhiteSpace(msg))
|
|
{
|
|
await (await user.CreateDMChannelAsync()).SendMessageAsync($"**You have been BANNED from `{channel.Guild.Name}` server.**\n" +
|
|
$"Reason: {msg}").ConfigureAwait(false);
|
|
await Task.Delay(2000).ConfigureAwait(false); // temp solution; give time for a message to be send, fu volt
|
|
}
|
|
try
|
|
{
|
|
await channel.Guild.AddBanAsync(user, 7).ConfigureAwait(false);
|
|
|
|
await channel.SendMessageAsync("Banned user " + user.Username + " Id: " + user.Id).ConfigureAwait(false);
|
|
}
|
|
catch
|
|
{
|
|
await channel.SendMessageAsync("Error. Most likely I don't have sufficient permissions.").ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequirePermission(GuildPermission.BanMembers)]
|
|
public async Task Softban(IUserMessage umsg, IGuildUser user, [Remainder] string msg = null)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
|
|
if (!string.IsNullOrWhiteSpace(msg))
|
|
{
|
|
await user.SendMessageAsync($"**You have been SOFT-BANNED from `{channel.Guild.Name}` server.**\n" +
|
|
$"Reason: {msg}").ConfigureAwait(false);
|
|
await Task.Delay(2000).ConfigureAwait(false); // temp solution; give time for a message to be send, fu volt
|
|
}
|
|
try
|
|
{
|
|
await channel.Guild.AddBanAsync(user, 7).ConfigureAwait(false);
|
|
await channel.Guild.RemoveBanAsync(user).ConfigureAwait(false);
|
|
|
|
await channel.SendMessageAsync("Soft-Banned user " + user.Username + " Id: " + user.Id).ConfigureAwait(false);
|
|
}
|
|
catch
|
|
{
|
|
await channel.SendMessageAsync("Error. Most likely I don't have sufficient permissions.").ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
public async Task Kick(IUserMessage umsg, IGuildUser user, [Remainder] string msg = null)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
|
|
if (user == null)
|
|
{
|
|
await channel.SendMessageAsync("User not found.").ConfigureAwait(false);
|
|
return;
|
|
}
|
|
if (!string.IsNullOrWhiteSpace(msg))
|
|
{
|
|
await user.SendMessageAsync($"**You have been KICKED from `{channel.Guild.Name}` server.**\n" +
|
|
$"Reason: {msg}").ConfigureAwait(false);
|
|
await Task.Delay(2000).ConfigureAwait(false); // temp solution; give time for a message to be send, fu volt
|
|
}
|
|
try
|
|
{
|
|
await user.KickAsync().ConfigureAwait(false);
|
|
await channel.SendMessageAsync("Kicked user " + user.Username + " Id: " + user.Id).ConfigureAwait(false);
|
|
}
|
|
catch
|
|
{
|
|
await channel.SendMessageAsync("Error. Most likely I don't have sufficient permissions.").ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequirePermission(GuildPermission.MuteMembers)]
|
|
public async Task Mute(IUserMessage umsg, params IGuildUser[] users)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
|
|
if (!users.Any())
|
|
return;
|
|
try
|
|
{
|
|
foreach (var u in users)
|
|
{
|
|
await u.ModifyAsync(usr => usr.Mute = true).ConfigureAwait(false);
|
|
}
|
|
await channel.SendMessageAsync("Mute successful").ConfigureAwait(false);
|
|
}
|
|
catch
|
|
{
|
|
await channel.SendMessageAsync("I most likely don't have the permission necessary for that.").ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequirePermission(GuildPermission.MuteMembers)]
|
|
public async Task Unmute(IUserMessage umsg, params IGuildUser[] users)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
|
|
if (!users.Any())
|
|
return;
|
|
try
|
|
{
|
|
foreach (var u in users)
|
|
{
|
|
await u.ModifyAsync(usr => usr.Mute = false).ConfigureAwait(false);
|
|
}
|
|
await channel.SendMessageAsync("Unmute successful").ConfigureAwait(false);
|
|
}
|
|
catch
|
|
{
|
|
await channel.SendMessageAsync("I most likely don't have the permission necessary for that.").ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequirePermission(GuildPermission.DeafenMembers)]
|
|
public async Task Deafen(IUserMessage umsg, params IGuildUser[] users)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
|
|
if (!users.Any())
|
|
return;
|
|
try
|
|
{
|
|
foreach (var u in users)
|
|
{
|
|
await u.ModifyAsync(usr=>usr.Deaf = true).ConfigureAwait(false);
|
|
}
|
|
await channel.SendMessageAsync("Deafen successful").ConfigureAwait(false);
|
|
}
|
|
catch
|
|
{
|
|
await channel.SendMessageAsync("I most likely don't have the permission necessary for that.").ConfigureAwait(false);
|
|
}
|
|
|
|
}
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequirePermission(GuildPermission.DeafenMembers)]
|
|
public async Task UnDeafen(IUserMessage umsg, params IGuildUser[] users)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
|
|
if (!users.Any())
|
|
return;
|
|
try
|
|
{
|
|
foreach (var u in users)
|
|
{
|
|
await u.ModifyAsync(usr=> usr.Deaf = false).ConfigureAwait(false);
|
|
}
|
|
await channel.SendMessageAsync("Undeafen successful").ConfigureAwait(false);
|
|
}
|
|
catch
|
|
{
|
|
await channel.SendMessageAsync("I most likely don't have the permission necessary for that.").ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequirePermission(GuildPermission.ManageChannels)]
|
|
public async Task DelVoiChanl(IUserMessage umsg, [Remainder] IVoiceChannel voiceChannel)
|
|
{
|
|
await voiceChannel.DeleteAsync().ConfigureAwait(false);
|
|
await umsg.Channel.SendMessageAsync($"Removed channel **{voiceChannel.Name}**.").ConfigureAwait(false);
|
|
}
|
|
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequirePermission(GuildPermission.ManageChannels)]
|
|
public async Task CreatVoiChanl(IUserMessage umsg, [Remainder] string channelName)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
//todo actually print info about created channel
|
|
var ch = await channel.Guild.CreateVoiceChannelAsync(channelName).ConfigureAwait(false);
|
|
await channel.SendMessageAsync($"Created voice channel **{ch.Name}**, id `{ch.Id}`.").ConfigureAwait(false);
|
|
}
|
|
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequirePermission(GuildPermission.ManageChannels)]
|
|
public async Task DelTxtChanl(IUserMessage umsg, [Remainder] ITextChannel channel)
|
|
{
|
|
await channel.DeleteAsync().ConfigureAwait(false);
|
|
await channel.SendMessageAsync($"Removed text channel **{channel.Name}**, id `{channel.Id}`.").ConfigureAwait(false);
|
|
}
|
|
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequirePermission(GuildPermission.ManageChannels)]
|
|
public async Task CreaTxtChanl(IUserMessage umsg, [Remainder] string channelName)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
//todo actually print info about created channel
|
|
var txtCh = await channel.Guild.CreateTextChannelAsync(channelName).ConfigureAwait(false);
|
|
await channel.SendMessageAsync($"Added text channel **{txtCh.Name}**, id `{txtCh.Id}`.").ConfigureAwait(false);
|
|
}
|
|
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequirePermission(GuildPermission.ManageChannels)]
|
|
public async Task SetTopic(IUserMessage umsg, [Remainder] string topic = null)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
topic = topic ?? "";
|
|
await (channel as ITextChannel).ModifyAsync(c => c.Topic = topic);
|
|
await channel.SendMessageAsync(":ok: **New channel topic set.**").ConfigureAwait(false);
|
|
|
|
}
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequirePermission(GuildPermission.ManageChannels)]
|
|
public async Task SetChanlName(IUserMessage umsg, [Remainder] string name)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
|
|
await channel.ModifyAsync(c => c.Name = name).ConfigureAwait(false);
|
|
await channel.SendMessageAsync(":ok: **New channel name set.**").ConfigureAwait(false);
|
|
}
|
|
|
|
|
|
//delets her own messages, no perm required
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
public async Task Prune(IUserMessage umsg)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
|
|
var user = await channel.Guild.GetCurrentUserAsync();
|
|
|
|
var enumerable = (await umsg.Channel.GetMessagesAsync()).Where(x => x.Author.Id == user.Id);
|
|
await umsg.Channel.DeleteMessagesAsync(enumerable);
|
|
}
|
|
|
|
// prune x
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequirePermission(ChannelPermission.ManageMessages)]
|
|
public async Task Prune(IUserMessage msg, int count)
|
|
{
|
|
var channel = msg.Channel as ITextChannel;
|
|
await (msg as IUserMessage).DeleteAsync();
|
|
while (count > 0)
|
|
{
|
|
int limit = (count < 100) ? count : 100;
|
|
var enumerable = (await msg.Channel.GetMessagesAsync(limit: limit));
|
|
await msg.Channel.DeleteMessagesAsync(enumerable);
|
|
await Task.Delay(1000); // there is a 1 per second per guild ratelimit for deletemessages
|
|
if (enumerable.Count < limit) break;
|
|
count -= limit;
|
|
}
|
|
}
|
|
|
|
//prune @user [x]
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
public async Task Prune(IUserMessage msg, IGuildUser user, int count = 100)
|
|
{
|
|
var channel = msg.Channel as ITextChannel;
|
|
int limit = (count < 100) ? count : 100;
|
|
var enumerable = (await msg.Channel.GetMessagesAsync(limit: limit)).Where(m => m.Author == user);
|
|
await msg.Channel.DeleteMessagesAsync(enumerable);
|
|
}
|
|
////todo owner only
|
|
//[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
//[RequireContext(ContextType.Guild)]
|
|
//public async Task Die(IUserMessage umsg)
|
|
//{
|
|
// var channel = (ITextChannel)umsg.Channel;
|
|
|
|
// await channel.SendMessageAsync("`Shutting down.`").ConfigureAwait(false);
|
|
// await Task.Delay(2000).ConfigureAwait(false);
|
|
// Environment.Exit(0);
|
|
//}
|
|
|
|
////todo owner only
|
|
//[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
//[RequireContext(ContextType.Guild)]
|
|
//public async Task Setname(IUserMessage umsg, [Remainder] string newName = null)
|
|
//{
|
|
// var channel = (ITextChannel)umsg.Channel;
|
|
|
|
//}
|
|
|
|
////todo owner only
|
|
//[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
//[RequireContext(ContextType.Guild)]
|
|
//public async Task NewAvatar(IUserMessage umsg, [Remainder] string img = null)
|
|
//{
|
|
// var channel = (ITextChannel)umsg.Channel;
|
|
|
|
// if (string.IsNullOrWhiteSpace(img))
|
|
// return;
|
|
// // Gather user provided URL.
|
|
// var avatarAddress = img;
|
|
// var imageStream = await SearchHelper.GetResponseStreamAsync(avatarAddress).ConfigureAwait(false);
|
|
// var image = System.Drawing.Image.FromStream(imageStream);
|
|
// await client.CurrentUser.Edit("", avatar: image.ToStream()).ConfigureAwait(false);
|
|
|
|
// // Send confirm.
|
|
// await channel.SendMessageAsync("New avatar set.").ConfigureAwait(false);
|
|
//}
|
|
|
|
////todo owner only
|
|
//[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
//[RequireContext(ContextType.Guild)]
|
|
//public async Task SetGame(IUserMessage umsg, [Remainder] string game = null)
|
|
//{
|
|
// var channel = (ITextChannel)umsg.Channel;
|
|
|
|
// game = game ?? "";
|
|
|
|
// client.SetGame(set_game);
|
|
//}
|
|
|
|
////todo owner only
|
|
//[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
//[RequireContext(ContextType.Guild)]
|
|
//public async Task Send(IUserMessage umsg, string where, [Remainder] string msg = null)
|
|
//{
|
|
// var channel = (ITextChannel)umsg.Channel;
|
|
|
|
// if (string.IsNullOrWhiteSpace(msg))
|
|
// return;
|
|
|
|
// var ids = where.Split('|');
|
|
// if (ids.Length != 2)
|
|
// return;
|
|
// var sid = ulong.Parse(ids[0]);
|
|
// var server = NadekoBot.Client.Servers.Where(s => s.Id == sid).FirstOrDefault();
|
|
|
|
// if (server == null)
|
|
// return;
|
|
|
|
// if (ids[1].ToUpperInvariant().StartsWith("C:"))
|
|
// {
|
|
// var cid = ulong.Parse(ids[1].Substring(2));
|
|
// var channel = server.TextChannels.Where(c => c.Id == cid).FirstOrDefault();
|
|
// if (channel == null)
|
|
// {
|
|
// return;
|
|
// }
|
|
// await channel.SendMessageAsync(msg);
|
|
// }
|
|
// else if (ids[1].ToUpperInvariant().StartsWith("U:"))
|
|
// {
|
|
// var uid = ulong.Parse(ids[1].Substring(2));
|
|
// var user = server.Users.Where(u => u.Id == uid).FirstOrDefault();
|
|
// if (user == null)
|
|
// {
|
|
// return;
|
|
// }
|
|
// await user.SendMessageAsync(msg);
|
|
// }
|
|
// else
|
|
// {
|
|
// await channel.SendMessageAsync("`Invalid format.`");
|
|
// }
|
|
//}
|
|
|
|
////todo owner only
|
|
//[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
//[RequireContext(ContextType.Guild)]
|
|
//public async Task Announce(IUserMessage umsg, [Remainder] string message)
|
|
//{
|
|
// var channel = (ITextChannel)umsg.Channel;
|
|
|
|
// foreach (var ch in (await _client.GetGuildsAsync().ConfigureAwait(false)).Select(async g => await g.GetDefaultChannelAsync().ConfigureAwait(false)))
|
|
// {
|
|
// await channel.SendMessageAsync(message).ConfigureAwait(false);
|
|
// }
|
|
|
|
// await channel.SendMessageAsync(":ok:").ConfigureAwait(false);
|
|
//}
|
|
|
|
////todo owner only
|
|
//[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
//[RequireContext(ContextType.Guild)]
|
|
//public async Task SaveChat(IUserMessage umsg, int cnt)
|
|
//{
|
|
// var channel = (ITextChannel)umsg.Channel;
|
|
|
|
// ulong? lastmsgId = null;
|
|
// var sb = new StringBuilder();
|
|
// var msgs = new List<IUserMessage>(cnt);
|
|
// while (cnt > 0)
|
|
// {
|
|
// var dlcnt = cnt < 100 ? cnt : 100;
|
|
// IReadOnlyCollection<IUserMessage> dledMsgs;
|
|
// if (lastmsgId == null)
|
|
// dledMsgs = await umsg.Channel.GetMessagesAsync(cnt).ConfigureAwait(false);
|
|
// else
|
|
// dledMsgs = await umsg.Channel.GetMessagesAsync(lastmsgId.Value, Direction.Before, dlcnt);
|
|
|
|
// if (!dledMsgs.Any())
|
|
// break;
|
|
|
|
// msgs.AddRange(dledMsgs);
|
|
// lastmsgId = msgs[msgs.Count - 1].Id;
|
|
// cnt -= 100;
|
|
// }
|
|
// var title = $"Chatlog-{channel.Guild.Name}/#{channel.Name}-{DateTime.Now}.txt";
|
|
// await (umsg.Author as IGuildUser).SendFileAsync(
|
|
// await JsonConvert.SerializeObject(new { Messages = msgs.Select(s => s.ToString()) }, Formatting.Indented).ToStream().ConfigureAwait(false),
|
|
// title, title).ConfigureAwait(false);
|
|
//}
|
|
|
|
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequirePermission(GuildPermission.MentionEveryone)]
|
|
public async Task MentionRole(IUserMessage umsg, params IRole[] roles)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
|
|
string send = $"--{umsg.Author.Mention} has invoked a mention on the following roles--";
|
|
foreach (var role in roles)
|
|
{
|
|
send += $"\n`{role.Name}`\n";
|
|
send += string.Join(", ", (await channel.Guild.GetUsersAsync()).Where(u => u.Roles.Contains(role)).Distinct().Select(u=>u.Mention));
|
|
}
|
|
|
|
while (send.Length > 2000)
|
|
{
|
|
var curstr = send.Substring(0, 2000);
|
|
await channel.SendMessageAsync(curstr.Substring(0,
|
|
curstr.LastIndexOf(", ", StringComparison.Ordinal) + 1)).ConfigureAwait(false);
|
|
send = curstr.Substring(curstr.LastIndexOf(", ", StringComparison.Ordinal) + 1) +
|
|
send.Substring(2000);
|
|
}
|
|
await channel.SendMessageAsync(send).ConfigureAwait(false);
|
|
}
|
|
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
public async Task Donators(IUserMessage umsg)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
IEnumerable<Donator> donatorsOrdered;
|
|
using (var uow = DbHandler.UnitOfWork())
|
|
{
|
|
donatorsOrdered = uow.Donators.GetDonatorsOrdered();
|
|
}
|
|
|
|
string str = $"**Thanks to the people listed below for making this project happen!**\n";
|
|
await channel.SendMessageAsync(str + string.Join("⭐", donatorsOrdered.Select(d => d.Name))).ConfigureAwait(false);
|
|
}
|
|
|
|
|
|
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
|
|
[RequireContext(ContextType.Guild)]
|
|
public async Task Donadd(IUserMessage umsg, IUser donator, int amount)
|
|
{
|
|
var channel = (ITextChannel)umsg.Channel;
|
|
|
|
Donator don;
|
|
using (var uow = DbHandler.UnitOfWork())
|
|
{
|
|
don = uow.Donators.AddOrUpdateDonator(donator.Id, donator.Username, amount);
|
|
await uow.CompleteAsync();
|
|
}
|
|
|
|
await channel.SendMessageAsync($"Successfuly added a new donator. Total donated amount from this user: {don.Amount} 👑").ConfigureAwait(false);
|
|
}
|
|
}
|
|
}
|