commit
cb36ed537f
78
NadekoBot/Classes/IMDB/ImdbMovie.cs
Normal file
78
NadekoBot/Classes/IMDB/ImdbMovie.cs
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
using System.Collections;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace NadekoBot.Classes.IMDB
|
||||||
|
{
|
||||||
|
public class ImdbMovie
|
||||||
|
{
|
||||||
|
public bool status { get; set; }
|
||||||
|
public string Id { get; set; }
|
||||||
|
public string Title { get; set; }
|
||||||
|
public string OriginalTitle { get; set; }
|
||||||
|
public string Year { get; set; }
|
||||||
|
public string Rating { get; set; }
|
||||||
|
public List<string> Genres { get; set; }
|
||||||
|
public ArrayList Directors { get; set; }
|
||||||
|
public ArrayList Writers { get; set; }
|
||||||
|
public ArrayList Cast { get; set; }
|
||||||
|
public ArrayList Producers { get; set; }
|
||||||
|
public ArrayList Musicians { get; set; }
|
||||||
|
public ArrayList Cinematographers { get; set; }
|
||||||
|
public ArrayList Editors { get; set; }
|
||||||
|
public string MpaaRating { get; set; }
|
||||||
|
public string ReleaseDate { get; set; }
|
||||||
|
public string Plot { get; set; }
|
||||||
|
public ArrayList PlotKeywords { get; set; }
|
||||||
|
public string Poster { get; set; }
|
||||||
|
public string PosterLarge { get; set; }
|
||||||
|
public string PosterFull { get; set; }
|
||||||
|
public string Runtime { get; set; }
|
||||||
|
public string Top250 { get; set; }
|
||||||
|
public string Oscars { get; set; }
|
||||||
|
public string Awards { get; set; }
|
||||||
|
public string Nominations { get; set; }
|
||||||
|
public string Storyline { get; set; }
|
||||||
|
public string Tagline { get; set; }
|
||||||
|
public string Votes { get; set; }
|
||||||
|
public ArrayList Languages { get; set; }
|
||||||
|
public ArrayList Countries { get; set; }
|
||||||
|
public Dictionary<string, string> ReleaseDates { get; set; }
|
||||||
|
public ArrayList MediaImages { get; set; }
|
||||||
|
public ArrayList RecommendedTitles { get; set; }
|
||||||
|
public string ImdbURL { get; set; }
|
||||||
|
|
||||||
|
public Dictionary<string, string> Aka { get; set; }
|
||||||
|
|
||||||
|
public override string ToString()
|
||||||
|
{
|
||||||
|
return "`Title:` **" + EnglishTitle + " (" + OriginalTitle + ")" +
|
||||||
|
"**\n`Year:` " + Year +
|
||||||
|
"**\n`Rating:` " + Rating +
|
||||||
|
"**\n`Genre:` " + GenresAsString +
|
||||||
|
"\n`Link:` " + ImdbURL +
|
||||||
|
"\n`Plot:` " + Plot.Substring(0, Plot.Length > 500 ? 500 : Plot.Length) + "..."
|
||||||
|
//"\n`img:` " + Poster //imdb url do it for us I think its a discord auto thing
|
||||||
|
;
|
||||||
|
}
|
||||||
|
|
||||||
|
public string EnglishTitle
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return Aka.ContainsKey("USA") ? Aka["USA"] :
|
||||||
|
(Aka.ContainsKey("UK") ? Aka["UK"] :
|
||||||
|
(Aka.ContainsKey("(original title)") ? Aka["(original title)"] :
|
||||||
|
(Aka.ContainsKey("(original)") ? Aka["(original)"] : OriginalTitle)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public string GenresAsString
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
string ret = "";
|
||||||
|
Genres.ForEach(g => ret = ret + " " + g);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
232
NadekoBot/Classes/IMDB/ImdbScraper.cs
Normal file
232
NadekoBot/Classes/IMDB/ImdbScraper.cs
Normal file
@ -0,0 +1,232 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Net;
|
||||||
|
using System.Text;
|
||||||
|
using System.Text.RegularExpressions;
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
* Free ASP.net IMDb Scraper API for the new IMDb Template.
|
||||||
|
* Author: Abhinay Rathore
|
||||||
|
* Website: http://www.AbhinayRathore.com
|
||||||
|
* Blog: http://web3o.blogspot.com
|
||||||
|
* More Info: http://web3o.blogspot.com/2010/11/aspnetc-imdb-scraping-api.html
|
||||||
|
|
||||||
|
* Updated By: Gergo Torcsvari
|
||||||
|
* Last Updated: Feb, 2016
|
||||||
|
*******************************************************************************/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
namespace NadekoBot.Classes.IMDB
|
||||||
|
{
|
||||||
|
public static class ImdbScraper
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//Search Engine URLs
|
||||||
|
private static string GoogleSearch = "https://www.google.com/search?q=imdb+";
|
||||||
|
private static string BingSearch = "http://www.bing.com/search?q=imdb+";
|
||||||
|
private static string AskSearch = "http://www.ask.com/web?q=imdb+";
|
||||||
|
//Constructor
|
||||||
|
public static ImdbMovie ImdbScrape(string MovieName, bool GetExtraInfo = true)
|
||||||
|
{
|
||||||
|
ImdbMovie mov = new ImdbMovie();
|
||||||
|
string imdbUrl = getIMDbUrl(System.Uri.EscapeUriString(MovieName));
|
||||||
|
mov.status = false;
|
||||||
|
if (!string.IsNullOrEmpty(imdbUrl))
|
||||||
|
{
|
||||||
|
parseIMDbPage(imdbUrl, GetExtraInfo, mov);
|
||||||
|
}
|
||||||
|
|
||||||
|
return mov;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static ImdbMovie ImdbScrapeFromId(string imdbId, bool GetExtraInfo = true)
|
||||||
|
{
|
||||||
|
ImdbMovie mov = new ImdbMovie();
|
||||||
|
string imdbUrl = "http://www.imdb.com/title/" + imdbId + "/";
|
||||||
|
mov.status = false;
|
||||||
|
if (!string.IsNullOrEmpty(imdbUrl))
|
||||||
|
{
|
||||||
|
parseIMDbPage(imdbUrl, GetExtraInfo, mov);
|
||||||
|
}
|
||||||
|
|
||||||
|
return mov;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static string GetIMDBId(string MovieName)
|
||||||
|
{
|
||||||
|
string imdbUrl = getIMDbUrl(System.Uri.EscapeUriString(MovieName));
|
||||||
|
return match(@"http://www.imdb.com/title/(tt\d{7})", imdbUrl);
|
||||||
|
}
|
||||||
|
//Get IMDb URL from search results
|
||||||
|
private static string getIMDbUrl(string MovieName, string searchEngine = "google")
|
||||||
|
{
|
||||||
|
string url = GoogleSearch + MovieName; //default to Google search
|
||||||
|
if (searchEngine.ToLower().Equals("bing")) url = BingSearch + MovieName;
|
||||||
|
if (searchEngine.ToLower().Equals("ask")) url = AskSearch + MovieName;
|
||||||
|
string html = getUrlData(url);
|
||||||
|
ArrayList imdbUrls = matchAll(@"<a href=""(http://www.imdb.com/title/tt\d{7}/)"".*?>.*?</a>", html);
|
||||||
|
if (imdbUrls.Count > 0)
|
||||||
|
return (string)imdbUrls[0]; //return first IMDb result
|
||||||
|
else if (searchEngine.ToLower().Equals("google")) //if Google search fails
|
||||||
|
return getIMDbUrl(MovieName, "bing"); //search using Bing
|
||||||
|
else if (searchEngine.ToLower().Equals("bing")) //if Bing search fails
|
||||||
|
return getIMDbUrl(MovieName, "ask"); //search using Ask
|
||||||
|
else //search fails
|
||||||
|
return string.Empty;
|
||||||
|
}
|
||||||
|
//Parse IMDb page data
|
||||||
|
private static void parseIMDbPage(string imdbUrl, bool GetExtraInfo, ImdbMovie mov)
|
||||||
|
{
|
||||||
|
string html = getUrlData(imdbUrl + "combined");
|
||||||
|
mov.Id = match(@"<link rel=""canonical"" href=""http://www.imdb.com/title/(tt\d{7})/combined"" />", html);
|
||||||
|
if (!string.IsNullOrEmpty(mov.Id))
|
||||||
|
{
|
||||||
|
mov.status = true;
|
||||||
|
mov.Title = match(@"<title>(IMDb \- )*(.*?) \(.*?</title>", html, 2);
|
||||||
|
mov.OriginalTitle = match(@"title-extra"">(.*?)<", html);
|
||||||
|
mov.Year = match(@"<title>.*?\(.*?(\d{4}).*?\).*?</title>", match(@"(<title>.*?</title>)", html));
|
||||||
|
mov.Rating = match(@"<b>(\d.\d)/10</b>", html);
|
||||||
|
mov.Genres = matchAll(@"<a.*?>(.*?)</a>", match(@"Genre.?:(.*?)(</div>|See more)", html)).Cast<string>().ToList(); ;
|
||||||
|
mov.Directors = matchAll(@"<td valign=""top""><a.*?href=""/name/.*?/"">(.*?)</a>", match(@"Directed by</a></h5>(.*?)</table>", html));
|
||||||
|
mov.Writers = matchAll(@"<td valign=""top""><a.*?href=""/name/.*?/"">(.*?)</a>", match(@"Writing credits</a></h5>(.*?)</table>", html));
|
||||||
|
mov.Producers = matchAll(@"<td valign=""top""><a.*?href=""/name/.*?/"">(.*?)</a>", match(@"Produced by</a></h5>(.*?)</table>", html));
|
||||||
|
mov.Musicians = matchAll(@"<td valign=""top""><a.*?href=""/name/.*?/"">(.*?)</a>", match(@"Original Music by</a></h5>(.*?)</table>", html));
|
||||||
|
mov.Cinematographers = matchAll(@"<td valign=""top""><a.*?href=""/name/.*?/"">(.*?)</a>", match(@"Cinematography by</a></h5>(.*?)</table>", html));
|
||||||
|
mov.Editors = matchAll(@"<td valign=""top""><a.*?href=""/name/.*?/"">(.*?)</a>", match(@"Film Editing by</a></h5>(.*?)</table>", html));
|
||||||
|
mov.Cast = matchAll(@"<td class=""nm""><a.*?href=""/name/.*?/"".*?>(.*?)</a>", match(@"<h3>Cast</h3>(.*?)</table>", html));
|
||||||
|
mov.Plot = match(@"Plot:</h5>.*?<div class=""info-content"">(.*?)(<a|</div)", html);
|
||||||
|
mov.PlotKeywords = matchAll(@"<a.*?>(.*?)</a>", match(@"Plot Keywords:</h5>.*?<div class=""info-content"">(.*?)</div", html));
|
||||||
|
mov.ReleaseDate = match(@"Release Date:</h5>.*?<div class=""info-content"">.*?(\d{1,2} (January|February|March|April|May|June|July|August|September|October|November|December) (19|20)\d{2})", html);
|
||||||
|
mov.Runtime = match(@"Runtime:</h5><div class=""info-content"">(\d{1,4}) min[\s]*.*?</div>", html);
|
||||||
|
mov.Top250 = match(@"Top 250: #(\d{1,3})<", html);
|
||||||
|
mov.Oscars = match(@"Won (\d+) Oscars?\.", html);
|
||||||
|
if (string.IsNullOrEmpty(mov.Oscars) && "Won Oscar.".Equals(match(@"(Won Oscar\.)", html))) mov.Oscars = "1";
|
||||||
|
mov.Awards = match(@"(\d{1,4}) wins", html);
|
||||||
|
mov.Nominations = match(@"(\d{1,4}) nominations", html);
|
||||||
|
mov.Tagline = match(@"Tagline:</h5>.*?<div class=""info-content"">(.*?)(<a|</div)", html);
|
||||||
|
mov.MpaaRating = match(@"MPAA</a>:</h5><div class=""info-content"">Rated (G|PG|PG-13|PG-14|R|NC-17|X) ", html);
|
||||||
|
mov.Votes = match(@">(\d+,?\d*) votes<", html);
|
||||||
|
mov.Languages = matchAll(@"<a.*?>(.*?)</a>", match(@"Language.?:(.*?)(</div>|>.?and )", html));
|
||||||
|
mov.Countries = matchAll(@"<a.*?>(.*?)</a>", match(@"Country:(.*?)(</div>|>.?and )", html));
|
||||||
|
mov.Poster = match(@"<div class=""photo"">.*?<a name=""poster"".*?><img.*?src=""(.*?)"".*?</div>", html);
|
||||||
|
if (!string.IsNullOrEmpty(mov.Poster) && mov.Poster.IndexOf("media-imdb.com") > 0)
|
||||||
|
{
|
||||||
|
mov.Poster = Regex.Replace(mov.Poster, @"_V1.*?.jpg", "_V1._SY200.jpg");
|
||||||
|
mov.PosterLarge = Regex.Replace(mov.Poster, @"_V1.*?.jpg", "_V1._SY500.jpg");
|
||||||
|
mov.PosterFull = Regex.Replace(mov.Poster, @"_V1.*?.jpg", "_V1._SY0.jpg");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
mov.Poster = string.Empty;
|
||||||
|
mov.PosterLarge = string.Empty;
|
||||||
|
mov.PosterFull = string.Empty;
|
||||||
|
}
|
||||||
|
mov.ImdbURL = "http://www.imdb.com/title/" + mov.Id + "/";
|
||||||
|
if (GetExtraInfo)
|
||||||
|
{
|
||||||
|
string plotHtml = getUrlData(imdbUrl + "plotsummary");
|
||||||
|
mov.Storyline = match(@"<p class=""plotpar"">(.*?)(<i>|</p>)", plotHtml);
|
||||||
|
getReleaseDatesAndAka(mov);
|
||||||
|
mov.MediaImages = getMediaImages(mov);
|
||||||
|
//mov.RecommendedTitles = getRecommendedTitles(mov);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//Get all release dates and aka-s
|
||||||
|
private static void getReleaseDatesAndAka(ImdbMovie mov)
|
||||||
|
{
|
||||||
|
Dictionary<string, string> release = new Dictionary<string, string>();
|
||||||
|
string releasehtml = getUrlData("http://www.imdb.com/title/" + mov.Id + "/releaseinfo");
|
||||||
|
foreach (string r in matchAll(@"<tr class="".*?"">(.*?)</tr>", match(@"<table id=""release_dates"" class=""subpage_data spFirst"">\n*?(.*?)</table>", releasehtml)))
|
||||||
|
{
|
||||||
|
Match rd = new Regex(@"<td>(.*?)</td>\n*?.*?<td class=.*?>(.*?)</td>", RegexOptions.Multiline).Match(r);
|
||||||
|
release[StripHTML(rd.Groups[1].Value.Trim())] = StripHTML(rd.Groups[2].Value.Trim());
|
||||||
|
}
|
||||||
|
mov.ReleaseDates = release;
|
||||||
|
|
||||||
|
Dictionary<string, string> aka = new Dictionary<string, string>();
|
||||||
|
ArrayList list = matchAll(@".*?<tr class="".*?"">(.*?)</tr>", match(@"<table id=""akas"" class=.*?>\n*?(.*?)</table>", releasehtml));
|
||||||
|
foreach (string r in list)
|
||||||
|
{
|
||||||
|
Match rd = new Regex(@"\n*?.*?<td>(.*?)</td>\n*?.*?<td>(.*?)</td>", RegexOptions.Multiline).Match(r);
|
||||||
|
aka[StripHTML(rd.Groups[1].Value.Trim())] = StripHTML(rd.Groups[2].Value.Trim());
|
||||||
|
}
|
||||||
|
mov.Aka = aka;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
//Get all media images
|
||||||
|
private static ArrayList getMediaImages(ImdbMovie mov)
|
||||||
|
{
|
||||||
|
ArrayList list = new ArrayList();
|
||||||
|
string mediaurl = "http://www.imdb.com/title/" + mov.Id + "/mediaindex";
|
||||||
|
string mediahtml = getUrlData(mediaurl);
|
||||||
|
int pagecount = matchAll(@"<a href=""\?page=(.*?)"">", match(@"<span style=""padding: 0 1em;"">(.*?)</span>", mediahtml)).Count;
|
||||||
|
for (int p = 1; p <= pagecount + 1; p++)
|
||||||
|
{
|
||||||
|
mediahtml = getUrlData(mediaurl + "?page=" + p);
|
||||||
|
foreach (Match m in new Regex(@"src=""(.*?)""", RegexOptions.Multiline).Matches(match(@"<div class=""thumb_list"" style=""font-size: 0px;"">(.*?)</div>", mediahtml)))
|
||||||
|
{
|
||||||
|
String image = m.Groups[1].Value;
|
||||||
|
list.Add(Regex.Replace(image, @"_V1\..*?.jpg", "_V1._SY0.jpg"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return list;
|
||||||
|
}
|
||||||
|
//Get Recommended Titles
|
||||||
|
private static ArrayList getRecommendedTitles(ImdbMovie mov)
|
||||||
|
{
|
||||||
|
ArrayList list = new ArrayList();
|
||||||
|
string recUrl = "http://www.imdb.com/widget/recommendations/_ajax/get_more_recs?specs=p13nsims%3A" + mov.Id;
|
||||||
|
string json = getUrlData(recUrl);
|
||||||
|
list = matchAll(@"title=\\""(.*?)\\""", json);
|
||||||
|
HashSet<String> set = new HashSet<string>();
|
||||||
|
foreach (String rec in list) set.Add(rec);
|
||||||
|
return new ArrayList(set.ToList());
|
||||||
|
}
|
||||||
|
/*******************************[ Helper Methods ]********************************/
|
||||||
|
//Match single instance
|
||||||
|
private static string match(string regex, string html, int i = 1)
|
||||||
|
{
|
||||||
|
return new Regex(regex, RegexOptions.Multiline).Match(html).Groups[i].Value.Trim();
|
||||||
|
}
|
||||||
|
//Match all instances and return as ArrayList
|
||||||
|
private static ArrayList matchAll(string regex, string html, int i = 1)
|
||||||
|
{
|
||||||
|
ArrayList list = new ArrayList();
|
||||||
|
foreach (Match m in new Regex(regex, RegexOptions.Multiline).Matches(html))
|
||||||
|
list.Add(m.Groups[i].Value.Trim());
|
||||||
|
return list;
|
||||||
|
}
|
||||||
|
//Strip HTML Tags
|
||||||
|
private static string StripHTML(string inputString)
|
||||||
|
{
|
||||||
|
return Regex.Replace(inputString, @"<.*?>", string.Empty);
|
||||||
|
}
|
||||||
|
//Get URL Data
|
||||||
|
private static string getUrlData(string url)
|
||||||
|
{
|
||||||
|
WebClient client = new WebClient();
|
||||||
|
Random r = new Random();
|
||||||
|
//Random IP Address
|
||||||
|
//client.Headers["X-Forwarded-For"] = r.Next(0, 255) + "." + r.Next(0, 255) + "." + r.Next(0, 255) + "." + r.Next(0, 255);
|
||||||
|
//Random User-Agent
|
||||||
|
client.Headers["User-Agent"] = "Mozilla/" + r.Next(3, 5) + ".0 (Windows NT " + r.Next(3, 5) + "." + r.Next(0, 2) + "; rv:37.0) Gecko/20100101 Firefox/" + r.Next(30, 37) + "." + r.Next(0, 5);
|
||||||
|
Stream datastream = client.OpenRead(url);
|
||||||
|
StreamReader reader = new StreamReader(datastream);
|
||||||
|
StringBuilder sb = new StringBuilder();
|
||||||
|
|
||||||
|
//TODO: Coud be reader error must catch and drop!!!
|
||||||
|
while (!reader.EndOfStream)
|
||||||
|
sb.Append(reader.ReadLine());
|
||||||
|
return sb.ToString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,20 +1,24 @@
|
|||||||
using System;
|
using Discord.Commands;
|
||||||
using Discord.Modules;
|
using Discord.Modules;
|
||||||
using System.Net;
|
using NadekoBot.Classes;
|
||||||
using System.IO;
|
using NadekoBot.Classes.IMDB;
|
||||||
using Newtonsoft.Json.Linq;
|
using NadekoBot.Commands;
|
||||||
using Discord.Commands;
|
|
||||||
using NadekoBot.Extensions;
|
using NadekoBot.Extensions;
|
||||||
|
using Newtonsoft.Json.Linq;
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Drawing;
|
using System.Drawing;
|
||||||
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using NadekoBot.Classes;
|
using System.Net;
|
||||||
using NadekoBot.Commands;
|
|
||||||
|
|
||||||
namespace NadekoBot.Modules {
|
namespace NadekoBot.Modules
|
||||||
internal class Searches : DiscordModule {
|
{
|
||||||
|
internal class Searches : DiscordModule
|
||||||
|
{
|
||||||
private readonly Random rng;
|
private readonly Random rng;
|
||||||
public Searches() {
|
public Searches()
|
||||||
|
{
|
||||||
commands.Add(new LoLCommands(this));
|
commands.Add(new LoLCommands(this));
|
||||||
commands.Add(new StreamNotifications(this));
|
commands.Add(new StreamNotifications(this));
|
||||||
rng = new Random();
|
rng = new Random();
|
||||||
@ -22,8 +26,10 @@ namespace NadekoBot.Modules {
|
|||||||
|
|
||||||
public override string Prefix { get; } = NadekoBot.Config.CommandPrefixes.Searches;
|
public override string Prefix { get; } = NadekoBot.Config.CommandPrefixes.Searches;
|
||||||
|
|
||||||
public override void Install(ModuleManager manager) {
|
public override void Install(ModuleManager manager)
|
||||||
manager.CreateCommands("", cgb => {
|
{
|
||||||
|
manager.CreateCommands("", cgb =>
|
||||||
|
{
|
||||||
|
|
||||||
cgb.AddCheck(Classes.Permissions.PermissionChecker.Instance);
|
cgb.AddCheck(Classes.Permissions.PermissionChecker.Instance);
|
||||||
|
|
||||||
@ -33,7 +39,8 @@ namespace NadekoBot.Modules {
|
|||||||
.Description("Shows weather data for a specified city and a country BOTH ARE REQUIRED. Weather api is very random if you make a mistake.")
|
.Description("Shows weather data for a specified city and a country BOTH ARE REQUIRED. Weather api is very random if you make a mistake.")
|
||||||
.Parameter("city", ParameterType.Required)
|
.Parameter("city", ParameterType.Required)
|
||||||
.Parameter("country", ParameterType.Required)
|
.Parameter("country", ParameterType.Required)
|
||||||
.Do(async e => {
|
.Do(async e =>
|
||||||
|
{
|
||||||
var city = e.GetArg("city").Replace(" ", "");
|
var city = e.GetArg("city").Replace(" ", "");
|
||||||
var country = e.GetArg("country").Replace(" ", "");
|
var country = e.GetArg("country").Replace(" ", "");
|
||||||
var response = await SearchHelper.GetResponseStringAsync($"http://api.lawlypopzz.xyz/nadekobot/weather/?city={city}&country={country}");
|
var response = await SearchHelper.GetResponseStringAsync($"http://api.lawlypopzz.xyz/nadekobot/weather/?city={city}&country={country}");
|
||||||
@ -51,7 +58,8 @@ $@"🌍 **Weather for** 【{obj["target"]}】
|
|||||||
cgb.CreateCommand(Prefix + "yt")
|
cgb.CreateCommand(Prefix + "yt")
|
||||||
.Parameter("query", ParameterType.Unparsed)
|
.Parameter("query", ParameterType.Unparsed)
|
||||||
.Description("Searches youtubes and shows the first result")
|
.Description("Searches youtubes and shows the first result")
|
||||||
.Do(async e => {
|
.Do(async e =>
|
||||||
|
{
|
||||||
if (!(await SearchHelper.ValidateQuery(e.Channel, e.GetArg("query")))) return;
|
if (!(await SearchHelper.ValidateQuery(e.Channel, e.GetArg("query")))) return;
|
||||||
|
|
||||||
var shortUrl = await SearchHelper.ShortenUrl(await SearchHelper.FindYoutubeUrlByKeywords(e.GetArg("query")));
|
var shortUrl = await SearchHelper.ShortenUrl(await SearchHelper.FindYoutubeUrlByKeywords(e.GetArg("query")));
|
||||||
@ -62,12 +70,16 @@ $@"🌍 **Weather for** 【{obj["target"]}】
|
|||||||
.Alias(Prefix + "anime", Prefix + "aq")
|
.Alias(Prefix + "anime", Prefix + "aq")
|
||||||
.Parameter("query", ParameterType.Unparsed)
|
.Parameter("query", ParameterType.Unparsed)
|
||||||
.Description("Queries anilist for an anime and shows the first result.")
|
.Description("Queries anilist for an anime and shows the first result.")
|
||||||
.Do(async e => {
|
.Do(async e =>
|
||||||
|
{
|
||||||
if (!(await SearchHelper.ValidateQuery(e.Channel, e.GetArg("query")))) return;
|
if (!(await SearchHelper.ValidateQuery(e.Channel, e.GetArg("query")))) return;
|
||||||
string result;
|
string result;
|
||||||
try {
|
try
|
||||||
|
{
|
||||||
result = (await SearchHelper.GetAnimeData(e.GetArg("query"))).ToString();
|
result = (await SearchHelper.GetAnimeData(e.GetArg("query"))).ToString();
|
||||||
} catch {
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
await e.Channel.SendMessage("Failed to find that anime.");
|
await e.Channel.SendMessage("Failed to find that anime.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -75,16 +87,42 @@ $@"🌍 **Weather for** 【{obj["target"]}】
|
|||||||
await e.Channel.SendMessage(result.ToString());
|
await e.Channel.SendMessage(result.ToString());
|
||||||
});
|
});
|
||||||
|
|
||||||
|
cgb.CreateCommand(Prefix + "imdb")
|
||||||
|
.Parameter("query", ParameterType.Unparsed)
|
||||||
|
.Description("Queries imdb for movies or series, show first result.")
|
||||||
|
.Do(async e =>
|
||||||
|
{
|
||||||
|
if (!(await SearchHelper.ValidateQuery(e.Channel, e.GetArg("query")))) return;
|
||||||
|
string result;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var movie = ImdbScraper.ImdbScrape(e.GetArg("query"), true);
|
||||||
|
if (movie.status) result = movie.ToString();
|
||||||
|
else result = "Failed to find that movie.";
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
await e.Channel.SendMessage("Failed to find that movie.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
await e.Channel.SendMessage(result.ToString());
|
||||||
|
});
|
||||||
|
|
||||||
cgb.CreateCommand(Prefix + "mang")
|
cgb.CreateCommand(Prefix + "mang")
|
||||||
.Alias(Prefix + "manga").Alias(Prefix + "mq")
|
.Alias(Prefix + "manga").Alias(Prefix + "mq")
|
||||||
.Parameter("query", ParameterType.Unparsed)
|
.Parameter("query", ParameterType.Unparsed)
|
||||||
.Description("Queries anilist for a manga and shows the first result.")
|
.Description("Queries anilist for a manga and shows the first result.")
|
||||||
.Do(async e => {
|
.Do(async e =>
|
||||||
|
{
|
||||||
if (!(await SearchHelper.ValidateQuery(e.Channel, e.GetArg("query")))) return;
|
if (!(await SearchHelper.ValidateQuery(e.Channel, e.GetArg("query")))) return;
|
||||||
string result;
|
string result;
|
||||||
try {
|
try
|
||||||
|
{
|
||||||
result = (await SearchHelper.GetMangaData(e.GetArg("query"))).ToString();
|
result = (await SearchHelper.GetMangaData(e.GetArg("query"))).ToString();
|
||||||
} catch {
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
await e.Channel.SendMessage("Failed to find that anime.");
|
await e.Channel.SendMessage("Failed to find that anime.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -93,7 +131,8 @@ $@"🌍 **Weather for** 【{obj["target"]}】
|
|||||||
|
|
||||||
cgb.CreateCommand(Prefix + "randomcat")
|
cgb.CreateCommand(Prefix + "randomcat")
|
||||||
.Description("Shows a random cat image.")
|
.Description("Shows a random cat image.")
|
||||||
.Do(async e => {
|
.Do(async e =>
|
||||||
|
{
|
||||||
await e.Channel.SendMessage(JObject.Parse(
|
await e.Channel.SendMessage(JObject.Parse(
|
||||||
await SearchHelper.GetResponseStringAsync("http://www.random.cat/meow"))["file"].ToString());
|
await SearchHelper.GetResponseStringAsync("http://www.random.cat/meow"))["file"].ToString());
|
||||||
});
|
});
|
||||||
@ -101,14 +140,18 @@ $@"🌍 **Weather for** 【{obj["target"]}】
|
|||||||
cgb.CreateCommand(Prefix + "i")
|
cgb.CreateCommand(Prefix + "i")
|
||||||
.Description("Pulls the first image found using a search parameter. Use ~ir for different results.\n**Usage**: ~i cute kitten")
|
.Description("Pulls the first image found using a search parameter. Use ~ir for different results.\n**Usage**: ~i cute kitten")
|
||||||
.Parameter("query", ParameterType.Unparsed)
|
.Parameter("query", ParameterType.Unparsed)
|
||||||
.Do(async e => {
|
.Do(async e =>
|
||||||
|
{
|
||||||
if (string.IsNullOrWhiteSpace(e.GetArg("query")))
|
if (string.IsNullOrWhiteSpace(e.GetArg("query")))
|
||||||
return;
|
return;
|
||||||
try {
|
try
|
||||||
|
{
|
||||||
var reqString = $"https://www.googleapis.com/customsearch/v1?q={Uri.EscapeDataString(e.GetArg("query"))}&cx=018084019232060951019%3Ahs5piey28-e&num=1&searchType=image&fields=items%2Flink&key={NadekoBot.Creds.GoogleAPIKey}";
|
var reqString = $"https://www.googleapis.com/customsearch/v1?q={Uri.EscapeDataString(e.GetArg("query"))}&cx=018084019232060951019%3Ahs5piey28-e&num=1&searchType=image&fields=items%2Flink&key={NadekoBot.Creds.GoogleAPIKey}";
|
||||||
var obj = JObject.Parse(await SearchHelper.GetResponseStringAsync(reqString));
|
var obj = JObject.Parse(await SearchHelper.GetResponseStringAsync(reqString));
|
||||||
await e.Channel.SendMessage(obj["items"][0]["link"].ToString());
|
await e.Channel.SendMessage(obj["items"][0]["link"].ToString());
|
||||||
} catch (Exception ex) {
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
await e.Channel.SendMessage($"💢 {ex.Message}");
|
await e.Channel.SendMessage($"💢 {ex.Message}");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -116,21 +159,26 @@ $@"🌍 **Weather for** 【{obj["target"]}】
|
|||||||
cgb.CreateCommand(Prefix + "ir")
|
cgb.CreateCommand(Prefix + "ir")
|
||||||
.Description("Pulls a random image using a search parameter.\n**Usage**: ~ir cute kitten")
|
.Description("Pulls a random image using a search parameter.\n**Usage**: ~ir cute kitten")
|
||||||
.Parameter("query", ParameterType.Unparsed)
|
.Parameter("query", ParameterType.Unparsed)
|
||||||
.Do(async e => {
|
.Do(async e =>
|
||||||
|
{
|
||||||
if (string.IsNullOrWhiteSpace(e.GetArg("query")))
|
if (string.IsNullOrWhiteSpace(e.GetArg("query")))
|
||||||
return;
|
return;
|
||||||
try {
|
try
|
||||||
|
{
|
||||||
var reqString = $"https://www.googleapis.com/customsearch/v1?q={Uri.EscapeDataString(e.GetArg("query"))}&cx=018084019232060951019%3Ahs5piey28-e&num=1&searchType=image&start={ rng.Next(1, 150) }&fields=items%2Flink&key={NadekoBot.Creds.GoogleAPIKey}";
|
var reqString = $"https://www.googleapis.com/customsearch/v1?q={Uri.EscapeDataString(e.GetArg("query"))}&cx=018084019232060951019%3Ahs5piey28-e&num=1&searchType=image&start={ rng.Next(1, 150) }&fields=items%2Flink&key={NadekoBot.Creds.GoogleAPIKey}";
|
||||||
var obj = JObject.Parse(await SearchHelper.GetResponseStringAsync(reqString));
|
var obj = JObject.Parse(await SearchHelper.GetResponseStringAsync(reqString));
|
||||||
await e.Channel.SendMessage(obj["items"][0]["link"].ToString());
|
await e.Channel.SendMessage(obj["items"][0]["link"].ToString());
|
||||||
} catch (Exception ex) {
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
await e.Channel.SendMessage($"💢 {ex.Message}");
|
await e.Channel.SendMessage($"💢 {ex.Message}");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
cgb.CreateCommand(Prefix + "lmgtfy")
|
cgb.CreateCommand(Prefix + "lmgtfy")
|
||||||
.Description("Google something for an idiot.")
|
.Description("Google something for an idiot.")
|
||||||
.Parameter("ffs", ParameterType.Unparsed)
|
.Parameter("ffs", ParameterType.Unparsed)
|
||||||
.Do(async e => {
|
.Do(async e =>
|
||||||
|
{
|
||||||
if (e.GetArg("ffs") == null || e.GetArg("ffs").Length < 1) return;
|
if (e.GetArg("ffs") == null || e.GetArg("ffs").Length < 1) return;
|
||||||
await e.Channel.SendMessage(await $"http://lmgtfy.com/?q={ Uri.EscapeUriString(e.GetArg("ffs").ToString()) }".ShortenUrl());
|
await e.Channel.SendMessage(await $"http://lmgtfy.com/?q={ Uri.EscapeUriString(e.GetArg("ffs").ToString()) }".ShortenUrl());
|
||||||
});
|
});
|
||||||
@ -138,31 +186,38 @@ $@"🌍 **Weather for** 【{obj["target"]}】
|
|||||||
cgb.CreateCommand(Prefix + "hs")
|
cgb.CreateCommand(Prefix + "hs")
|
||||||
.Description("Searches for a Hearthstone card and shows its image. Takes a while to complete.\n**Usage**:~hs Ysera")
|
.Description("Searches for a Hearthstone card and shows its image. Takes a while to complete.\n**Usage**:~hs Ysera")
|
||||||
.Parameter("name", ParameterType.Unparsed)
|
.Parameter("name", ParameterType.Unparsed)
|
||||||
.Do(async e => {
|
.Do(async e =>
|
||||||
|
{
|
||||||
var arg = e.GetArg("name");
|
var arg = e.GetArg("name");
|
||||||
if (string.IsNullOrWhiteSpace(arg)) {
|
if (string.IsNullOrWhiteSpace(arg))
|
||||||
|
{
|
||||||
await e.Channel.SendMessage("💢 Please enter a card name to search for.");
|
await e.Channel.SendMessage("💢 Please enter a card name to search for.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
await e.Channel.SendIsTyping();
|
await e.Channel.SendIsTyping();
|
||||||
var headers = new Dictionary<string, string> { { "X-Mashape-Key", NadekoBot.Creds.MashapeKey } };
|
var headers = new Dictionary<string, string> { { "X-Mashape-Key", NadekoBot.Creds.MashapeKey } };
|
||||||
var res = await SearchHelper.GetResponseStringAsync($"https://omgvamp-hearthstone-v1.p.mashape.com/cards/search/{Uri.EscapeUriString(arg)}", headers);
|
var res = await SearchHelper.GetResponseStringAsync($"https://omgvamp-hearthstone-v1.p.mashape.com/cards/search/{Uri.EscapeUriString(arg)}", headers);
|
||||||
try {
|
try
|
||||||
|
{
|
||||||
var items = JArray.Parse(res);
|
var items = JArray.Parse(res);
|
||||||
var images = new List<Image>();
|
var images = new List<Image>();
|
||||||
if (items == null)
|
if (items == null)
|
||||||
throw new KeyNotFoundException("Cannot find a card by that name");
|
throw new KeyNotFoundException("Cannot find a card by that name");
|
||||||
var cnt = 0;
|
var cnt = 0;
|
||||||
items.Shuffle();
|
items.Shuffle();
|
||||||
foreach (var item in items.TakeWhile(item => cnt++ < 4).Where(item => item.HasValues && item["img"] != null)) {
|
foreach (var item in items.TakeWhile(item => cnt++ < 4).Where(item => item.HasValues && item["img"] != null))
|
||||||
|
{
|
||||||
images.Add(
|
images.Add(
|
||||||
Image.FromStream(await SearchHelper.GetResponseStreamAsync(item["img"].ToString())));
|
Image.FromStream(await SearchHelper.GetResponseStreamAsync(item["img"].ToString())));
|
||||||
}
|
}
|
||||||
if (items.Count > 4) {
|
if (items.Count > 4)
|
||||||
|
{
|
||||||
await e.Channel.SendMessage("⚠ Found over 4 images. Showing random 4.");
|
await e.Channel.SendMessage("⚠ Found over 4 images. Showing random 4.");
|
||||||
}
|
}
|
||||||
await e.Channel.SendFile(arg + ".png", (await images.MergeAsync()).ToStream(System.Drawing.Imaging.ImageFormat.Png));
|
await e.Channel.SendFile(arg + ".png", (await images.MergeAsync()).ToStream(System.Drawing.Imaging.ImageFormat.Png));
|
||||||
} catch (Exception ex) {
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
await e.Channel.SendMessage($"💢 Error {ex.Message}");
|
await e.Channel.SendMessage($"💢 Error {ex.Message}");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -170,22 +225,30 @@ $@"🌍 **Weather for** 【{obj["target"]}】
|
|||||||
cgb.CreateCommand(Prefix + "osu")
|
cgb.CreateCommand(Prefix + "osu")
|
||||||
.Description("Shows osu stats for a player.\n**Usage**:~osu Name")
|
.Description("Shows osu stats for a player.\n**Usage**:~osu Name")
|
||||||
.Parameter("usr", ParameterType.Unparsed)
|
.Parameter("usr", ParameterType.Unparsed)
|
||||||
.Do(async e => {
|
.Do(async e =>
|
||||||
|
{
|
||||||
if (string.IsNullOrWhiteSpace(e.GetArg("usr")))
|
if (string.IsNullOrWhiteSpace(e.GetArg("usr")))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
using (WebClient cl = new WebClient()) {
|
using (WebClient cl = new WebClient())
|
||||||
try {
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
cl.CachePolicy = new System.Net.Cache.RequestCachePolicy(System.Net.Cache.RequestCacheLevel.NoCacheNoStore);
|
cl.CachePolicy = new System.Net.Cache.RequestCachePolicy(System.Net.Cache.RequestCacheLevel.NoCacheNoStore);
|
||||||
cl.Headers.Add(HttpRequestHeader.UserAgent, "Mozilla/5.0 (Windows NT 6.2; Win64; x64)");
|
cl.Headers.Add(HttpRequestHeader.UserAgent, "Mozilla/5.0 (Windows NT 6.2; Win64; x64)");
|
||||||
cl.DownloadDataAsync(new Uri($"http://lemmmy.pw/osusig/sig.php?uname={ e.GetArg("usr") }&flagshadow&xpbar&xpbarhex&pp=2"));
|
cl.DownloadDataAsync(new Uri($"http://lemmmy.pw/osusig/sig.php?uname={ e.GetArg("usr") }&flagshadow&xpbar&xpbarhex&pp=2"));
|
||||||
cl.DownloadDataCompleted += async (s, cle) => {
|
cl.DownloadDataCompleted += async (s, cle) =>
|
||||||
try {
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
await e.Channel.SendFile($"{e.GetArg("usr")}.png", new MemoryStream(cle.Result));
|
await e.Channel.SendFile($"{e.GetArg("usr")}.png", new MemoryStream(cle.Result));
|
||||||
await e.Channel.SendMessage($"`Profile Link:`https://osu.ppy.sh/u/{Uri.EscapeDataString(e.GetArg("usr"))}\n`Image provided by https://lemmmy.pw/osusig`");
|
await e.Channel.SendMessage($"`Profile Link:`https://osu.ppy.sh/u/{Uri.EscapeDataString(e.GetArg("usr"))}\n`Image provided by https://lemmmy.pw/osusig`");
|
||||||
} catch { }
|
}
|
||||||
|
catch { }
|
||||||
};
|
};
|
||||||
} catch {
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
await e.Channel.SendMessage("💢 Failed retrieving osu signature :\\");
|
await e.Channel.SendMessage("💢 Failed retrieving osu signature :\\");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -194,23 +257,28 @@ $@"🌍 **Weather for** 【{obj["target"]}】
|
|||||||
cgb.CreateCommand(Prefix + "ud")
|
cgb.CreateCommand(Prefix + "ud")
|
||||||
.Description("Searches Urban Dictionary for a word.\n**Usage**:~ud Pineapple")
|
.Description("Searches Urban Dictionary for a word.\n**Usage**:~ud Pineapple")
|
||||||
.Parameter("query", ParameterType.Unparsed)
|
.Parameter("query", ParameterType.Unparsed)
|
||||||
.Do(async e => {
|
.Do(async e =>
|
||||||
|
{
|
||||||
var arg = e.GetArg("query");
|
var arg = e.GetArg("query");
|
||||||
if (string.IsNullOrWhiteSpace(arg)) {
|
if (string.IsNullOrWhiteSpace(arg))
|
||||||
|
{
|
||||||
await e.Channel.SendMessage("💢 Please enter a search term.");
|
await e.Channel.SendMessage("💢 Please enter a search term.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
await e.Channel.SendIsTyping();
|
await e.Channel.SendIsTyping();
|
||||||
var headers = new Dictionary<string, string> { { "X-Mashape-Key", NadekoBot.Creds.MashapeKey } };
|
var headers = new Dictionary<string, string> { { "X-Mashape-Key", NadekoBot.Creds.MashapeKey } };
|
||||||
var res = await SearchHelper.GetResponseStringAsync($"https://mashape-community-urban-dictionary.p.mashape.com/define?term={Uri.EscapeUriString(arg)}", headers);
|
var res = await SearchHelper.GetResponseStringAsync($"https://mashape-community-urban-dictionary.p.mashape.com/define?term={Uri.EscapeUriString(arg)}", headers);
|
||||||
try {
|
try
|
||||||
|
{
|
||||||
var items = JObject.Parse(res);
|
var items = JObject.Parse(res);
|
||||||
var sb = new System.Text.StringBuilder();
|
var sb = new System.Text.StringBuilder();
|
||||||
sb.AppendLine($"`Term:` {items["list"][0]["word"].ToString()}");
|
sb.AppendLine($"`Term:` {items["list"][0]["word"].ToString()}");
|
||||||
sb.AppendLine($"`Definition:` {items["list"][0]["definition"].ToString()}");
|
sb.AppendLine($"`Definition:` {items["list"][0]["definition"].ToString()}");
|
||||||
sb.Append($"`Link:` <{await items["list"][0]["permalink"].ToString().ShortenUrl()}>");
|
sb.Append($"`Link:` <{await items["list"][0]["permalink"].ToString().ShortenUrl()}>");
|
||||||
await e.Channel.SendMessage(sb.ToString());
|
await e.Channel.SendMessage(sb.ToString());
|
||||||
} catch {
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
await e.Channel.SendMessage("💢 Failed finding a definition for that term.");
|
await e.Channel.SendMessage("💢 Failed finding a definition for that term.");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -218,30 +286,36 @@ $@"🌍 **Weather for** 【{obj["target"]}】
|
|||||||
cgb.CreateCommand(Prefix + "#")
|
cgb.CreateCommand(Prefix + "#")
|
||||||
.Description("Searches Tagdef.com for a hashtag.\n**Usage**:~# ff")
|
.Description("Searches Tagdef.com for a hashtag.\n**Usage**:~# ff")
|
||||||
.Parameter("query", ParameterType.Unparsed)
|
.Parameter("query", ParameterType.Unparsed)
|
||||||
.Do(async e => {
|
.Do(async e =>
|
||||||
|
{
|
||||||
var arg = e.GetArg("query");
|
var arg = e.GetArg("query");
|
||||||
if (string.IsNullOrWhiteSpace(arg)) {
|
if (string.IsNullOrWhiteSpace(arg))
|
||||||
|
{
|
||||||
await e.Channel.SendMessage("💢 Please enter a search term.");
|
await e.Channel.SendMessage("💢 Please enter a search term.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
await e.Channel.SendIsTyping();
|
await e.Channel.SendIsTyping();
|
||||||
var headers = new Dictionary<string, string> { { "X-Mashape-Key", NadekoBot.Creds.MashapeKey } };
|
var headers = new Dictionary<string, string> { { "X-Mashape-Key", NadekoBot.Creds.MashapeKey } };
|
||||||
var res = await SearchHelper.GetResponseStringAsync($"https://tagdef.p.mashape.com/one.{Uri.EscapeUriString(arg)}.json", headers);
|
var res = await SearchHelper.GetResponseStringAsync($"https://tagdef.p.mashape.com/one.{Uri.EscapeUriString(arg)}.json", headers);
|
||||||
try {
|
try
|
||||||
|
{
|
||||||
var items = JObject.Parse(res);
|
var items = JObject.Parse(res);
|
||||||
var sb = new System.Text.StringBuilder();
|
var sb = new System.Text.StringBuilder();
|
||||||
sb.AppendLine($"`Hashtag:` {items["defs"]["def"]["hashtag"].ToString()}");
|
sb.AppendLine($"`Hashtag:` {items["defs"]["def"]["hashtag"].ToString()}");
|
||||||
sb.AppendLine($"`Definition:` {items["defs"]["def"]["text"].ToString()}");
|
sb.AppendLine($"`Definition:` {items["defs"]["def"]["text"].ToString()}");
|
||||||
sb.Append($"`Link:` <{await items["defs"]["def"]["uri"].ToString().ShortenUrl()}>");
|
sb.Append($"`Link:` <{await items["defs"]["def"]["uri"].ToString().ShortenUrl()}>");
|
||||||
await e.Channel.SendMessage(sb.ToString());
|
await e.Channel.SendMessage(sb.ToString());
|
||||||
} catch {
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
await e.Channel.SendMessage("💢 Failed finidng a definition for that tag.");
|
await e.Channel.SendMessage("💢 Failed finidng a definition for that tag.");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
cgb.CreateCommand(Prefix + "quote")
|
cgb.CreateCommand(Prefix + "quote")
|
||||||
.Description("Shows a random quote.")
|
.Description("Shows a random quote.")
|
||||||
.Do(async e => {
|
.Do(async e =>
|
||||||
|
{
|
||||||
await
|
await
|
||||||
e.Channel.SendMessage(
|
e.Channel.SendMessage(
|
||||||
NadekoBot.Config.Quotes[new Random().Next(0, NadekoBot.Config.Quotes.Count)].ToString());
|
NadekoBot.Config.Quotes[new Random().Next(0, NadekoBot.Config.Quotes.Count)].ToString());
|
||||||
|
@ -118,6 +118,8 @@
|
|||||||
<Compile Include="Classes\ClashOfClans\ClashOfClans.cs" />
|
<Compile Include="Classes\ClashOfClans\ClashOfClans.cs" />
|
||||||
<Compile Include="Classes\DBHandler.cs" />
|
<Compile Include="Classes\DBHandler.cs" />
|
||||||
<Compile Include="Classes\FlowersHandler.cs" />
|
<Compile Include="Classes\FlowersHandler.cs" />
|
||||||
|
<Compile Include="Classes\IMDB\ImdbMovie.cs" />
|
||||||
|
<Compile Include="Classes\IMDB\ImdbScraper.cs" />
|
||||||
<Compile Include="Classes\IncidentsHandler.cs" />
|
<Compile Include="Classes\IncidentsHandler.cs" />
|
||||||
<Compile Include="Classes\JSONModels\AnimeResult.cs" />
|
<Compile Include="Classes\JSONModels\AnimeResult.cs" />
|
||||||
<Compile Include="Classes\JSONModels\Configuration.cs" />
|
<Compile Include="Classes\JSONModels\Configuration.cs" />
|
||||||
|
Loading…
Reference in New Issue
Block a user