Cross server almost done, need owner-only permission check

This commit is contained in:
Kwoth 2016-08-31 07:49:32 +02:00
parent e847c02f41
commit caf8bcc761
2 changed files with 116 additions and 104 deletions

View File

@ -1,111 +1,103 @@
//using Discord; using Discord;
//using Discord.Commands; using Discord.Commands;
//using NadekoBot.Classes; using Discord.WebSocket;
//using NadekoBot.Modules.Permissions.Classes; using NadekoBot.Attributes;
//using System; using NadekoBot.Extensions;
//using System.Collections.Concurrent; using System;
//using System.Collections.Generic; using System.Collections.Concurrent;
//using System.Linq; using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
////todo DB namespace NadekoBot.Modules.Administration
//namespace NadekoBot.Modules.Administration {
//{ public partial class Administration
// class CrossServerTextChannel : DiscordCommand {
// { [Group]
// public CrossServerTextChannel(DiscordModule module) : base(module) public class CrossServerTextChannel
// { {
// NadekoBot.Client.MessageReceived += async (s, e) => public CrossServerTextChannel()
// { {
// try NadekoBot.Client.MessageReceived += (imsg) =>
// { {
// if (umsg.Author.Id == NadekoBot.Client.CurrentUser.Id) return; var msg = imsg as IUserMessage;
// foreach (var subscriber in Subscribers) if (msg == null)
// { return Task.CompletedTask;
// var set = subscriber.Value;
// if (!set.Contains(e.Channel))
// continue;
// foreach (var chan in set.Except(new[] { e.Channel }))
// {
// await chan.SendMessageAsync(GetText(e.Server, e.Channel, umsg.Author, e.Message)).ConfigureAwait(false);
// }
// }
// }
// catch { }
// };
// NadekoBot.Client.MessageUpdated += async (s, e) =>
// {
// try
// {
// if (e.After?.User?.Id == null || e.After.User.Id == NadekoBot.Client.CurrentUser.Id) return;
// foreach (var subscriber in Subscribers)
// {
// var set = subscriber.Value;
// if (!set.Contains(e.Channel))
// continue;
// foreach (var chan in set.Except(new[] { e.Channel }))
// {
// var msg = chan.Messages
// .FirstOrDefault(m =>
// m.RawText == GetText(e.Server, e.Channel, umsg.Author, e.Before));
// if (msg != default(Message))
// await msg.Edit(GetText(e.Server, e.Channel, umsg.Author, e.After)).ConfigureAwait(false);
// }
// }
// } var channel = imsg.Channel as ITextChannel;
// catch { } if (channel == null)
// }; return Task.CompletedTask;
// }
// private string GetText(Server server, Channel channel, User user, Message message) => Task.Run(async () =>
// $"**{server.Name} | {channel.Name}** `{user.Name}`: " + message.RawText; {
try
{
if (msg.Author.Id == NadekoBot.Client.GetCurrentUser().Id) return;
foreach (var subscriber in Subscribers)
{
var set = subscriber.Value;
if (!set.Contains(msg.Channel))
continue;
foreach (var chan in set.Except(new[] { channel }))
{
await chan.SendMessageAsync(GetText(channel.Guild, channel, (IGuildUser)msg.Author, msg)).ConfigureAwait(false);
}
}
}
catch { }
});
// public static readonly ConcurrentDictionary<int, HashSet<Channel>> Subscribers = new ConcurrentDictionary<int, HashSet<Channel>>(); return Task.CompletedTask;
};
}
// internal override void Init(CommandGroupBuilder cgb) private string GetText(IGuild server, ITextChannel channel, IGuildUser user, IUserMessage message) =>
// { $"**{server.Name} | {channel.Name}** `{user.Username}`: " + message.Content;
// cgb.CreateCommand(Module.Prefix + "scsc")
// .Description("Starts an instance of cross server channel. You will get a token as a DM " +
// $"that other people will use to tune in to the same instance. **Bot Owner Only.** | `{Prefix}scsc`")
// .AddCheck(SimpleCheckers.OwnerOnly())
// .Do(async e =>
// {
// var token = new Random().Next();
// var set = new HashSet<Channel>();
// if (Subscribers.TryAdd(token, set))
// {
// set.Add(e.Channel);
// await umsg.Author.SendMessageAsync("This is your CSC token:" + token.ToString()).ConfigureAwait(false);
// }
// });
// cgb.CreateCommand(Module.Prefix + "jcsc") public static readonly ConcurrentDictionary<int, HashSet<ITextChannel>> Subscribers = new ConcurrentDictionary<int, HashSet<ITextChannel>>();
// .Description($"Joins current channel to an instance of cross server channel using the token. **Needs Manage Server Permissions.**| `{Prefix}jcsc`")
// .Parameter("token")
// .AddCheck(SimpleCheckers.ManageServer())
// .Do(async e =>
// {
// int token;
// if (!int.TryParse(token, out token))
// return;
// HashSet<Channel> set;
// if (!Subscribers.TryGetValue(token, out set))
// return;
// set.Add(e.Channel);
// await channel.SendMessageAsync(":ok:").ConfigureAwait(false);
// });
// cgb.CreateCommand(Module.Prefix + "lcsc") //todo owner only
// .Description($"Leaves Cross server channel instance from this channel. **Needs Manage Server Permissions.**| `{Prefix}lcsc`") [LocalizedCommand, LocalizedDescription, LocalizedSummary]
// .AddCheck(SimpleCheckers.ManageServer()) [RequireContext(ContextType.Guild)]
// .Do(async e => public async Task Scsc(IUserMessage msg)
// { {
// foreach (var subscriber in Subscribers) var channel = (ITextChannel)msg.Channel;
// { var token = new Random().Next();
// subscriber.Value.Remove(e.Channel); var set = new HashSet<ITextChannel>();
// } if (Subscribers.TryAdd(token, set))
// await channel.SendMessageAsync(":ok:").ConfigureAwait(false); {
// }); set.Add(channel);
// } await ((IGuildUser)msg.Author).SendMessageAsync("This is your CSC token:" + token.ToString()).ConfigureAwait(false);
// } }
//} }
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
[RequireContext(ContextType.Guild)]
[RequirePermission(GuildPermission.ManageGuild)]
public async Task Jcsc(IUserMessage imsg, int token)
{
var channel = (ITextChannel)imsg.Channel;
HashSet<ITextChannel> set;
if (!Subscribers.TryGetValue(token, out set))
return;
set.Add(channel);
await channel.SendMessageAsync(":ok:").ConfigureAwait(false);
}
[LocalizedCommand, LocalizedDescription, LocalizedSummary]
[RequireContext(ContextType.Guild)]
[RequirePermission(GuildPermission.ManageGuild)]
public async Task cmd(IUserMessage imsg)
{
var channel = (ITextChannel)imsg.Channel;
foreach (var subscriber in Subscribers)
{
subscriber.Value.Remove(channel);
}
await channel.SendMessageAsync(":ok:").ConfigureAwait(false);
}
}
}
}

View File

@ -0,0 +1,20 @@
namespace NadekoBot.Classes.JSONModels
{
public class AnimeResult
{
public int id;
public string airing_status;
public string title_english;
public int total_episodes;
public string description;
public string image_url_lge;
public override string ToString() =>
"`Title:` **" + title_english +
"**\n`Status:` " + airing_status +
"\n`Episodes:` " + total_episodes +
"\n`Link:` http://anilist.co/anime/" + id +
"\n`Synopsis:` " + description.Substring(0, description.Length > 500 ? 500 : description.Length) + "..." +
"\n`img:` " + image_url_lge;
}
}