2014-01-08 15:21:37 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
using Newtonsoft.Json;
|
2014-01-29 10:33:24 +00:00
|
|
|
|
using Wox.Plugin.System.Common;
|
2014-01-08 15:21:37 +00:00
|
|
|
|
|
2014-01-29 10:33:24 +00:00
|
|
|
|
namespace Wox.Plugin.System
|
2014-01-08 15:21:37 +00:00
|
|
|
|
{
|
2014-01-15 14:45:02 +00:00
|
|
|
|
public class BrowserBookmarks : BaseSystemPlugin
|
2014-01-08 15:21:37 +00:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
private List<Bookmark> bookmarks = new List<Bookmark>();
|
|
|
|
|
|
|
|
|
|
[DllImport("shell32.dll")]
|
|
|
|
|
static extern bool SHGetSpecialFolderPath(IntPtr hwndOwner, [Out] StringBuilder lpszPath, int nFolder, bool fCreate);
|
|
|
|
|
const int CSIDL_LOCAL_APPDATA = 0x001c;
|
|
|
|
|
|
2014-01-15 14:45:02 +00:00
|
|
|
|
protected override List<Result> QueryInternal(Query query)
|
2014-01-08 15:21:37 +00:00
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrEmpty(query.RawQuery) || query.RawQuery.EndsWith(" ") || query.RawQuery.Length <= 1) return new List<Result>();
|
|
|
|
|
|
|
|
|
|
List<Bookmark> returnList = bookmarks.Where(o => MatchProgram(o, query)).ToList();
|
|
|
|
|
|
|
|
|
|
return returnList.Select(c => new Result()
|
|
|
|
|
{
|
|
|
|
|
Title = c.Name,
|
|
|
|
|
SubTitle = "Bookmark: " + c.Url,
|
|
|
|
|
IcoPath = Directory.GetCurrentDirectory() + @"\Images\bookmark.png",
|
|
|
|
|
Score = 5,
|
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
Process.Start(c.Url);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("open url failed:" + c.Url);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}).ToList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool MatchProgram(Bookmark bookmark, Query query)
|
|
|
|
|
{
|
|
|
|
|
if (bookmark.Name.ToLower().Contains(query.RawQuery.ToLower()) || bookmark.Url.ToLower().Contains(query.RawQuery.ToLower())) return true;
|
|
|
|
|
if (ChineseToPinYin.ToPinYin(bookmark.Name).Replace(" ", "").ToLower().Contains(query.RawQuery.ToLower())) return true;
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-15 14:45:02 +00:00
|
|
|
|
protected override void InitInternal(PluginInitContext context)
|
2014-01-08 15:21:37 +00:00
|
|
|
|
{
|
|
|
|
|
LoadChromeBookmarks();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void LoadChromeBookmarks()
|
|
|
|
|
{
|
|
|
|
|
StringBuilder platformPath = new StringBuilder(560);
|
|
|
|
|
SHGetSpecialFolderPath(IntPtr.Zero, platformPath, CSIDL_LOCAL_APPDATA, false);
|
|
|
|
|
|
|
|
|
|
string path = platformPath + @"\Google\Chrome\User Data\Default\Bookmarks";
|
|
|
|
|
if (File.Exists(path))
|
|
|
|
|
{
|
|
|
|
|
string all = File.ReadAllText(path);
|
|
|
|
|
Regex nameRegex = new Regex("\"name\": \"(?<name>.*?)\"");
|
|
|
|
|
MatchCollection nameCollection = nameRegex.Matches(all);
|
|
|
|
|
Regex typeRegex = new Regex("\"type\": \"(?<type>.*?)\"");
|
|
|
|
|
MatchCollection typeCollection = typeRegex.Matches(all);
|
|
|
|
|
Regex urlRegex = new Regex("\"url\": \"(?<url>.*?)\"");
|
|
|
|
|
MatchCollection urlCollection = urlRegex.Matches(all);
|
|
|
|
|
|
|
|
|
|
List<string> names = (from Match match in nameCollection select match.Groups["name"].Value).ToList();
|
|
|
|
|
List<string> types = (from Match match in typeCollection select match.Groups["type"].Value).ToList();
|
|
|
|
|
List<string> urls = (from Match match in urlCollection select match.Groups["url"].Value).ToList();
|
|
|
|
|
|
|
|
|
|
int urlIndex = 0;
|
|
|
|
|
for (int i = 0; i < names.Count; i++)
|
|
|
|
|
{
|
|
|
|
|
string name = DecodeUnicode(names[i]);
|
|
|
|
|
string type = types[i];
|
|
|
|
|
if (type == "url")
|
|
|
|
|
{
|
|
|
|
|
string url = urls[urlIndex];
|
|
|
|
|
urlIndex++;
|
|
|
|
|
|
|
|
|
|
bookmarks.Add(new Bookmark()
|
|
|
|
|
{
|
|
|
|
|
Name = name,
|
|
|
|
|
Url = url,
|
|
|
|
|
Source = "Chrome"
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
#if (DEBUG)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("load chrome bookmark failed");
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private String DecodeUnicode(String dataStr)
|
|
|
|
|
{
|
|
|
|
|
Regex reg = new Regex(@"(?i)\\[uU]([0-9a-f]{4})");
|
|
|
|
|
return reg.Replace(dataStr, m => ((char)Convert.ToInt32(m.Groups[1].Value, 16)).ToString());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class Bookmark
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string Url { get; set; }
|
|
|
|
|
public string Source { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|