PowerToys/Plugins/Wox.Plugin.Folder/FolderPlugin.cs

193 lines
6.5 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
2015-01-07 18:59:55 +08:00
using System.Reflection;
using System.Windows;
2014-07-19 10:12:11 +08:00
using Control = System.Windows.Controls.Control;
namespace Wox.Plugin.Folder
2014-07-19 10:12:11 +08:00
{
2015-01-07 18:59:55 +08:00
public class FolderPlugin : IPlugin, ISettingProvider,IPluginI18n
2014-07-19 10:12:11 +08:00
{
private static List<string> driverNames;
private PluginInitContext context;
2014-07-19 10:12:11 +08:00
public Control CreateSettingPanel()
{
2015-01-07 18:59:55 +08:00
return new FileSystemSettings(context);
2014-07-19 10:12:11 +08:00
}
public void Init(PluginInitContext context)
2014-07-19 10:12:11 +08:00
{
this.context = context;
this.context.API.BackKeyDownEvent += ApiBackKeyDownEvent;
InitialDriverList();
if (FolderStorage.Instance.FolderLinks == null)
2014-07-19 10:12:11 +08:00
{
FolderStorage.Instance.FolderLinks = new List<FolderLink>();
FolderStorage.Instance.Save();
2014-07-19 10:12:11 +08:00
}
}
private void ApiBackKeyDownEvent(WoxKeyDownEventArgs e)
2014-07-19 10:12:11 +08:00
{
string query = e.Query;
if (Directory.Exists(query))
{
if (query.EndsWith("\\"))
{
query = query.Remove(query.Length - 1);
}
if (query.Contains("\\"))
{
int index = query.LastIndexOf("\\");
query = query.Remove(index) + "\\";
}
context.API.ChangeQuery(query);
}
}
public List<Result> Query(Query query)
2014-07-19 10:12:11 +08:00
{
if(string.IsNullOrEmpty(query.RawQuery)) return new List<Result>();
2014-07-19 10:12:11 +08:00
string input = query.RawQuery.ToLower();
List<FolderLink> userFolderLinks = FolderStorage.Instance.FolderLinks.Where(
2014-07-19 10:12:11 +08:00
x => x.Nickname.StartsWith(input, StringComparison.OrdinalIgnoreCase)).ToList();
List<Result> results =
userFolderLinks.Select(
item => new Result(item.Nickname, "Images/folder.png", "Ctrl + Enter to open the directory")
{
Action = c =>
{
if (c.SpecialKeyState.CtrlPressed)
{
try
{
Process.Start(item.Path);
return true;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Could not start " + item.Path);
return false;
}
}
context.API.ChangeQuery(item.Path);
return false;
}
}).ToList();
if (driverNames != null && !driverNames.Any(input.StartsWith))
2014-07-19 10:12:11 +08:00
return results;
if (!input.EndsWith("\\"))
{
//"c:" means "the current directory on the C drive" whereas @"c:\" means "root of the C drive"
input = input + "\\";
}
results.AddRange(QueryInternal_Directory_Exists(input));
return results;
}
private void InitialDriverList()
{
if (driverNames == null)
{
driverNames = new List<string>();
DriveInfo[] allDrives = DriveInfo.GetDrives();
foreach (DriveInfo driver in allDrives)
{
driverNames.Add(driver.Name.ToLower().TrimEnd('\\'));
}
}
}
private List<Result> QueryInternal_Directory_Exists(string rawQuery)
{
var results = new List<Result>();
if (!Directory.Exists(rawQuery)) return results;
results.Add(new Result("Open current directory", "Images/folder.png")
{
Score = 10000,
Action = c =>
{
Process.Start(rawQuery);
return true;
}
});
//Add children directories
DirectoryInfo[] dirs = new DirectoryInfo(rawQuery).GetDirectories();
foreach (DirectoryInfo dir in dirs)
{
if ((dir.Attributes & FileAttributes.Hidden) == FileAttributes.Hidden) continue;
DirectoryInfo dirCopy = dir;
var result = new Result(dir.Name, "Images/folder.png", "Ctrl + Enter to open the directory")
{
Action = c =>
{
if (c.SpecialKeyState.CtrlPressed)
{
try
{
Process.Start(dirCopy.FullName);
return true;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Could not start " + dirCopy.FullName);
return false;
}
}
context.API.ChangeQuery(dirCopy.FullName + "\\");
return false;
}
};
results.Add(result);
}
//Add children files
FileInfo[] files = new DirectoryInfo(rawQuery).GetFiles();
foreach (FileInfo file in files)
{
if ((file.Attributes & FileAttributes.Hidden) == FileAttributes.Hidden) continue;
string filePath = file.FullName;
var result = new Result(Path.GetFileName(filePath), "Images/file.png")
{
Action = c =>
{
try
{
Process.Start(filePath);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Could not start " + filePath);
}
return true;
}
};
results.Add(result);
}
return results;
}
2015-01-07 18:59:55 +08:00
public string GetLanguagesFolder()
{
return Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "Languages");
}
2014-07-19 10:12:11 +08:00
}
}