mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
365ca9180f
now gets bookmark title from moz_bookmarks table instead of moz_places
79 lines
2.8 KiB
C#
79 lines
2.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data.SQLite;
|
|
using System.IO;
|
|
using System.Linq;
|
|
|
|
namespace Wox.Plugin.BrowserBookmark
|
|
{
|
|
public class FirefoxBookmarks
|
|
{
|
|
private const string queryAllBookmarks = @"SELECT moz_places.url, moz_bookmarks.title
|
|
FROM moz_places
|
|
INNER JOIN moz_bookmarks ON (
|
|
moz_bookmarks.fk NOT NULL AND moz_bookmarks.fk = moz_places.id
|
|
)
|
|
ORDER BY moz_places.visit_count DESC
|
|
";
|
|
|
|
private const string dbPathFormat = "Data Source ={0};Version=3;New=False;Compress=True;";
|
|
|
|
/// <summary>
|
|
/// Searches the places.sqlite db and returns all bookmarks
|
|
/// </summary>
|
|
public List<Bookmark> GetBookmarks()
|
|
{
|
|
// Return empty list if the places.sqlite file cannot be found
|
|
if (string.IsNullOrEmpty(PlacesPath) || !File.Exists(PlacesPath))
|
|
return new List<Bookmark>();
|
|
|
|
// create the connection string and init the connection
|
|
string dbPath = string.Format(dbPathFormat, PlacesPath);
|
|
var dbConnection = new SQLiteConnection(dbPath);
|
|
|
|
// Open connection to the database file and execute the query
|
|
dbConnection.Open();
|
|
var reader = new SQLiteCommand(queryAllBookmarks, dbConnection).ExecuteReader();
|
|
|
|
// return results in List<Bookmark> format
|
|
return reader.Select(x => new Bookmark()
|
|
{
|
|
Name = (x["title"] is DBNull) ? string.Empty : x["title"].ToString(),
|
|
Url = x["url"].ToString()
|
|
}).ToList();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Path to places.sqlite
|
|
/// </summary>
|
|
private string PlacesPath
|
|
{
|
|
get
|
|
{
|
|
var profilesPath = Environment.ExpandEnvironmentVariables(@"%appdata%\Mozilla\Firefox\Profiles\");
|
|
|
|
// return null if the Profiles folder does not exist
|
|
if (!Directory.Exists(profilesPath)) return null;
|
|
|
|
var folders = new DirectoryInfo(profilesPath).GetDirectories().Select(x => x.FullName).ToList();
|
|
|
|
// Look for the default profile folder
|
|
return string.Format(@"{0}\places.sqlite",
|
|
folders.FirstOrDefault(d => File.Exists(d + @"\places.sqlite") && d.EndsWith(".default"))
|
|
?? folders.First(d => File.Exists(d + @"\places.sqlite")));
|
|
}
|
|
}
|
|
}
|
|
|
|
public static class Extensions
|
|
{
|
|
public static IEnumerable<T> Select<T>(this SQLiteDataReader reader, Func<SQLiteDataReader, T> projection)
|
|
{
|
|
while (reader.Read())
|
|
{
|
|
yield return projection(reader);
|
|
}
|
|
}
|
|
}
|
|
}
|