Google disabled old image API ; . ;
I disabled image searches until I find a proper replacement. (probably imgur)
This commit is contained in:
parent
e62849f999
commit
1847ddbbe2
@ -263,6 +263,8 @@ namespace NadekoBot.Modules
|
|||||||
.Parameter("all", ParameterType.Unparsed)
|
.Parameter("all", ParameterType.Unparsed)
|
||||||
.Do(async e =>
|
.Do(async e =>
|
||||||
{
|
{
|
||||||
|
await e.Send("This feature is being reconstructed.");
|
||||||
|
/*
|
||||||
var httpClient = new System.Net.Http.HttpClient();
|
var httpClient = new System.Net.Http.HttpClient();
|
||||||
string str = e.Args[0];
|
string str = e.Args[0];
|
||||||
|
|
||||||
@ -276,6 +278,7 @@ namespace NadekoBot.Modules
|
|||||||
}
|
}
|
||||||
string s = Searches.ShortenUrl(obj.responseData.results[0].url.ToString());
|
string s = Searches.ShortenUrl(obj.responseData.results[0].url.ToString());
|
||||||
await e.Send(s);
|
await e.Send(s);
|
||||||
|
*/
|
||||||
});
|
});
|
||||||
|
|
||||||
cgb.CreateCommand("ir")
|
cgb.CreateCommand("ir")
|
||||||
@ -284,19 +287,28 @@ namespace NadekoBot.Modules
|
|||||||
.Parameter("all", ParameterType.Unparsed)
|
.Parameter("all", ParameterType.Unparsed)
|
||||||
.Do(async e =>
|
.Do(async e =>
|
||||||
{
|
{
|
||||||
|
await e.Send("This feature is being reconstructed.");
|
||||||
|
/*
|
||||||
var httpClient = new System.Net.Http.HttpClient();
|
var httpClient = new System.Net.Http.HttpClient();
|
||||||
string str = e.Args[0];
|
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;
|
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);
|
JObject obj = JObject.Parse(r.Content.ReadAsStringAsync().Result);
|
||||||
if (obj.responseData.results.Count == 0)
|
try
|
||||||
{
|
{
|
||||||
await e.Send("No results found for that keyword :\\");
|
Console.WriteLine(obj.ToString());
|
||||||
return;
|
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);
|
||||||
}
|
}
|
||||||
int rnd = rng.Next(0, obj.responseData.results.Count);
|
catch (Exception ex) {
|
||||||
string s = Searches.ShortenUrl(obj.responseData.results[rnd].url.ToString());
|
Console.WriteLine(ex.ToString());
|
||||||
await e.Send(s);
|
}
|
||||||
|
*/
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
@ -362,7 +374,7 @@ namespace NadekoBot.Modules
|
|||||||
string str = "Bye";
|
string str = "Bye";
|
||||||
foreach (var u in e.Message.MentionedUsers)
|
foreach (var u in e.Message.MentionedUsers)
|
||||||
{
|
{
|
||||||
str += " " + Mention.User(u);
|
str += " " + u.Mention;
|
||||||
}
|
}
|
||||||
await e.Send(str);
|
await e.Send(str);
|
||||||
});
|
});
|
||||||
|
@ -6,7 +6,6 @@ using Parse;
|
|||||||
using Discord.Commands;
|
using Discord.Commands;
|
||||||
using NadekoBot.Modules;
|
using NadekoBot.Modules;
|
||||||
using Discord.Modules;
|
using Discord.Modules;
|
||||||
using Newtonsoft.Json.Linq;
|
|
||||||
|
|
||||||
namespace NadekoBot
|
namespace NadekoBot
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user