2014-01-03 18:16:05 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2016-01-04 07:18:51 +08:00
|
|
|
|
using System.Diagnostics;
|
2014-01-26 11:01:13 +08:00
|
|
|
|
using System.IO;
|
2014-01-03 18:16:05 +08:00
|
|
|
|
using System.Linq;
|
2016-05-25 08:00:10 +08:00
|
|
|
|
using System.Windows;
|
2015-01-05 22:41:17 +08:00
|
|
|
|
using WindowsInput;
|
2016-06-24 05:55:38 +08:00
|
|
|
|
using WindowsInput.Native;
|
2015-01-05 22:41:17 +08:00
|
|
|
|
using Wox.Infrastructure.Hotkey;
|
2015-11-02 03:47:20 +08:00
|
|
|
|
using Wox.Infrastructure.Logger;
|
2016-04-21 08:53:21 +08:00
|
|
|
|
using Wox.Infrastructure.Storage;
|
2016-05-25 08:00:10 +08:00
|
|
|
|
using Application = System.Windows.Application;
|
2014-07-04 15:34:31 +08:00
|
|
|
|
using Control = System.Windows.Controls.Control;
|
2016-05-25 08:00:10 +08:00
|
|
|
|
using Keys = System.Windows.Forms.Keys;
|
2014-01-03 18:16:05 +08:00
|
|
|
|
|
2016-06-24 05:53:30 +08:00
|
|
|
|
namespace Wox.Plugin.Shell
|
2014-01-03 18:16:05 +08:00
|
|
|
|
{
|
2016-06-24 05:53:30 +08:00
|
|
|
|
public class Main : IPlugin, ISettingProvider, IPluginI18n, IContextMenu, ISavable
|
2014-01-03 18:16:05 +08:00
|
|
|
|
{
|
2016-05-20 06:44:08 +08:00
|
|
|
|
private const string Image = "Images/shell.png";
|
2016-06-24 05:53:30 +08:00
|
|
|
|
private PluginInitContext _context;
|
|
|
|
|
private bool _winRStroked;
|
|
|
|
|
private readonly KeyboardSimulator _keyboardSimulator = new KeyboardSimulator(new InputSimulator());
|
2016-04-21 08:53:21 +08:00
|
|
|
|
|
2016-05-19 16:04:31 +08:00
|
|
|
|
private readonly Settings _settings;
|
|
|
|
|
private readonly PluginJsonStorage<Settings> _storage;
|
2016-04-21 08:53:21 +08:00
|
|
|
|
|
2016-06-24 05:53:30 +08:00
|
|
|
|
public Main()
|
2016-04-21 08:53:21 +08:00
|
|
|
|
{
|
2016-05-19 16:04:31 +08:00
|
|
|
|
_storage = new PluginJsonStorage<Settings>();
|
2016-04-21 08:53:21 +08:00
|
|
|
|
_settings = _storage.Load();
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-26 17:47:35 +08:00
|
|
|
|
public void Save()
|
2016-04-21 08:53:21 +08:00
|
|
|
|
{
|
|
|
|
|
_storage.Save();
|
|
|
|
|
}
|
2014-01-26 11:01:13 +08:00
|
|
|
|
|
2016-05-26 17:47:35 +08:00
|
|
|
|
|
2015-01-03 15:20:34 +08:00
|
|
|
|
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>();
|
2015-11-02 03:47:20 +08:00
|
|
|
|
string cmd = query.Search;
|
|
|
|
|
if (string.IsNullOrEmpty(cmd))
|
2014-01-26 18:06:38 +08:00
|
|
|
|
{
|
2015-11-08 10:27:37 +08:00
|
|
|
|
return ResultsFromlHistory();
|
2014-01-26 18:06:38 +08:00
|
|
|
|
}
|
2015-11-02 03:47:20 +08:00
|
|
|
|
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);
|
2015-01-27 22:59:03 +08:00
|
|
|
|
|
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;
|
|
|
|
|
}
|
2015-11-02 03:47:20 +08:00
|
|
|
|
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,
|
2016-05-20 06:44:08 +08:00
|
|
|
|
IcoPath = Image,
|
2016-01-07 05:34:42 +08:00
|
|
|
|
Action = c =>
|
2014-03-20 04:12:50 +08:00
|
|
|
|
{
|
2016-05-20 07:03:12 +08:00
|
|
|
|
Execute(m);
|
2014-03-20 04:12:50 +08:00
|
|
|
|
return true;
|
2015-02-07 23:49:46 +08:00
|
|
|
|
}
|
2014-03-20 04:12:50 +08:00
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-11-02 03:47:20 +08:00
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
2016-05-16 00:03:06 +08:00
|
|
|
|
Log.Exception(e);
|
2015-11-02 03:47:20 +08:00
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
|
{
|
2016-04-21 08:53:21 +08:00
|
|
|
|
IEnumerable<Result> history = _settings.Count.Where(o => o.Key.Contains(cmd))
|
2015-01-20 20:05:38 +08:00
|
|
|
|
.OrderByDescending(o => o.Value)
|
|
|
|
|
.Select(m =>
|
|
|
|
|
{
|
|
|
|
|
if (m.Key == cmd)
|
|
|
|
|
{
|
2016-06-24 05:53:30 +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,
|
2016-06-24 05:53:30 +08:00
|
|
|
|
SubTitle = string.Format(_context.API.GetTranslation("wox_plugin_cmd_cmd_has_been_executed_times"), m.Value),
|
2016-05-20 06:44:08 +08:00
|
|
|
|
IcoPath = Image,
|
2016-01-07 05:34:42 +08:00
|
|
|
|
Action = c =>
|
2015-01-20 20:05:38 +08:00
|
|
|
|
{
|
2016-05-20 07:03:12 +08:00
|
|
|
|
Execute(m.Key);
|
2015-01-20 20:05:38 +08:00
|
|
|
|
return true;
|
2015-02-07 23:49:46 +08:00
|
|
|
|
}
|
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,
|
2016-06-24 05:53:30 +08:00
|
|
|
|
SubTitle = _context.API.GetTranslation("wox_plugin_cmd_execute_through_shell"),
|
2016-05-20 06:44:08 +08:00
|
|
|
|
IcoPath = Image,
|
2016-01-07 05:34:42 +08:00
|
|
|
|
Action = c =>
|
2015-01-20 20:05:38 +08:00
|
|
|
|
{
|
2016-05-20 07:03:12 +08:00
|
|
|
|
Execute(cmd);
|
2015-01-20 20:05:38 +08:00
|
|
|
|
return true;
|
2015-02-07 23:49:46 +08:00
|
|
|
|
}
|
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
|
|
|
|
{
|
2016-04-21 08:53:21 +08:00
|
|
|
|
IEnumerable<Result> history = _settings.Count.OrderByDescending(o => o.Value)
|
2015-01-20 20:05:38 +08:00
|
|
|
|
.Select(m => new Result
|
|
|
|
|
{
|
|
|
|
|
Title = m.Key,
|
2016-06-24 05:53:30 +08:00
|
|
|
|
SubTitle = string.Format(_context.API.GetTranslation("wox_plugin_cmd_cmd_has_been_executed_times"), m.Value),
|
2016-05-20 06:44:08 +08:00
|
|
|
|
IcoPath = Image,
|
2016-01-07 05:34:42 +08:00
|
|
|
|
Action = c =>
|
2015-01-20 20:05:38 +08:00
|
|
|
|
{
|
2016-05-20 07:03:12 +08:00
|
|
|
|
Execute(m.Key);
|
2015-01-20 20:05:38 +08:00
|
|
|
|
return true;
|
2015-02-07 23:49:46 +08:00
|
|
|
|
}
|
2015-01-20 20:05:38 +08:00
|
|
|
|
}).Take(5);
|
|
|
|
|
return history.ToList();
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-20 07:03:12 +08:00
|
|
|
|
private void Execute(string command, bool runAsAdministrator = false)
|
2014-01-26 11:01:13 +08:00
|
|
|
|
{
|
2016-05-19 16:04:31 +08:00
|
|
|
|
command = command.Trim();
|
|
|
|
|
command = Environment.ExpandEnvironmentVariables(command);
|
|
|
|
|
|
|
|
|
|
ProcessStartInfo info;
|
2016-06-24 05:53:30 +08:00
|
|
|
|
if (_settings.Shell == Shell.Cmd)
|
2015-12-14 08:29:13 +08:00
|
|
|
|
{
|
2016-05-19 16:04:31 +08:00
|
|
|
|
var arguments = _settings.LeaveShellOpen ? $"/k \"{command}\"" : $"/c \"{command}\" & pause";
|
|
|
|
|
info = new ProcessStartInfo
|
|
|
|
|
{
|
|
|
|
|
FileName = "cmd.exe",
|
|
|
|
|
Arguments = arguments,
|
|
|
|
|
};
|
|
|
|
|
}
|
2016-05-20 07:03:12 +08:00
|
|
|
|
else if (_settings.Shell == Shell.Powershell)
|
2016-05-19 16:04:31 +08:00
|
|
|
|
{
|
2016-05-20 07:03:12 +08:00
|
|
|
|
string arguments;
|
|
|
|
|
if (_settings.LeaveShellOpen)
|
2016-05-19 16:04:31 +08:00
|
|
|
|
{
|
2016-05-20 07:03:12 +08:00
|
|
|
|
arguments = $"-NoExit \"{command}\"";
|
2016-05-19 16:04:31 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
2016-05-20 07:03:12 +08:00
|
|
|
|
{
|
|
|
|
|
arguments = $"\"{command} ; Read-Host -Prompt \\\"Press Enter to continue\\\"\"";
|
|
|
|
|
}
|
|
|
|
|
info = new ProcessStartInfo
|
|
|
|
|
{
|
|
|
|
|
FileName = "powershell.exe",
|
|
|
|
|
Arguments = arguments
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
else if (_settings.Shell == Shell.RunCommand)
|
|
|
|
|
{
|
2016-05-25 08:00:10 +08:00
|
|
|
|
var parts = command.Split(new[] { ' ' }, 2);
|
2016-05-20 07:03:12 +08:00
|
|
|
|
if (parts.Length == 2)
|
2016-05-19 16:04:31 +08:00
|
|
|
|
{
|
2016-05-20 06:28:13 +08:00
|
|
|
|
var filename = parts[0];
|
|
|
|
|
if (ExistInPath(filename))
|
|
|
|
|
{
|
|
|
|
|
var arguemtns = parts[1];
|
|
|
|
|
info = new ProcessStartInfo
|
|
|
|
|
{
|
|
|
|
|
FileName = filename,
|
|
|
|
|
Arguments = arguemtns
|
|
|
|
|
};
|
|
|
|
|
}
|
2016-05-20 07:03:12 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
info = new ProcessStartInfo(command);
|
|
|
|
|
}
|
2016-05-19 16:04:31 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2016-05-20 07:03:12 +08:00
|
|
|
|
info = new ProcessStartInfo(command);
|
2016-05-19 16:04:31 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-05-20 07:03:12 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-19 16:04:31 +08:00
|
|
|
|
|
|
|
|
|
info.UseShellExecute = true;
|
|
|
|
|
info.WorkingDirectory = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
|
|
|
|
|
info.Verb = runAsAdministrator ? "runas" : "";
|
|
|
|
|
|
2016-01-04 07:18:51 +08:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
Process.Start(info);
|
2016-05-19 16:04:31 +08:00
|
|
|
|
_settings.AddCmdHistory(command);
|
2015-12-14 08:29:13 +08:00
|
|
|
|
}
|
2016-01-04 07:18:51 +08:00
|
|
|
|
catch (FileNotFoundException e)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show($"Command not found: {e.Message}");
|
|
|
|
|
}
|
2014-01-26 11:01:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-05-20 06:28:13 +08:00
|
|
|
|
private bool ExistInPath(string filename)
|
2016-05-19 16:04:31 +08:00
|
|
|
|
{
|
|
|
|
|
if (File.Exists(filename))
|
|
|
|
|
{
|
2016-05-20 06:28:13 +08:00
|
|
|
|
return true;
|
2016-05-19 16:04:31 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
var values = Environment.GetEnvironmentVariable("PATH");
|
|
|
|
|
if (values != null)
|
|
|
|
|
{
|
|
|
|
|
foreach (var path in values.Split(';'))
|
|
|
|
|
{
|
2016-05-20 06:28:13 +08:00
|
|
|
|
var path1 = Path.Combine(path, filename);
|
|
|
|
|
var path2 = Path.Combine(path, filename + ".exe");
|
|
|
|
|
if (File.Exists(path1) || File.Exists(path2))
|
2016-05-19 16:04:31 +08:00
|
|
|
|
{
|
2016-05-20 06:28:13 +08:00
|
|
|
|
return true;
|
2016-05-19 16:04:31 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-05-20 06:28:13 +08:00
|
|
|
|
return false;
|
2016-05-19 16:04:31 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2016-05-20 06:28:13 +08:00
|
|
|
|
return false;
|
2016-05-19 16:04:31 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-03 15:20:34 +08:00
|
|
|
|
public void Init(PluginInitContext context)
|
2014-01-03 18:16:05 +08:00
|
|
|
|
{
|
2016-06-24 05:53:30 +08:00
|
|
|
|
this._context = context;
|
2015-01-08 22:49:42 +08:00
|
|
|
|
context.API.GlobalKeyboardEvent += API_GlobalKeyboardEvent;
|
2015-01-05 22:41:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
2015-01-08 22:49:42 +08:00
|
|
|
|
bool API_GlobalKeyboardEvent(int keyevent, int vkcode, SpecialKeyState state)
|
2015-01-05 22:41:17 +08:00
|
|
|
|
{
|
2016-03-28 10:09:57 +08:00
|
|
|
|
if (_settings.ReplaceWinR)
|
2015-01-05 22:41:17 +08:00
|
|
|
|
{
|
2015-01-08 22:49:42 +08:00
|
|
|
|
if (keyevent == (int)KeyEvent.WM_KEYDOWN && vkcode == (int)Keys.R && state.WinPressed)
|
2015-01-05 22:41:17 +08:00
|
|
|
|
{
|
2016-06-24 05:53:30 +08:00
|
|
|
|
_winRStroked = true;
|
2015-01-05 22:41:17 +08:00
|
|
|
|
OnWinRPressed();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2016-06-24 05:53:30 +08:00
|
|
|
|
if (keyevent == (int)KeyEvent.WM_KEYUP && _winRStroked && vkcode == (int)Keys.LWin)
|
2015-01-05 22:41:17 +08:00
|
|
|
|
{
|
2016-06-24 05:53:30 +08:00
|
|
|
|
_winRStroked = false;
|
2016-06-24 05:55:38 +08:00
|
|
|
|
_keyboardSimulator.ModifiedKeyStroke(VirtualKeyCode.LWIN, VirtualKeyCode.CONTROL);
|
2015-01-05 22:41:17 +08:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-05-25 19:31:00 +08:00
|
|
|
|
return true;
|
2015-01-05 22:41:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void OnWinRPressed()
|
|
|
|
|
{
|
2016-06-24 05:53:30 +08:00
|
|
|
|
_context.API.ChangeQuery($"{_context.CurrentPluginMetadata.ActionKeywords[0]}{Plugin.Query.TermSeperater}");
|
2016-05-25 08:00:10 +08:00
|
|
|
|
Application.Current.MainWindow.Visibility = Visibility.Visible;
|
2014-01-03 23:52:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
2014-07-04 15:34:31 +08:00
|
|
|
|
public Control CreateSettingPanel()
|
|
|
|
|
{
|
2016-03-28 10:09:57 +08:00
|
|
|
|
return new CMDSetting(_settings);
|
2014-07-04 15:34:31 +08:00
|
|
|
|
}
|
2015-01-07 18:51:11 +08:00
|
|
|
|
|
2015-02-07 20:17:49 +08:00
|
|
|
|
public string GetTranslatedPluginTitle()
|
|
|
|
|
{
|
2016-06-24 05:53:30 +08:00
|
|
|
|
return _context.API.GetTranslation("wox_plugin_cmd_plugin_name");
|
2015-02-07 20:17:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string GetTranslatedPluginDescription()
|
|
|
|
|
{
|
2016-06-24 05:53:30 +08:00
|
|
|
|
return _context.API.GetTranslation("wox_plugin_cmd_plugin_description");
|
2015-02-07 20:17:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
2015-02-07 23:49:46 +08:00
|
|
|
|
public List<Result> LoadContextMenus(Result selectedResult)
|
|
|
|
|
{
|
2016-01-07 05:34:42 +08:00
|
|
|
|
return new List<Result>
|
|
|
|
|
{
|
|
|
|
|
new Result
|
2015-02-07 23:49:46 +08:00
|
|
|
|
{
|
2016-06-24 05:53:30 +08:00
|
|
|
|
Title = _context.API.GetTranslation("wox_plugin_cmd_run_as_administrator"),
|
2015-02-07 23:49:46 +08:00
|
|
|
|
Action = c =>
|
|
|
|
|
{
|
2016-05-20 07:03:12 +08:00
|
|
|
|
Execute(selectedResult.Title, true);
|
2015-02-07 23:49:46 +08:00
|
|
|
|
return true;
|
|
|
|
|
},
|
2016-05-20 06:44:08 +08:00
|
|
|
|
IcoPath = Image
|
2015-02-07 23:49:46 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
2014-01-03 18:16:05 +08:00
|
|
|
|
}
|
2016-05-25 19:31:00 +08:00
|
|
|
|
}
|