2020-08-17 10:00:56 -07:00
|
|
|
// Copyright (c) Microsoft Corporation
|
|
|
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
|
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.Globalization;
|
|
|
|
|
using System.IO;
|
2020-11-02 18:33:43 +01:00
|
|
|
using System.IO.Abstractions;
|
2020-08-17 10:00:56 -07:00
|
|
|
using System.Linq;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using System.Windows.Input;
|
2020-10-24 00:05:07 +02:00
|
|
|
using ManagedCommon;
|
2023-08-22 18:16:42 +03:00
|
|
|
using Microsoft.Plugin.Shell.Properties;
|
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Library;
|
2020-08-17 10:00:56 -07:00
|
|
|
using Wox.Infrastructure.Storage;
|
|
|
|
|
using Wox.Plugin;
|
2022-01-25 20:31:57 +02:00
|
|
|
using Wox.Plugin.Common;
|
2020-10-23 13:06:22 -07:00
|
|
|
using Wox.Plugin.Logger;
|
2020-08-17 10:00:56 -07:00
|
|
|
using Control = System.Windows.Controls.Control;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.Plugin.Shell
|
|
|
|
|
{
|
2023-08-22 18:16:42 +03:00
|
|
|
public class Main : IPlugin, IPluginI18n, ISettingProvider, IContextMenu, ISavable
|
2020-08-17 10:00:56 -07:00
|
|
|
{
|
2020-11-02 18:33:43 +01:00
|
|
|
private static readonly IFileSystem FileSystem = new FileSystem();
|
|
|
|
|
private static readonly IPath Path = FileSystem.Path;
|
|
|
|
|
private static readonly IFile File = FileSystem.File;
|
|
|
|
|
private static readonly IDirectory Directory = FileSystem.Directory;
|
|
|
|
|
|
2020-08-21 12:10:41 -07:00
|
|
|
private readonly ShellPluginSettings _settings;
|
|
|
|
|
private readonly PluginJsonStorage<ShellPluginSettings> _storage;
|
2020-08-17 10:00:56 -07:00
|
|
|
|
|
|
|
|
private string IconPath { get; set; }
|
|
|
|
|
|
2021-02-26 13:21:58 +02:00
|
|
|
public string Name => Properties.Resources.wox_plugin_cmd_plugin_name;
|
|
|
|
|
|
|
|
|
|
public string Description => Properties.Resources.wox_plugin_cmd_plugin_description;
|
|
|
|
|
|
2023-10-11 16:37:15 +02:00
|
|
|
public static string PluginID => "D409510CD0D2481F853690A07E6DC426";
|
|
|
|
|
|
2023-08-22 18:16:42 +03:00
|
|
|
public IEnumerable<PluginAdditionalOption> AdditionalOptions => new List<PluginAdditionalOption>()
|
|
|
|
|
{
|
2023-09-11 13:54:06 +03:00
|
|
|
new PluginAdditionalOption()
|
|
|
|
|
{
|
|
|
|
|
Key = "ShellCommandExecution",
|
|
|
|
|
DisplayLabel = Resources.wox_shell_command_execution,
|
2023-10-11 14:54:49 +02:00
|
|
|
DisplayDescription = Resources.wox_shell_command_execution_description,
|
2023-09-20 19:31:40 +02:00
|
|
|
PluginOptionType = PluginAdditionalOption.AdditionalOptionType.Combobox,
|
2023-10-11 14:54:49 +02:00
|
|
|
ComboBoxItems = new List<KeyValuePair<string, string>>
|
2023-09-11 13:54:06 +03:00
|
|
|
{
|
2023-10-11 14:54:49 +02:00
|
|
|
new KeyValuePair<string, string>(Resources.find_executable_file_and_run_it, "2"),
|
|
|
|
|
new KeyValuePair<string, string>(Resources.run_command_in_command_prompt, "0"),
|
|
|
|
|
new KeyValuePair<string, string>(Resources.run_command_in_powershell, "1"),
|
|
|
|
|
new KeyValuePair<string, string>(Resources.run_command_in_powershell_seven, "6"),
|
|
|
|
|
new KeyValuePair<string, string>(Resources.run_command_in_windows_terminal_cmd, "5"),
|
|
|
|
|
new KeyValuePair<string, string>(Resources.run_command_in_windows_terminal_powershell, "3"),
|
|
|
|
|
new KeyValuePair<string, string>(Resources.run_command_in_windows_terminal_powershell_seven, "4"),
|
2023-09-11 13:54:06 +03:00
|
|
|
},
|
2023-09-20 19:31:40 +02:00
|
|
|
ComboBoxValue = (int)_settings.Shell,
|
2023-09-11 13:54:06 +03:00
|
|
|
},
|
2023-10-11 14:54:49 +02:00
|
|
|
|
|
|
|
|
new PluginAdditionalOption()
|
|
|
|
|
{
|
|
|
|
|
Key = "LeaveShellOpen",
|
|
|
|
|
DisplayLabel = Resources.wox_leave_shell_open,
|
|
|
|
|
Value = _settings.LeaveShellOpen,
|
|
|
|
|
},
|
2023-08-22 18:16:42 +03:00
|
|
|
};
|
|
|
|
|
|
2020-08-17 10:00:56 -07:00
|
|
|
private PluginInitContext _context;
|
|
|
|
|
|
|
|
|
|
public Main()
|
|
|
|
|
{
|
2020-08-21 12:10:41 -07:00
|
|
|
_storage = new PluginJsonStorage<ShellPluginSettings>();
|
2020-08-17 10:00:56 -07:00
|
|
|
_settings = _storage.Load();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Save()
|
|
|
|
|
{
|
|
|
|
|
_storage.Save();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<Result> Query(Query query)
|
|
|
|
|
{
|
2023-11-22 12:46:59 -05:00
|
|
|
ArgumentNullException.ThrowIfNull(query);
|
2020-08-21 12:10:41 -07:00
|
|
|
|
2020-08-17 10:00:56 -07:00
|
|
|
List<Result> results = new List<Result>();
|
|
|
|
|
string cmd = query.Search;
|
|
|
|
|
if (string.IsNullOrEmpty(cmd))
|
|
|
|
|
{
|
|
|
|
|
return ResultsFromlHistory();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
var queryCmd = GetCurrentCmd(cmd);
|
|
|
|
|
results.Add(queryCmd);
|
|
|
|
|
var history = GetHistoryCmds(cmd, queryCmd);
|
|
|
|
|
results.AddRange(history);
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2020-10-01 05:37:46 +02:00
|
|
|
IEnumerable<Result> folderPluginResults = Folder.Main.GetFolderPluginResults(query);
|
2020-08-17 10:00:56 -07:00
|
|
|
results.AddRange(folderPluginResults);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
2020-09-23 16:32:06 -07:00
|
|
|
Log.Exception($"Exception when query for <{query}>", e, GetType());
|
2020-08-17 10:00:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return results;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private List<Result> GetHistoryCmds(string cmd, Result result)
|
|
|
|
|
{
|
2020-08-21 12:10:41 -07:00
|
|
|
IEnumerable<Result> history = _settings.Count.Where(o => o.Key.Contains(cmd, StringComparison.CurrentCultureIgnoreCase))
|
2020-08-17 10:00:56 -07:00
|
|
|
.OrderByDescending(o => o.Value)
|
|
|
|
|
.Select(m =>
|
|
|
|
|
{
|
|
|
|
|
if (m.Key == cmd)
|
|
|
|
|
{
|
2020-10-30 16:43:09 -07:00
|
|
|
// Using CurrentCulture since this is user facing
|
2020-09-08 11:51:24 -07:00
|
|
|
result.SubTitle = Properties.Resources.wox_plugin_cmd_plugin_name + ": " + string.Format(CultureInfo.CurrentCulture, Properties.Resources.wox_plugin_cmd_cmd_has_been_executed_times, m.Value);
|
2020-08-17 10:00:56 -07:00
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var ret = new Result
|
|
|
|
|
{
|
|
|
|
|
Title = m.Key,
|
2020-10-30 16:43:09 -07:00
|
|
|
|
|
|
|
|
// Using CurrentCulture since this is user facing
|
2020-09-08 11:51:24 -07:00
|
|
|
SubTitle = Properties.Resources.wox_plugin_cmd_plugin_name + ": " + string.Format(CultureInfo.CurrentCulture, Properties.Resources.wox_plugin_cmd_cmd_has_been_executed_times, m.Value),
|
2020-08-17 10:00:56 -07:00
|
|
|
IcoPath = IconPath,
|
|
|
|
|
Action = c =>
|
|
|
|
|
{
|
|
|
|
|
Execute(Process.Start, PrepareProcessStartInfo(m.Key));
|
|
|
|
|
return true;
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
return ret;
|
|
|
|
|
}).Where(o => o != null).Take(4);
|
|
|
|
|
return history.ToList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private Result GetCurrentCmd(string cmd)
|
|
|
|
|
{
|
|
|
|
|
Result result = new Result
|
|
|
|
|
{
|
|
|
|
|
Title = cmd,
|
|
|
|
|
Score = 5000,
|
2020-09-08 11:51:24 -07:00
|
|
|
SubTitle = Properties.Resources.wox_plugin_cmd_plugin_name + ": " + Properties.Resources.wox_plugin_cmd_execute_through_shell,
|
2020-08-17 10:00:56 -07:00
|
|
|
IcoPath = IconPath,
|
|
|
|
|
Action = c =>
|
|
|
|
|
{
|
|
|
|
|
Execute(Process.Start, PrepareProcessStartInfo(cmd));
|
|
|
|
|
return true;
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private List<Result> ResultsFromlHistory()
|
|
|
|
|
{
|
|
|
|
|
IEnumerable<Result> history = _settings.Count.OrderByDescending(o => o.Value)
|
|
|
|
|
.Select(m => new Result
|
|
|
|
|
{
|
|
|
|
|
Title = m.Key,
|
2020-10-30 16:43:09 -07:00
|
|
|
|
|
|
|
|
// Using CurrentCulture since this is user facing
|
2020-09-08 11:51:24 -07:00
|
|
|
SubTitle = Properties.Resources.wox_plugin_cmd_plugin_name + ": " + string.Format(CultureInfo.CurrentCulture, Properties.Resources.wox_plugin_cmd_cmd_has_been_executed_times, m.Value),
|
2020-08-17 10:00:56 -07:00
|
|
|
IcoPath = IconPath,
|
|
|
|
|
Action = c =>
|
|
|
|
|
{
|
|
|
|
|
Execute(Process.Start, PrepareProcessStartInfo(m.Key));
|
|
|
|
|
return true;
|
|
|
|
|
},
|
|
|
|
|
}).Take(5);
|
|
|
|
|
return history.ToList();
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-04 11:37:08 +02:00
|
|
|
private ProcessStartInfo PrepareProcessStartInfo(string command, RunAsType runAs = RunAsType.None)
|
2020-08-17 10:00:56 -07:00
|
|
|
{
|
2021-03-04 09:04:31 -08:00
|
|
|
string trimmedCommand = command.Trim();
|
|
|
|
|
command = Environment.ExpandEnvironmentVariables(trimmedCommand);
|
2020-08-17 10:00:56 -07:00
|
|
|
var workingDirectory = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
|
2022-04-04 11:37:08 +02:00
|
|
|
|
|
|
|
|
// Set runAsArg
|
|
|
|
|
string runAsVerbArg = string.Empty;
|
|
|
|
|
if (runAs == RunAsType.OtherUser)
|
|
|
|
|
{
|
|
|
|
|
runAsVerbArg = "runAsUser";
|
|
|
|
|
}
|
|
|
|
|
else if (runAs == RunAsType.Administrator || _settings.RunAsAdministrator)
|
|
|
|
|
{
|
|
|
|
|
runAsVerbArg = "runAs";
|
|
|
|
|
}
|
2020-08-17 10:00:56 -07:00
|
|
|
|
|
|
|
|
ProcessStartInfo info;
|
2020-08-21 12:10:41 -07:00
|
|
|
if (_settings.Shell == ExecutionShell.Cmd)
|
2020-08-17 10:00:56 -07:00
|
|
|
{
|
|
|
|
|
var arguments = _settings.LeaveShellOpen ? $"/k \"{command}\"" : $"/c \"{command}\" & pause";
|
|
|
|
|
|
2022-04-04 11:37:08 +02:00
|
|
|
info = ShellCommand.SetProcessStartInfo("cmd.exe", workingDirectory, arguments, runAsVerbArg);
|
2020-08-17 10:00:56 -07:00
|
|
|
}
|
2020-08-21 12:10:41 -07:00
|
|
|
else if (_settings.Shell == ExecutionShell.Powershell)
|
2020-08-17 10:00:56 -07:00
|
|
|
{
|
|
|
|
|
string arguments;
|
|
|
|
|
if (_settings.LeaveShellOpen)
|
|
|
|
|
{
|
|
|
|
|
arguments = $"-NoExit \"{command}\"";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2023-10-11 14:54:49 +02:00
|
|
|
arguments = $"\"{command} ; Read-Host -Prompt \\\"{Resources.run_plugin_cmd_wait_message}\\\"\"";
|
2020-08-17 10:00:56 -07:00
|
|
|
}
|
|
|
|
|
|
2022-04-04 11:37:08 +02:00
|
|
|
info = ShellCommand.SetProcessStartInfo("powershell.exe", workingDirectory, arguments, runAsVerbArg);
|
2023-05-02 16:35:23 +03:00
|
|
|
}
|
2023-10-11 14:54:49 +02:00
|
|
|
else if (_settings.Shell == ExecutionShell.PowerShellSeven)
|
|
|
|
|
{
|
|
|
|
|
string arguments;
|
|
|
|
|
if (_settings.LeaveShellOpen)
|
|
|
|
|
{
|
|
|
|
|
arguments = $"-NoExit -C \"{command}\"";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
arguments = $"-C \"{command} ; Read-Host -Prompt \\\"{Resources.run_plugin_cmd_wait_message}\\\"\"";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
info = ShellCommand.SetProcessStartInfo("pwsh.exe", workingDirectory, arguments, runAsVerbArg);
|
|
|
|
|
}
|
|
|
|
|
else if (_settings.Shell == ExecutionShell.WindowsTerminalCmd)
|
|
|
|
|
{
|
|
|
|
|
string arguments;
|
|
|
|
|
if (_settings.LeaveShellOpen)
|
|
|
|
|
{
|
|
|
|
|
arguments = $"cmd.exe /k \"{command}\"";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
arguments = $"cmd.exe /c \"{command}\" & pause";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
info = ShellCommand.SetProcessStartInfo("wt.exe", workingDirectory, arguments, runAsVerbArg);
|
|
|
|
|
}
|
|
|
|
|
else if (_settings.Shell == ExecutionShell.WindowsTerminalPowerShell)
|
|
|
|
|
{
|
|
|
|
|
string arguments;
|
|
|
|
|
if (_settings.LeaveShellOpen)
|
|
|
|
|
{
|
|
|
|
|
arguments = $"powershell -NoExit -C \"{command}\"";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
arguments = $"powershell -C \"{command}\"";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
info = ShellCommand.SetProcessStartInfo("wt.exe", workingDirectory, arguments, runAsVerbArg);
|
|
|
|
|
}
|
|
|
|
|
else if (_settings.Shell == ExecutionShell.WindowsTerminalPowerShellSeven)
|
2023-05-02 16:35:23 +03:00
|
|
|
{
|
|
|
|
|
string arguments;
|
|
|
|
|
if (_settings.LeaveShellOpen)
|
|
|
|
|
{
|
2023-10-11 14:54:49 +02:00
|
|
|
arguments = $"pwsh.exe -NoExit -C \"{command}\"";
|
2023-05-02 16:35:23 +03:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2023-10-11 14:54:49 +02:00
|
|
|
arguments = $"pwsh.exe -C \"{command}\"";
|
2023-05-02 16:35:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
info = ShellCommand.SetProcessStartInfo("wt.exe", workingDirectory, arguments, runAsVerbArg);
|
2020-08-17 10:00:56 -07:00
|
|
|
}
|
2020-08-21 12:10:41 -07:00
|
|
|
else if (_settings.Shell == ExecutionShell.RunCommand)
|
2020-08-17 10:00:56 -07:00
|
|
|
{
|
|
|
|
|
// Open explorer if the path is a file or directory
|
|
|
|
|
if (Directory.Exists(command) || File.Exists(command))
|
|
|
|
|
{
|
2022-04-04 11:37:08 +02:00
|
|
|
info = ShellCommand.SetProcessStartInfo("explorer.exe", arguments: command, verb: runAsVerbArg);
|
2020-08-17 10:00:56 -07:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
var parts = command.Split(new[] { ' ' }, 2);
|
|
|
|
|
if (parts.Length == 2)
|
|
|
|
|
{
|
|
|
|
|
var filename = parts[0];
|
|
|
|
|
if (ExistInPath(filename))
|
|
|
|
|
{
|
|
|
|
|
var arguments = parts[1];
|
2023-08-22 18:16:42 +03:00
|
|
|
if (_settings.LeaveShellOpen)
|
|
|
|
|
{
|
|
|
|
|
// Wrap the command in a cmd.exe process
|
|
|
|
|
info = ShellCommand.SetProcessStartInfo("cmd.exe", workingDirectory, $"/k \"{filename} {arguments}\"", runAsVerbArg);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
info = ShellCommand.SetProcessStartInfo(filename, workingDirectory, arguments, runAsVerbArg);
|
|
|
|
|
}
|
2020-08-17 10:00:56 -07:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2023-08-22 18:16:42 +03:00
|
|
|
if (_settings.LeaveShellOpen)
|
|
|
|
|
{
|
|
|
|
|
// Wrap the command in a cmd.exe process
|
|
|
|
|
info = ShellCommand.SetProcessStartInfo("cmd.exe", workingDirectory, $"/k \"{command}\"", runAsVerbArg);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
info = ShellCommand.SetProcessStartInfo(command, verb: runAsVerbArg);
|
|
|
|
|
}
|
2020-08-17 10:00:56 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2023-08-22 18:16:42 +03:00
|
|
|
if (_settings.LeaveShellOpen)
|
|
|
|
|
{
|
|
|
|
|
// Wrap the command in a cmd.exe process
|
|
|
|
|
info = ShellCommand.SetProcessStartInfo("cmd.exe", workingDirectory, $"/k \"{command}\"", runAsVerbArg);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
info = ShellCommand.SetProcessStartInfo(command, verb: runAsVerbArg);
|
|
|
|
|
}
|
2020-08-17 10:00:56 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
info.UseShellExecute = true;
|
|
|
|
|
|
2021-03-04 09:04:31 -08:00
|
|
|
_settings.AddCmdHistory(trimmedCommand);
|
2020-08-17 10:00:56 -07:00
|
|
|
|
|
|
|
|
return info;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-04 11:37:08 +02:00
|
|
|
private enum RunAsType
|
|
|
|
|
{
|
|
|
|
|
None,
|
|
|
|
|
Administrator,
|
|
|
|
|
OtherUser,
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-17 10:00:56 -07:00
|
|
|
private void Execute(Func<ProcessStartInfo, Process> startProcess, ProcessStartInfo info)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
startProcess(info);
|
|
|
|
|
}
|
|
|
|
|
catch (FileNotFoundException e)
|
|
|
|
|
{
|
2020-09-08 11:51:24 -07:00
|
|
|
var name = "Plugin: " + Properties.Resources.wox_plugin_cmd_plugin_name;
|
|
|
|
|
var message = $"{Properties.Resources.wox_plugin_cmd_command_not_found}: {e.Message}";
|
2020-08-17 10:00:56 -07:00
|
|
|
_context.API.ShowMsg(name, message);
|
|
|
|
|
}
|
|
|
|
|
catch (Win32Exception e)
|
|
|
|
|
{
|
2020-09-08 11:51:24 -07:00
|
|
|
var name = "Plugin: " + Properties.Resources.wox_plugin_cmd_plugin_name;
|
|
|
|
|
var message = $"{Properties.Resources.wox_plugin_cmd_command_failed}: {e.Message}";
|
2020-08-17 10:00:56 -07:00
|
|
|
_context.API.ShowMsg(name, message);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-21 12:10:41 -07:00
|
|
|
private static bool ExistInPath(string filename)
|
2020-08-17 10:00:56 -07:00
|
|
|
{
|
|
|
|
|
if (File.Exists(filename))
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
var values = Environment.GetEnvironmentVariable("PATH");
|
|
|
|
|
if (values != null)
|
|
|
|
|
{
|
|
|
|
|
foreach (var path in values.Split(';'))
|
|
|
|
|
{
|
|
|
|
|
var path1 = Path.Combine(path, filename);
|
|
|
|
|
var path2 = Path.Combine(path, filename + ".exe");
|
|
|
|
|
if (File.Exists(path1) || File.Exists(path2))
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Init(PluginInitContext context)
|
|
|
|
|
{
|
|
|
|
|
this._context = context;
|
|
|
|
|
_context.API.ThemeChanged += OnThemeChanged;
|
|
|
|
|
UpdateIconPath(_context.API.GetCurrentTheme());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Todo : Update with theme based IconPath
|
|
|
|
|
private void UpdateIconPath(Theme theme)
|
|
|
|
|
{
|
|
|
|
|
if (theme == Theme.Light || theme == Theme.HighContrastWhite)
|
|
|
|
|
{
|
|
|
|
|
IconPath = "Images/shell.light.png";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
IconPath = "Images/shell.dark.png";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void OnThemeChanged(Theme currentTheme, Theme newTheme)
|
|
|
|
|
{
|
|
|
|
|
UpdateIconPath(newTheme);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Control CreateSettingPanel()
|
|
|
|
|
{
|
2020-09-02 15:24:59 -07:00
|
|
|
throw new NotImplementedException();
|
2020-08-17 10:00:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string GetTranslatedPluginTitle()
|
|
|
|
|
{
|
2020-09-02 15:24:59 -07:00
|
|
|
return Properties.Resources.wox_plugin_cmd_plugin_name;
|
2020-08-17 10:00:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string GetTranslatedPluginDescription()
|
|
|
|
|
{
|
2020-09-02 15:24:59 -07:00
|
|
|
return Properties.Resources.wox_plugin_cmd_plugin_description;
|
2020-08-17 10:00:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<ContextMenuResult> LoadContextMenus(Result selectedResult)
|
|
|
|
|
{
|
|
|
|
|
var resultlist = new List<ContextMenuResult>
|
|
|
|
|
{
|
|
|
|
|
new ContextMenuResult
|
|
|
|
|
{
|
|
|
|
|
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
|
2020-09-02 15:24:59 -07:00
|
|
|
Title = Properties.Resources.wox_plugin_cmd_run_as_administrator,
|
2020-08-17 10:00:56 -07:00
|
|
|
Glyph = "\xE7EF",
|
2023-11-20 11:23:26 +01:00
|
|
|
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
|
2020-08-17 10:00:56 -07:00
|
|
|
AcceleratorKey = Key.Enter,
|
|
|
|
|
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
|
|
|
|
|
Action = c =>
|
|
|
|
|
{
|
2022-04-04 11:37:08 +02:00
|
|
|
Execute(Process.Start, PrepareProcessStartInfo(selectedResult.Title, RunAsType.Administrator));
|
|
|
|
|
return true;
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
new ContextMenuResult
|
|
|
|
|
{
|
|
|
|
|
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
|
|
|
|
|
Title = Properties.Resources.wox_plugin_cmd_run_as_user,
|
|
|
|
|
Glyph = "\xE7EE",
|
2023-11-20 11:23:26 +01:00
|
|
|
FontFamily = "Segoe Fluent Icons,Segoe MDL2 Assets",
|
2022-04-04 11:37:08 +02:00
|
|
|
AcceleratorKey = Key.U,
|
|
|
|
|
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
|
|
|
|
|
Action = _ =>
|
|
|
|
|
{
|
|
|
|
|
Execute(Process.Start, PrepareProcessStartInfo(selectedResult.Title, RunAsType.OtherUser));
|
2020-08-17 10:00:56 -07:00
|
|
|
return true;
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return resultlist;
|
|
|
|
|
}
|
2023-08-22 18:16:42 +03:00
|
|
|
|
|
|
|
|
public void UpdateSettings(PowerLauncherPluginSettings settings)
|
|
|
|
|
{
|
|
|
|
|
var leaveShellOpen = false;
|
2023-09-11 13:54:06 +03:00
|
|
|
var shellOption = 2;
|
2023-08-22 18:16:42 +03:00
|
|
|
|
|
|
|
|
if (settings != null && settings.AdditionalOptions != null)
|
|
|
|
|
{
|
|
|
|
|
var optionLeaveShellOpen = settings.AdditionalOptions.FirstOrDefault(x => x.Key == "LeaveShellOpen");
|
|
|
|
|
leaveShellOpen = optionLeaveShellOpen?.Value ?? leaveShellOpen;
|
|
|
|
|
_settings.LeaveShellOpen = leaveShellOpen;
|
2023-09-11 13:54:06 +03:00
|
|
|
|
|
|
|
|
var optionShell = settings.AdditionalOptions.FirstOrDefault(x => x.Key == "ShellCommandExecution");
|
2023-09-20 19:31:40 +02:00
|
|
|
shellOption = optionShell?.ComboBoxValue ?? shellOption;
|
2023-09-11 13:54:06 +03:00
|
|
|
_settings.Shell = (ExecutionShell)shellOption;
|
2023-08-22 18:16:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Save();
|
|
|
|
|
}
|
2020-08-17 10:00:56 -07:00
|
|
|
}
|
|
|
|
|
}
|