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; using WinAlfred.Plugin.System.Common; namespace WinAlfred.Plugin.System { public class BrowserBookmarks : ISystemPlugin { private List bookmarks = new List(); [DllImport("shell32.dll")] static extern bool SHGetSpecialFolderPath(IntPtr hwndOwner, [Out] StringBuilder lpszPath, int nFolder, bool fCreate); const int CSIDL_LOCAL_APPDATA = 0x001c; public List Query(Query query) { if (string.IsNullOrEmpty(query.RawQuery) || query.RawQuery.EndsWith(" ") || query.RawQuery.Length <= 1) return new List(); List 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; } public void Init(PluginInitContext context) { 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\": \"(?.*?)\""); MatchCollection nameCollection = nameRegex.Matches(all); Regex typeRegex = new Regex("\"type\": \"(?.*?)\""); MatchCollection typeCollection = typeRegex.Matches(all); Regex urlRegex = new Regex("\"url\": \"(?.*?)\""); MatchCollection urlCollection = urlRegex.Matches(all); List names = (from Match match in nameCollection select match.Groups["name"].Value).ToList(); List types = (from Match match in typeCollection select match.Groups["type"].Value).ToList(); List 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 string Name { get { return "BrowserBookmark"; } } public string Description { get { return "BrowserBookmark"; } } } public class Bookmark { public string Name { get; set; } public string Url { get; set; } public string Source { get; set; } } }