mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 11:09:28 +08:00
d5f223fc88
* Add file path to files in Folder Plugin * Add folder subtitle display path when wildcard '>' is used
309 lines
11 KiB
C#
309 lines
11 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using Wox.Infrastructure;
|
|
using Wox.Infrastructure.Storage;
|
|
|
|
namespace Wox.Plugin.Folder
|
|
{
|
|
public class Main : IPlugin, ISettingProvider, IPluginI18n, ISavable, IContextMenu
|
|
{
|
|
public const string FolderImagePath = "Images\\folder.png";
|
|
public const string FileImagePath = "Images\\file.png";
|
|
public const string DeleteFileFolderImagePath = "Images\\deletefilefolder.png";
|
|
public const string CopyImagePath = "Images\\copy.png";
|
|
|
|
private string DefaultFolderSubtitleString = "Ctrl + Enter to open the directory";
|
|
|
|
private static List<string> _driverNames;
|
|
private PluginInitContext _context;
|
|
|
|
private readonly Settings _settings;
|
|
private readonly PluginJsonStorage<Settings> _storage;
|
|
private IContextMenu _contextMenuLoader;
|
|
|
|
public Main()
|
|
{
|
|
_storage = new PluginJsonStorage<Settings>();
|
|
_settings = _storage.Load();
|
|
}
|
|
|
|
public void Save()
|
|
{
|
|
_storage.Save();
|
|
}
|
|
|
|
public Control CreateSettingPanel()
|
|
{
|
|
return new FileSystemSettings(_context.API, _settings);
|
|
}
|
|
|
|
public void Init(PluginInitContext context)
|
|
{
|
|
_context = context;
|
|
_contextMenuLoader = new ContextMenuLoader(context);
|
|
InitialDriverList();
|
|
}
|
|
|
|
public List<Result> Query(Query query)
|
|
{
|
|
var results = GetUserFolderResults(query);
|
|
|
|
string search = query.Search.ToLower();
|
|
if (!IsDriveOrSharedFolder(search))
|
|
return results;
|
|
|
|
results.AddRange(QueryInternal_Directory_Exists(query));
|
|
|
|
// todo why was this hack here?
|
|
foreach (var result in results)
|
|
{
|
|
result.Score += 10;
|
|
}
|
|
|
|
return results;
|
|
}
|
|
|
|
private static bool IsDriveOrSharedFolder(string search)
|
|
{
|
|
if (search.StartsWith(@"\\"))
|
|
{ // share folder
|
|
return true;
|
|
}
|
|
|
|
if (_driverNames != null && _driverNames.Any(search.StartsWith))
|
|
{ // normal drive letter
|
|
return true;
|
|
}
|
|
|
|
if (_driverNames == null && search.Length > 2 && char.IsLetter(search[0]) && search[1] == ':')
|
|
{ // when we don't have the drive letters we can try...
|
|
return true; // we don't know so let's give it the possibility
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
private Result CreateFolderResult(string title, string subtitle, string path, Query query)
|
|
{
|
|
return new Result
|
|
{
|
|
Title = title,
|
|
IcoPath = path,
|
|
SubTitle = subtitle,
|
|
TitleHighlightData = StringMatcher.FuzzySearch(query.Search, title).MatchData,
|
|
Action = c =>
|
|
{
|
|
if (c.SpecialKeyState.CtrlPressed)
|
|
{
|
|
try
|
|
{
|
|
Process.Start(path);
|
|
return true;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
MessageBox.Show(ex.Message, "Could not start " + path);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
string changeTo = path.EndsWith("\\") ? path : path + "\\";
|
|
_context.API.ChangeQuery(string.IsNullOrEmpty(query.ActionKeyword) ?
|
|
changeTo :
|
|
query.ActionKeyword + " " + changeTo);
|
|
return false;
|
|
},
|
|
ContextData = new SearchResult { Type = ResultType.Folder, FullPath = path }
|
|
};
|
|
}
|
|
|
|
private List<Result> GetUserFolderResults(Query query)
|
|
{
|
|
string search = query.Search.ToLower();
|
|
var userFolderLinks = _settings.FolderLinks.Where(
|
|
x => x.Nickname.StartsWith(search, StringComparison.OrdinalIgnoreCase));
|
|
var results = userFolderLinks.Select(item =>
|
|
CreateFolderResult(item.Nickname, DefaultFolderSubtitleString, item.Path, query)).ToList();
|
|
return results;
|
|
}
|
|
|
|
private void InitialDriverList()
|
|
{
|
|
if (_driverNames == null)
|
|
{
|
|
_driverNames = new List<string>();
|
|
var allDrives = DriveInfo.GetDrives();
|
|
foreach (DriveInfo driver in allDrives)
|
|
{
|
|
_driverNames.Add(driver.Name.ToLower().TrimEnd('\\'));
|
|
}
|
|
}
|
|
}
|
|
|
|
private static readonly char[] _specialSearchChars = new char[]
|
|
{
|
|
'?', '*', '>'
|
|
};
|
|
|
|
private List<Result> QueryInternal_Directory_Exists(Query query)
|
|
{
|
|
var search = query.Search;
|
|
var results = new List<Result>();
|
|
var hasSpecial = search.IndexOfAny(_specialSearchChars) >= 0;
|
|
string incompleteName = "";
|
|
if (hasSpecial || !Directory.Exists(search + "\\"))
|
|
{
|
|
// if folder doesn't exist, we want to take the last part and use it afterwards to help the user
|
|
// find the right folder.
|
|
int index = search.LastIndexOf('\\');
|
|
if (index > 0 && index < (search.Length - 1))
|
|
{
|
|
incompleteName = search.Substring(index + 1).ToLower();
|
|
search = search.Substring(0, index + 1);
|
|
if (!Directory.Exists(search))
|
|
{
|
|
return results;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
return results;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// folder exist, add \ at the end of doesn't exist
|
|
if (!search.EndsWith("\\"))
|
|
{
|
|
search += "\\";
|
|
}
|
|
}
|
|
|
|
results.Add(CreateOpenCurrentFolderResult(incompleteName, search));
|
|
|
|
var searchOption = SearchOption.TopDirectoryOnly;
|
|
incompleteName += "*";
|
|
|
|
// give the ability to search all folder when starting with >
|
|
if (incompleteName.StartsWith(">"))
|
|
{
|
|
searchOption = SearchOption.AllDirectories;
|
|
|
|
// match everything before and after search term using supported wildcard '*', ie. *searchterm*
|
|
incompleteName = "*" + incompleteName.Substring(1);
|
|
}
|
|
|
|
var folderList = new List<Result>();
|
|
var fileList = new List<Result>();
|
|
|
|
var folderSubtitleString = DefaultFolderSubtitleString;
|
|
|
|
try
|
|
{
|
|
// search folder and add results
|
|
var directoryInfo = new DirectoryInfo(search);
|
|
var fileSystemInfos = directoryInfo.GetFileSystemInfos(incompleteName, searchOption);
|
|
|
|
foreach (var fileSystemInfo in fileSystemInfos)
|
|
{
|
|
if ((fileSystemInfo.Attributes & FileAttributes.Hidden) == FileAttributes.Hidden) continue;
|
|
|
|
if(fileSystemInfo is DirectoryInfo)
|
|
{
|
|
if (searchOption == SearchOption.AllDirectories)
|
|
folderSubtitleString = fileSystemInfo.FullName;
|
|
|
|
folderList.Add(CreateFolderResult(fileSystemInfo.Name, folderSubtitleString, fileSystemInfo.FullName, query));
|
|
}
|
|
else
|
|
{
|
|
fileList.Add(CreateFileResult(fileSystemInfo.FullName, query));
|
|
}
|
|
}
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
if (e is UnauthorizedAccessException || e is ArgumentException)
|
|
{
|
|
results.Add(new Result { Title = e.Message, Score = 501 });
|
|
|
|
return results;
|
|
}
|
|
|
|
throw;
|
|
}
|
|
|
|
// Intial ordering, this order can be updated later by UpdateResultView.MainViewModel based on history of user selection.
|
|
return results.Concat(folderList.OrderBy(x => x.Title)).Concat(fileList.OrderBy(x => x.Title)).ToList();
|
|
}
|
|
|
|
private static Result CreateFileResult(string filePath, Query query)
|
|
{
|
|
var result = new Result
|
|
{
|
|
Title = Path.GetFileName(filePath),
|
|
SubTitle = filePath,
|
|
IcoPath = filePath,
|
|
TitleHighlightData = StringMatcher.FuzzySearch(query.Search, Path.GetFileName(filePath)).MatchData,
|
|
Action = c =>
|
|
{
|
|
try
|
|
{
|
|
Process.Start(filePath);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
MessageBox.Show(ex.Message, "Could not start " + filePath);
|
|
}
|
|
|
|
return true;
|
|
},
|
|
ContextData = new SearchResult { Type = ResultType.File, FullPath = filePath}
|
|
};
|
|
return result;
|
|
}
|
|
|
|
private static Result CreateOpenCurrentFolderResult(string incompleteName, string search)
|
|
{
|
|
var firstResult = "Open current directory";
|
|
if (incompleteName.Length > 0)
|
|
firstResult = "Open " + search;
|
|
|
|
var folderName = search.TrimEnd('\\').Split(new[] { Path.DirectorySeparatorChar }, StringSplitOptions.None).Last();
|
|
|
|
return new Result
|
|
{
|
|
Title = firstResult,
|
|
SubTitle = $"Use > to search files and subfolders within {folderName}, " +
|
|
$"* to search for file extensions in {folderName} or both >* to combine the search",
|
|
IcoPath = search,
|
|
Score = 500,
|
|
Action = c =>
|
|
{
|
|
Process.Start(search);
|
|
return true;
|
|
}
|
|
};
|
|
}
|
|
|
|
public string GetTranslatedPluginTitle()
|
|
{
|
|
return _context.API.GetTranslation("wox_plugin_folder_plugin_name");
|
|
}
|
|
|
|
public string GetTranslatedPluginDescription()
|
|
{
|
|
return _context.API.GetTranslation("wox_plugin_folder_plugin_description");
|
|
}
|
|
|
|
public List<Result> LoadContextMenus(Result selectedResult)
|
|
{
|
|
return _contextMenuLoader.LoadContextMenus(selectedResult);
|
|
}
|
|
}
|
|
} |