597 lines
26 KiB
C#
597 lines
26 KiB
C#
using Discord;
|
|
using Discord.Commands;
|
|
using Discord.Modules;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Timers;
|
|
using System.Threading.Tasks;
|
|
using System.Diagnostics;
|
|
using System.Drawing;
|
|
using Newtonsoft.Json.Linq;
|
|
using System.IO;
|
|
using System.Text;
|
|
using System.Drawing.Imaging;
|
|
|
|
namespace NadekoBot.Modules
|
|
{
|
|
class Conversations : DiscordModule
|
|
{
|
|
private string firestr = "🔥 ด้้้้้็็็็็้้้้้็็็็็้้้้้้้้็็็็็้้้้้็็ด้้้้้็็็็็้้้้้็็็็็้้้้้้้้็็็็็้้้้้็็็็็้้้้้้้้็็็ด้้้้้็็็็็้้้้้็็็็็้้้้้้้้็็็็็้้้้้็็็็็้้้้ 🔥";
|
|
public Conversations() : base()
|
|
{
|
|
commands.Add(new CopyCommand());
|
|
}
|
|
|
|
private CommandBuilder CreateCommand(CommandGroupBuilder cbg, string txt)
|
|
{
|
|
CommandBuilder cb = cbg.CreateCommand(txt);
|
|
return cb;
|
|
}
|
|
|
|
private CommandBuilder AliasCommand(CommandBuilder cb, string txt)
|
|
{
|
|
return cb.Alias(new string[] { "," + txt, "-" + txt });
|
|
}
|
|
|
|
public override void Install(ModuleManager manager)
|
|
{
|
|
Random rng = new Random();
|
|
|
|
manager.CreateCommands("", cgb =>
|
|
{
|
|
var client = manager.Client;
|
|
|
|
cgb.CreateCommand("\\o\\")
|
|
.Description("Nadeko replies with /o/")
|
|
.Do(async e =>
|
|
{
|
|
await e.Send( e.User.Mention + "/o/");
|
|
});
|
|
|
|
cgb.CreateCommand("/o/")
|
|
.Description("Nadeko replies with \\o\\")
|
|
.Do(async e =>
|
|
{
|
|
await e.Send( e.User.Mention + "\\o\\");
|
|
});
|
|
});
|
|
|
|
manager.CreateCommands(NadekoBot.botMention, cgb =>
|
|
{
|
|
var client = manager.Client;
|
|
|
|
commands.ForEach(cmd => cmd.Init(cgb));
|
|
|
|
CreateCommand(cgb, "do you love me")
|
|
.Description("Replies with positive answer only to the bot owner.")
|
|
.Do(async e =>
|
|
{
|
|
if (e.User.Id == NadekoBot.OwnerID)
|
|
await e.Send(e.User.Mention + ", Of course I do, my Master.");
|
|
else
|
|
await e.Send(e.User.Mention + ", Don't be silly.");
|
|
});
|
|
|
|
CreateCommand(cgb, "die")
|
|
.Description("Works only for the owner. Shuts the bot down.")
|
|
.Do(async e =>
|
|
{
|
|
if (e.User.Id == NadekoBot.OwnerID)
|
|
{
|
|
Timer t = new Timer();
|
|
t.Interval = 2000;
|
|
t.Elapsed += (s, ev) => { Environment.Exit(0); };
|
|
t.Start();
|
|
await e.Send(e.User.Mention + ", Yes, my love.");
|
|
}
|
|
else
|
|
await e.Send(e.User.Mention + ", No.");
|
|
});
|
|
|
|
CreateCommand(cgb, "how are you")
|
|
.Description("Replies positive only if bot owner is online.")
|
|
.Do(async e =>
|
|
{
|
|
if (e.User.Id == NadekoBot.OwnerID)
|
|
{
|
|
await e.Send(e.User.Mention + " I am great as long as you are here.");
|
|
}
|
|
else
|
|
{
|
|
var kw = client.GetUser(e.Server, NadekoBot.OwnerID);
|
|
if (kw != null && kw.Status == UserStatus.Online)
|
|
{
|
|
await e.Send(e.User.Mention + " I am great as long as " + kw.Mention + " is with me.");
|
|
}
|
|
else
|
|
{
|
|
await e.Send(e.User.Mention + " I am sad. My Master is not with me.");
|
|
}
|
|
}
|
|
});
|
|
|
|
CreateCommand(cgb, "insult")
|
|
.Parameter("mention", ParameterType.Required)
|
|
.Description("Only works for owner. Insults @X person.\n**Usage**: @NadekoBot insult @X.")
|
|
.Do(async e =>
|
|
{
|
|
List<string> insults = new List<string> { " you are a poop.", " you jerk.", " i will eat you when i get my powers back." };
|
|
Random r = new Random();
|
|
var u = client.FindUsers(e.Channel, e.GetArg("mention")).FirstOrDefault();
|
|
|
|
if (u == null) {
|
|
await e.Send("Invalid user specified.");
|
|
return;
|
|
}
|
|
|
|
if (u.Id == NadekoBot.OwnerID)
|
|
{
|
|
await e.Send("I would never insult my master <3");
|
|
}
|
|
else if (e.User.Id == NadekoBot.OwnerID)
|
|
{
|
|
await e.Send(u.Mention + insults[r.Next(0, insults.Count)]);
|
|
}
|
|
else
|
|
{
|
|
await e.Send(e.User.Mention + " Eww, why would i do that for you ?!");
|
|
}
|
|
});
|
|
|
|
CreateCommand(cgb, "praise")
|
|
.Description("Only works for owner. Praises @X person.\n**Usage**: @NadekoBot praise @X.")
|
|
.Parameter("mention", ParameterType.Required)
|
|
.Do(async e =>
|
|
{
|
|
List<string> praises = new List<string> { " You are cool.", " You are nice... But don't get any wrong ideas.", " You did a good job." };
|
|
Random r = new Random();
|
|
var u = client.FindUsers(e.Channel, e.GetArg("mention")).FirstOrDefault();
|
|
|
|
if (u == null)
|
|
{
|
|
await e.Send("Invalid user specified.");
|
|
return;
|
|
}
|
|
|
|
if (e.User.Id == NadekoBot.OwnerID)
|
|
{
|
|
if (u.Id != NadekoBot.OwnerID)
|
|
await e.Send(u.Mention + praises[r.Next(0, praises.Count)]);
|
|
else
|
|
{
|
|
await e.Send(u.Mention + " No need, you know I love you <3");
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (u.Id == NadekoBot.OwnerID)
|
|
{
|
|
await e.Send(e.User.Mention + " I don't need your permission to praise my beloved Master <3");
|
|
}
|
|
else
|
|
{
|
|
await e.Send(e.User.Mention + " Yeah... No.");
|
|
}
|
|
}
|
|
});
|
|
|
|
CreateCommand(cgb, "are you real")
|
|
.Description("Useless.")
|
|
.Do(async e =>
|
|
{
|
|
await e.Send(e.User.Mention + " I will be soon.");
|
|
});
|
|
|
|
cgb.CreateCommand("are you there")
|
|
.Description("Checks if nadeko is operational.")
|
|
.Alias(new string[] { "!", "?" })
|
|
.Do(SayYes());
|
|
|
|
CreateCommand(cgb, "draw")
|
|
.Description("Nadeko instructs you to type $draw. Gambling functions start with $")
|
|
.Do(async e =>
|
|
{
|
|
await e.Send("Sorry i don't gamble, type $draw for that function.");
|
|
});
|
|
|
|
CreateCommand(cgb, "uptime")
|
|
.Description("Shows how long is Nadeko running for.")
|
|
.Do(async e =>
|
|
{
|
|
var time = (DateTime.Now - Process.GetCurrentProcess().StartTime);
|
|
string str = "I am online for " + time.Days + " days, " + time.Hours + " hours, and " + time.Minutes + " minutes.";
|
|
await e.Send(str);
|
|
});
|
|
CreateCommand(cgb, "fire")
|
|
.Description("Shows a unicode fire message. Optional parameter [x] tells her how many times to repeat the fire.\n**Usage**: @NadekoBot fire [x]")
|
|
.Parameter("times", ParameterType.Optional)
|
|
.Do(async e =>
|
|
{
|
|
int count = 0;
|
|
if (e.Args?.Length > 0)
|
|
int.TryParse(e.Args[0], out count);
|
|
|
|
if (count < 1)
|
|
count = 1;
|
|
else if (count > 12)
|
|
count = 12;
|
|
string str = "";
|
|
for (int i = 0; i < count; i++)
|
|
{
|
|
str += firestr;
|
|
}
|
|
await e.Send(str);
|
|
});
|
|
|
|
CreateCommand(cgb, "rip")
|
|
.Description("Shows a grave image.Optional parameter [@X] instructs her to put X's name on the grave.\n**Usage**: @NadekoBot rip [@X]")
|
|
.Parameter("user", ParameterType.Unparsed)
|
|
.Do(async e =>
|
|
{
|
|
var usr = client.FindUsers(e.Channel, e.GetArg("user")).FirstOrDefault();
|
|
string text = "";
|
|
if (usr == null)
|
|
{
|
|
text = e.GetArg("user");
|
|
}
|
|
else {
|
|
text = usr.Name;
|
|
}
|
|
await client.SendFile(e.Channel, "ripzor_m8.png", RipName(text));
|
|
});
|
|
|
|
cgb.CreateCommand("j")
|
|
.Description("Joins a server using a code. Obsolete, since nadeko will autojoin any valid code in chat.")
|
|
.Parameter("id", ParameterType.Required)
|
|
.Do(async e =>
|
|
{
|
|
try
|
|
{
|
|
await client.AcceptInvite(client.GetInvite(e.Args[0]).Result);
|
|
await e.Send("I got in!");
|
|
}
|
|
catch (Exception)
|
|
{
|
|
await e.Send("Invalid code.");
|
|
}
|
|
});
|
|
|
|
cgb.CreateCommand("i")
|
|
.Description("Pulls a first image using a search parameter.\n**Usage**: @NadekoBot img Multiword_search_parameter")
|
|
.Alias("img")
|
|
.Parameter("all", ParameterType.Unparsed)
|
|
.Do(async e =>
|
|
{
|
|
var httpClient = new System.Net.Http.HttpClient();
|
|
string str = e.Args[0];
|
|
|
|
var r = httpClient.GetAsync("http://ajax.googleapis.com/ajax/services/search/images?v=1.0&q=" + Uri.EscapeDataString(str) + "&start=0").Result;
|
|
|
|
dynamic obj = JObject.Parse(r.Content.ReadAsStringAsync().Result);
|
|
if (obj.responseData.results.Count == 0)
|
|
{
|
|
await e.Send("No results found for that keyword :\\");
|
|
return;
|
|
}
|
|
string s = Searches.ShortenUrl(obj.responseData.results[0].url.ToString());
|
|
await e.Send(s);
|
|
});
|
|
|
|
cgb.CreateCommand("ir")
|
|
.Description("Pulls a random image using a search parameter.\n**Usage**: @NadekoBot img Multiword_search_parameter")
|
|
.Alias("imgrandom")
|
|
.Parameter("all", ParameterType.Unparsed)
|
|
.Do(async e =>
|
|
{
|
|
|
|
var httpClient = new System.Net.Http.HttpClient();
|
|
string str = e.Args[0];
|
|
var r = httpClient.GetAsync("http://ajax.googleapis.com/ajax/services/search/images?v=1.0&q=" + Uri.EscapeDataString(str) + "&start=" + rng.Next(0, 30)).Result;
|
|
dynamic obj = JObject.Parse(r.Content.ReadAsStringAsync().Result);
|
|
if (obj.responseData.results.Count == 0)
|
|
{
|
|
await e.Send("No results found for that keyword :\\");
|
|
return;
|
|
}
|
|
int rnd = rng.Next(0, obj.responseData.results.Count);
|
|
string s = Searches.ShortenUrl(obj.responseData.results[rnd].url.ToString());
|
|
await e.Send(s);
|
|
});
|
|
|
|
|
|
AliasCommand(CreateCommand(cgb, "save"), "s")
|
|
.Description("Saves something for the owner in a file.")
|
|
.Parameter("all", ParameterType.Unparsed)
|
|
.Do(async e =>
|
|
{
|
|
if (e.User.Id == NadekoBot.OwnerID)
|
|
{
|
|
string m = "";
|
|
try
|
|
{
|
|
FileStream f = File.OpenWrite("saves.txt");
|
|
m = e.Args[0];
|
|
byte[] b = Encoding.ASCII.GetBytes(m + "\n");
|
|
f.Seek(f.Length, SeekOrigin.Begin);
|
|
f.Write(b, 0, b.Length);
|
|
f.Close();
|
|
}
|
|
catch (Exception)
|
|
{
|
|
await e.Send("Error saving. Sorry :(");
|
|
}
|
|
if (m.Length > 0)
|
|
await e.Send("I saved this for you: " + Environment.NewLine + "```" + m + "```");
|
|
else
|
|
await e.Send("No point in saving empty message...");
|
|
}
|
|
else await e.Send("Not for you, only my Master <3");
|
|
});
|
|
|
|
CreateCommand(cgb, "ls")
|
|
.Description("Shows all saved items.")
|
|
.Do(async e =>
|
|
{
|
|
FileStream f = File.OpenRead("saves.txt");
|
|
if (f.Length == 0)
|
|
{
|
|
await e.Send("Saves are empty.");
|
|
return;
|
|
}
|
|
byte[] b = new byte[f.Length / sizeof(byte)];
|
|
f.Read(b, 0, b.Length);
|
|
f.Close();
|
|
string str = Encoding.ASCII.GetString(b);
|
|
await client.SendMessage(e.User, "```" + (str.Length < 1950 ? str : str.Substring(0, 1950)) + "```");
|
|
});
|
|
|
|
CreateCommand(cgb, "cs")
|
|
.Description("Deletes all saves")
|
|
.Do(async e =>
|
|
{
|
|
File.Delete("saves.txt");
|
|
await e.Send("Cleared all saves.");
|
|
});
|
|
|
|
CreateCommand(cgb, "bb")
|
|
.Description("Says bye to someone. **Usage**: @NadekoBot bb @X")
|
|
.Parameter("ppl", ParameterType.Unparsed)
|
|
.Do(async e =>
|
|
{
|
|
string str = "Bye";
|
|
foreach (var u in e.Message.MentionedUsers)
|
|
{
|
|
str += " " + Mention.User(u);
|
|
}
|
|
await e.Send(str);
|
|
});
|
|
|
|
AliasCommand(CreateCommand(cgb, "req"), "request")
|
|
.Description("Requests a feature for nadeko.\n**Usage**: @NadekoBot req new_feature")
|
|
.Parameter("all", ParameterType.Unparsed)
|
|
.Do(async e =>
|
|
{
|
|
string str = e.Args[0];
|
|
|
|
try
|
|
{
|
|
StatsCollector.SaveRequest(e, str);
|
|
}
|
|
catch (Exception)
|
|
{
|
|
await e.Send("Something went wrong.");
|
|
return;
|
|
}
|
|
await e.Send("Thank you for your request.");
|
|
});
|
|
|
|
CreateCommand(cgb, "lr")
|
|
.Description("PMs the user all current nadeko requests.")
|
|
.Do(async e =>
|
|
{
|
|
string str = StatsCollector.GetRequests();
|
|
if (str.Trim().Length > 110)
|
|
await client.SendMessage(e.User, str);
|
|
else
|
|
await client.SendMessage(e.User, "No requests atm.");
|
|
});
|
|
|
|
CreateCommand(cgb, "dr")
|
|
.Description("Deletes a request. Only owner is able to do this.")
|
|
.Parameter("reqNumber", ParameterType.Required)
|
|
.Do(async e =>
|
|
{
|
|
if (e.User.Id == NadekoBot.OwnerID)
|
|
{
|
|
try
|
|
{
|
|
if (StatsCollector.DeleteRequest(int.Parse(e.Args[0])))
|
|
{
|
|
await e.Send(e.User.Mention + " Request deleted.");
|
|
}
|
|
else
|
|
{
|
|
await e.Send("No request on that number.");
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
await e.Send("Error deleting request, probably NaN error.");
|
|
}
|
|
}
|
|
else await e.Send("You don't have permission to do that.");
|
|
});
|
|
|
|
CreateCommand(cgb, "rr")
|
|
.Description("Resolves a request. Only owner is able to do this.")
|
|
.Parameter("reqNumber", ParameterType.Required)
|
|
.Do(async e =>
|
|
{
|
|
if (e.User.Id == NadekoBot.OwnerID)
|
|
{
|
|
try
|
|
{
|
|
var sc = StatsCollector.ResolveRequest(int.Parse(e.Args[0]));
|
|
if (sc != null)
|
|
{
|
|
await e.Send(e.User.Mention + " Request resolved, notice sent.");
|
|
await client.SendMessage(client.GetUser(client.GetServer(sc.ServerId), sc.Id), "**This request of yours has been resolved:**\n" + sc.Text);
|
|
}
|
|
else
|
|
{
|
|
await e.Send("No request on that number.");
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
await e.Send("Error resolving request, probably NaN error.");
|
|
}
|
|
}
|
|
else await e.Send("You don't have permission to do that.");
|
|
});
|
|
|
|
CreateCommand(cgb, "clr")
|
|
.Description("Clears some of nadeko's messages from the current channel.")
|
|
.Do(async e =>
|
|
{
|
|
try
|
|
{
|
|
if (e.Channel.Messages.Count() < 50)
|
|
{
|
|
await client.DownloadMessages(e.Channel, 100);
|
|
}
|
|
|
|
await client.DeleteMessages(e.Channel.Messages.Where(msg => msg.User.Id == client.CurrentUser.Id));
|
|
|
|
}
|
|
catch (Exception)
|
|
{
|
|
await e.Send("I cant do it :(");
|
|
}
|
|
});
|
|
|
|
CreateCommand(cgb, "call")
|
|
.Description("Useless. Writes calling @X to chat.\n**Usage**: @NadekoBot call @X ")
|
|
.Parameter("who", ParameterType.Required)
|
|
.Do(async e =>
|
|
{
|
|
await e.Send("Calling " + e.Args[0] + "...");
|
|
});
|
|
CreateCommand(cgb, "hide")
|
|
.Description("Hides nadeko in plain sight!11!!")
|
|
.Do(async e =>
|
|
{
|
|
try
|
|
{
|
|
using (MemoryStream ms = new MemoryStream())
|
|
using (Image img = Image.FromFile("images/hidden.png"))
|
|
{
|
|
img.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
|
|
|
|
await client.EditProfile("", null, null, null, ms, ImageType.Png);
|
|
}
|
|
await e.Send("*hides*");
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
StatsCollector.DEBUG_LOG(ex.ToString());
|
|
}
|
|
});
|
|
|
|
CreateCommand(cgb, "unhide")
|
|
.Description("Unhides nadeko in plain sight!1!!1")
|
|
.Do(async e =>
|
|
{
|
|
try
|
|
{
|
|
using (MemoryStream ms = new MemoryStream())
|
|
using (Image img = Image.FromFile("images/nadeko.jpg"))
|
|
{
|
|
img.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
|
|
|
|
await client.EditProfile("", null, null, null, ms, ImageType.Jpeg);
|
|
}
|
|
await e.Send("*unhides*");
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
StatsCollector.DEBUG_LOG(ex.ToString());
|
|
}
|
|
});
|
|
|
|
cgb.CreateCommand("dump")
|
|
.Description("Dumps all of the invites it can to dump.txt")
|
|
.Do(async e =>
|
|
{
|
|
int i = 0;
|
|
int j = 0;
|
|
string invites = "";
|
|
foreach (var s in client.AllServers) {
|
|
try
|
|
{
|
|
var invite = await client.CreateInvite(s, 0, 0);
|
|
invites+=invite.Url+"\n";
|
|
i++;
|
|
}
|
|
catch (Exception ex) {
|
|
Console.WriteLine(ex.ToString());
|
|
j++;
|
|
continue;
|
|
}
|
|
}
|
|
File.WriteAllText("dump.txt", invites);
|
|
await e.Send($"Got invites for {i} servers and failed to get invites for {j} servers");
|
|
|
|
});
|
|
|
|
|
|
//TODO add eval
|
|
/*
|
|
cgb.CreateCommand(">")
|
|
.Parameter("code", ParameterType.Unparsed)
|
|
.Do(async e =>
|
|
{
|
|
if (e.Message.User.Id == NadekoBot.OwnerId)
|
|
{
|
|
var result = await CSharpScript.EvaluateAsync(e.Args[0]);
|
|
await e.Send( result?.ToString() ?? "null");
|
|
return;
|
|
}
|
|
});*/
|
|
});
|
|
}
|
|
|
|
public Stream RipName(string name)
|
|
{
|
|
Bitmap bm = new Bitmap(Image.FromFile(@"images\rip.png"));
|
|
|
|
int offset = name.Length * 5;
|
|
|
|
int fontSize = 20;
|
|
|
|
if (name.Length > 10)
|
|
{
|
|
fontSize -= (name.Length - 10) / 2;
|
|
}
|
|
|
|
//TODO use measure string
|
|
Graphics g = Graphics.FromImage(bm);
|
|
g.DrawString(name, new Font("Comic Sans MS", fontSize, FontStyle.Bold), Brushes.Black, 100 - offset, 200);
|
|
g.DrawString("? - " + DateTime.Now.Year, new Font("Consolas", 12, FontStyle.Bold), Brushes.Black, 80, 235);
|
|
g.Flush();
|
|
g.Dispose();
|
|
|
|
return ImageHandler.ImageToStream(bm,ImageFormat.Png);
|
|
}
|
|
|
|
private Func<CommandEventArgs, Task> SayYes()
|
|
{
|
|
return async e =>
|
|
{
|
|
await NadekoBot.client.SendMessage(e.Channel, "Yes. :)");
|
|
};
|
|
}
|
|
}
|
|
}
|