PowerToys/Wox.Plugin.SystemPlugins/CMD/CMD.cs

178 lines
6.2 KiB
C#
Raw Normal View History

2014-01-03 18:16:05 +08:00
using System;
using System.Collections.Generic;
using System.IO;
2014-01-03 18:16:05 +08:00
using System.Linq;
using System.Runtime.Serialization.Formatters.Binary;
2014-01-03 23:52:36 +08:00
using System.Windows.Forms;
using Control = System.Windows.Controls.Control;
2014-01-03 18:16:05 +08:00
namespace Wox.Plugin.SystemPlugins.CMD
2014-01-03 18:16:05 +08:00
{
public class CMD : BaseSystemPlugin,ISettingProvider
2014-01-03 18:16:05 +08:00
{
private PluginInitContext context;
2014-01-15 22:45:02 +08:00
protected override List<Result> QueryInternal(Query query)
2014-01-03 18:16:05 +08:00
{
2014-01-03 23:52:36 +08:00
List<Result> results = new List<Result>();
2014-03-27 17:25:06 +08:00
List<Result> pushedResults = new List<Result>();
if (query.RawQuery == ">")
{
2014-03-23 16:17:41 +08:00
IEnumerable<Result> history = CMDStorage.Instance.CMDHistory.OrderByDescending(o => o.Value)
.Select(m => new Result
{
Title = m.Key,
SubTitle = "this command has been executed " + m.Value + " times",
IcoPath = "Images/cmd.png",
Action = (c) =>
{
ExecuteCmd(m.Key);
2014-02-28 23:21:01 +08:00
return true;
}
}).Take(5);
results.AddRange(history);
}
if (query.RawQuery.StartsWith(">") && query.RawQuery.Length > 1)
2014-01-03 23:52:36 +08:00
{
string cmd = query.RawQuery.Substring(1);
Result result = new Result
{
Title = cmd,
Score = 5000,
SubTitle = "execute command through command shell",
2014-01-03 23:52:36 +08:00
IcoPath = "Images/cmd.png",
Action = (c) =>
2014-01-03 23:52:36 +08:00
{
ExecuteCmd(cmd);
2014-02-28 23:21:01 +08:00
return true;
2014-01-03 23:52:36 +08:00
}
};
2014-03-20 04:12:50 +08:00
try
{
if (File.Exists(cmd) || Directory.Exists(cmd))
{
result.IcoPath = cmd;
}
}
catch (Exception) { }
context.PushResults(query, new List<Result>() { result });
2014-03-27 17:25:06 +08:00
pushedResults.Add(result);
2014-03-23 16:17:41 +08:00
IEnumerable<Result> history = CMDStorage.Instance.CMDHistory.Where(o => o.Key.Contains(cmd))
.OrderByDescending(o => o.Value)
2014-03-23 16:17:41 +08:00
.Select(m =>
{
2014-03-20 04:12:50 +08:00
if (m.Key == cmd)
{
result.SubTitle = "this command has been executed " + m.Value + " times";
return null;
}
var ret = new Result
{
Title = m.Key,
SubTitle = "this command has been executed " + m.Value + " times",
IcoPath = "Images/cmd.png",
Action = (c) =>
{
ExecuteCmd(m.Key);
return true;
}
};
try
{
2014-03-20 04:12:50 +08:00
if (File.Exists(m.Key) || Directory.Exists(m.Key))
{
ret.IcoPath = m.Key;
}
}
2014-03-20 04:12:50 +08:00
catch (Exception) { }
return ret;
}).Where(o => o != null).Take(4);
context.PushResults(query, history.ToList());
2014-03-27 17:25:06 +08:00
pushedResults.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)))
{
basedir = Path.GetDirectoryName(excmd);
var dirn = Path.GetDirectoryName(cmd);
dir = (dirn.EndsWith("/") || dirn.EndsWith(@"\")) ? dirn : cmd.Substring(0, dirn.Length + 1);
}
if (basedir != null)
{
2014-03-27 17:25:06 +08:00
List<string> 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)) && !pushedResults.Any(p => o.Equals(p.Title, StringComparison.OrdinalIgnoreCase))).ToList();
2014-03-20 04:12:50 +08:00
autocomplete.Sort();
2014-03-23 16:17:41 +08:00
results.AddRange(autocomplete.ConvertAll(m => new Result()
{
2014-03-20 04:12:50 +08:00
Title = m,
SubTitle = "",
IcoPath = m,
Action = (c) =>
{
ExecuteCmd(m);
return true;
}
}));
}
}
catch (Exception) { }
2014-01-03 23:52:36 +08:00
}
return results;
2014-01-03 18:16:05 +08:00
}
private void ExecuteCmd(string cmd)
{
if (context.ShellRun(cmd))
2014-03-23 16:17:41 +08:00
CMDStorage.Instance.AddCmdHistory(cmd);
}
2014-01-15 22:45:02 +08:00
protected override void InitInternal(PluginInitContext context)
2014-01-03 18:16:05 +08:00
{
this.context = context;
2014-01-03 23:52:36 +08:00
}
public override string ID
{
get { return "D409510CD0D2481F853690A07E6DC426"; }
}
public override string Name
{
get { return "Shell"; }
}
public override string IcoPath
{
get { return @"Images\cmd.png"; }
}
public override string Description
{
2014-06-30 21:31:13 +08:00
get { return "Provide executing commands from Wox. Commands should start with >"; }
}
public Control CreateSettingPanel()
{
return new CMDSetting();
}
2014-01-03 18:16:05 +08:00
}
}