using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Threading.Tasks; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using Wox.Infrastructure.Http; using Wox.Infrastructure.Logger; namespace Wox.Plugin.WebSearch.SuggestionSources { public class Google : SuggestionSource { public override async Task> Suggestions(string query) { string result; try { const string api = "https://www.google.com/complete/search?output=chrome&q="; result = await Http.Get(api + Uri.EscapeUriString(query)); } catch (WebException e) { Log.Warn("Can't get suggestion from google"); Log.Exception(e); return new List(); ; } if (string.IsNullOrEmpty(result)) return new List(); JContainer json; try { json = JsonConvert.DeserializeObject(result) as JContainer; } catch (JsonSerializationException e) { Log.Exception(e); return new List(); } if (json != null) { var results = json[1] as JContainer; if (results != null) { return results.OfType().Select(o => o.Value).OfType().ToList(); } } return new List(); } public override string ToString() { return "Google"; } } }