PowerToys/Plugins/Wox.Plugin.CMD/CMD.cs

233 lines
8.3 KiB
C#
Raw Normal View History

2014-01-03 18:16:05 +08:00
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
2014-01-03 18:16:05 +08:00
using System.Linq;
using System.Windows.Forms;
using WindowsInput;
using WindowsInput.Native;
using Wox.Infrastructure.Hotkey;
using Wox.Infrastructure.Logger;
using Control = System.Windows.Controls.Control;
2014-01-03 18:16:05 +08:00
namespace Wox.Plugin.CMD
2014-01-03 18:16:05 +08:00
{
public class CMD : IPlugin, ISettingProvider, IPluginI18n, IInstantQuery, IContextMenu
2014-01-03 18:16:05 +08:00
{
private PluginInitContext context;
private bool WinRStroked;
private readonly KeyboardSimulator keyboardSimulator = new KeyboardSimulator(new InputSimulator());
private readonly CMDStorage _settings = CMDStorage.Instance;
public List<Result> Query(Query query)
2014-01-03 18:16:05 +08:00
{
2014-01-03 23:52:36 +08:00
List<Result> results = new List<Result>();
string cmd = query.Search;
if (string.IsNullOrEmpty(cmd))
{
2015-11-08 10:27:37 +08:00
return ResultsFromlHistory();
}
else
2014-01-03 23:52:36 +08:00
{
2015-01-20 20:05:38 +08:00
var queryCmd = GetCurrentCmd(cmd);
2015-11-08 10:27:37 +08:00
results.Add(queryCmd);
2015-01-20 20:05:38 +08:00
var history = GetHistoryCmds(cmd, queryCmd);
2015-11-08 10:27:37 +08:00
results.AddRange(history);
2014-03-20 04:12:50 +08:00
try
{
string basedir = null;
string dir = null;
string excmd = Environment.ExpandEnvironmentVariables(cmd);
if (Directory.Exists(excmd) && (cmd.EndsWith("/") || cmd.EndsWith(@"\")))
{
basedir = excmd;
dir = cmd;
}
else if (Directory.Exists(Path.GetDirectoryName(excmd) ?? string.Empty))
2014-03-20 04:12:50 +08:00
{
basedir = Path.GetDirectoryName(excmd);
var dirn = Path.GetDirectoryName(cmd);
dir = (dirn.EndsWith("/") || dirn.EndsWith(@"\")) ? dirn : cmd.Substring(0, dirn.Length + 1);
}
if (basedir != null)
{
2015-11-08 10:27:37 +08:00
var autocomplete = Directory.GetFileSystemEntries(basedir).
Select(o => dir + Path.GetFileName(o)).
Where(o => o.StartsWith(cmd, StringComparison.OrdinalIgnoreCase) &&
!results.Any(p => o.Equals(p.Title, StringComparison.OrdinalIgnoreCase)) &&
!results.Any(p => o.Equals(p.Title, StringComparison.OrdinalIgnoreCase))).ToList();
2014-03-20 04:12:50 +08:00
autocomplete.Sort();
2016-01-07 05:34:42 +08:00
results.AddRange(autocomplete.ConvertAll(m => new Result
2014-03-23 16:17:41 +08:00
{
2014-03-20 04:12:50 +08:00
Title = m,
2015-01-20 20:05:38 +08:00
IcoPath = "Images/cmd.png",
2016-01-07 05:34:42 +08:00
Action = c =>
2014-03-20 04:12:50 +08:00
{
ExecuteCMD(m);
2014-03-20 04:12:50 +08:00
return true;
}
2014-03-20 04:12:50 +08:00
}));
}
}
catch (Exception e)
{
Log.Error(e);
}
return results;
2014-01-03 23:52:36 +08:00
}
2014-01-03 18:16:05 +08:00
}
2015-01-20 20:05:38 +08:00
private List<Result> GetHistoryCmds(string cmd, Result result)
{
IEnumerable<Result> history = _settings.CMDHistory.Where(o => o.Key.Contains(cmd))
2015-01-20 20:05:38 +08:00
.OrderByDescending(o => o.Value)
.Select(m =>
{
if (m.Key == cmd)
{
2015-02-28 18:30:08 +08:00
result.SubTitle = string.Format(context.API.GetTranslation("wox_plugin_cmd_cmd_has_been_executed_times"), m.Value);
2015-01-20 20:05:38 +08:00
return null;
}
var ret = new Result
{
Title = m.Key,
2015-11-08 10:27:37 +08:00
SubTitle = string.Format(context.API.GetTranslation("wox_plugin_cmd_cmd_has_been_executed_times"), m.Value),
2015-01-20 20:05:38 +08:00
IcoPath = "Images/cmd.png",
2016-01-07 05:34:42 +08:00
Action = c =>
2015-01-20 20:05:38 +08:00
{
ExecuteCMD(m.Key);
2015-01-20 20:05:38 +08:00
return true;
}
2015-01-20 20:05:38 +08:00
};
return ret;
}).Where(o => o != null).Take(4);
return history.ToList();
}
private Result GetCurrentCmd(string cmd)
{
Result result = new Result
{
Title = cmd,
Score = 5000,
2015-02-28 18:30:08 +08:00
SubTitle = context.API.GetTranslation("wox_plugin_cmd_execute_through_shell"),
2015-01-20 20:05:38 +08:00
IcoPath = "Images/cmd.png",
2016-01-07 05:34:42 +08:00
Action = c =>
2015-01-20 20:05:38 +08:00
{
ExecuteCMD(cmd);
2015-01-20 20:05:38 +08:00
return true;
}
2015-01-20 20:05:38 +08:00
};
return result;
}
2015-11-08 10:27:37 +08:00
private List<Result> ResultsFromlHistory()
2015-01-20 20:05:38 +08:00
{
IEnumerable<Result> history = _settings.CMDHistory.OrderByDescending(o => o.Value)
2015-01-20 20:05:38 +08:00
.Select(m => new Result
{
Title = m.Key,
2015-11-08 10:27:37 +08:00
SubTitle = string.Format(context.API.GetTranslation("wox_plugin_cmd_cmd_has_been_executed_times"), m.Value),
2015-01-20 20:05:38 +08:00
IcoPath = "Images/cmd.png",
2016-01-07 05:34:42 +08:00
Action = c =>
2015-01-20 20:05:38 +08:00
{
ExecuteCMD(m.Key);
2015-01-20 20:05:38 +08:00
return true;
}
2015-01-20 20:05:38 +08:00
}).Take(5);
return history.ToList();
}
private void ExecuteCMD(string cmd, bool runAsAdministrator = false)
{
var arguments = _settings.LeaveCmdOpen ? $"/k {cmd}" : $"/c {cmd} & pause";
var info = new ProcessStartInfo
{
UseShellExecute = true,
FileName = "cmd.exe",
Arguments = arguments,
Verb = runAsAdministrator ? "runas" : ""
};
try
{
Process.Start(info);
_settings.AddCmdHistory(cmd);
}
catch (FileNotFoundException e)
{
MessageBox.Show($"Command not found: {e.Message}");
}
}
public void Init(PluginInitContext context)
2014-01-03 18:16:05 +08:00
{
this.context = context;
context.API.GlobalKeyboardEvent += API_GlobalKeyboardEvent;
}
bool API_GlobalKeyboardEvent(int keyevent, int vkcode, SpecialKeyState state)
{
if (_settings.ReplaceWinR)
{
if (keyevent == (int)KeyEvent.WM_KEYDOWN && vkcode == (int)Keys.R && state.WinPressed)
{
WinRStroked = true;
OnWinRPressed();
return false;
}
if (keyevent == (int)KeyEvent.WM_KEYUP && WinRStroked && vkcode == (int)Keys.LWin)
{
WinRStroked = false;
keyboardSimulator.ModifiedKeyStroke(VirtualKeyCode.LWIN, VirtualKeyCode.CONTROL);
return false;
}
}
return true;
}
private void OnWinRPressed()
{
context.API.ShowApp();
2015-11-29 16:50:17 +08:00
context.API.ChangeQuery($"{context.CurrentPluginMetadata.ActionKeywords[0]}{Plugin.Query.TermSeperater}");
2014-01-03 23:52:36 +08:00
}
public Control CreateSettingPanel()
{
return new CMDSetting(_settings);
}
2015-01-07 18:51:11 +08:00
2015-02-07 20:17:49 +08:00
public string GetTranslatedPluginTitle()
{
return context.API.GetTranslation("wox_plugin_cmd_plugin_name");
}
public string GetTranslatedPluginDescription()
{
return context.API.GetTranslation("wox_plugin_cmd_plugin_description");
}
2015-11-03 08:34:27 +08:00
public bool IsInstantQuery(string query) => false;
2015-02-05 18:43:05 +08:00
public List<Result> LoadContextMenus(Result selectedResult)
{
2016-01-07 05:34:42 +08:00
return new List<Result>
{
new Result
{
2015-02-28 18:30:08 +08:00
Title = context.API.GetTranslation("wox_plugin_cmd_run_as_administrator"),
Action = c =>
{
context.API.HideApp();
ExecuteCMD(selectedResult.Title, true);
return true;
},
IcoPath = "Images/cmd.png"
}
};
}
2014-01-03 18:16:05 +08:00
}
}