mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
44 lines
1.3 KiB
C#
44 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text.RegularExpressions;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Linq;
|
|
using Wox.Infrastructure.Http;
|
|
|
|
namespace Wox.Plugin.WebSearch.SuggestionSources
|
|
{
|
|
public class Baidu : AbstractSuggestionSource
|
|
{
|
|
Regex reg = new Regex("window.baidu.sug\\((.*)\\)");
|
|
|
|
public override List<string> GetSuggestions(string query)
|
|
{
|
|
var result = HttpRequest.Get("http://suggestion.baidu.com/su?json=1&wd=" + Uri.EscapeUriString(query), "GB2312");
|
|
if (string.IsNullOrEmpty(result)) return new List<string>();
|
|
|
|
Match match = reg.Match(result);
|
|
if (match.Success)
|
|
{
|
|
JContainer json = null;
|
|
try
|
|
{
|
|
json =JsonConvert.DeserializeObject(match.Groups[1].Value) as JContainer;
|
|
}
|
|
catch{}
|
|
|
|
if (json != null)
|
|
{
|
|
var results = json["s"] as JArray;
|
|
if (results != null)
|
|
{
|
|
return results.OfType<JValue>().Select(o => o.Value).OfType<string>().ToList();
|
|
}
|
|
}
|
|
}
|
|
|
|
return new List<string>();
|
|
}
|
|
}
|
|
}
|