mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
159 lines
4.7 KiB
C#
159 lines
4.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Threading;
|
|
using Wox.Core.Exception;
|
|
using Wox.Core.UserSettings;
|
|
using Wox.Infrastructure;
|
|
using Wox.Infrastructure.Http;
|
|
using Wox.Infrastructure.Logger;
|
|
using Wox.Plugin;
|
|
|
|
namespace Wox.Core.Plugin
|
|
{
|
|
/// <summary>
|
|
/// The entry for managing Wox plugins
|
|
/// </summary>
|
|
public static class PluginManager
|
|
{
|
|
public static String DebuggerMode { get; private set; }
|
|
public static IPublicAPI API { get; private set; }
|
|
|
|
private static List<PluginPair> plugins = new List<PluginPair>();
|
|
|
|
/// <summary>
|
|
/// Directories that will hold Wox plugin directory
|
|
/// </summary>
|
|
private static List<string> pluginDirectories = new List<string>();
|
|
|
|
|
|
/// <summary>
|
|
/// Default plugin directory
|
|
/// new plugin will be installed to this directory
|
|
/// </summary>
|
|
public static string DefaultPluginDirectory
|
|
{
|
|
get
|
|
{
|
|
string userProfilePath = Environment.GetEnvironmentVariable("USERPROFILE");
|
|
if (string.IsNullOrEmpty(userProfilePath))
|
|
{
|
|
throw new WoxCritialException("Wox Can't Find Environment Variable UserProfile");
|
|
}
|
|
|
|
return Path.Combine(Path.Combine(userProfilePath, ".Wox"), "Plugins");
|
|
}
|
|
}
|
|
|
|
private static void SetupPluginDirectories()
|
|
{
|
|
pluginDirectories.Clear();
|
|
|
|
pluginDirectories.Add(DefaultPluginDirectory);
|
|
pluginDirectories.Add(
|
|
Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "Plugins"));
|
|
|
|
MakesurePluginDirectoriesExist();
|
|
}
|
|
|
|
private static void MakesurePluginDirectoriesExist()
|
|
{
|
|
foreach (string pluginDirectory in pluginDirectories)
|
|
{
|
|
if (!Directory.Exists(pluginDirectory))
|
|
{
|
|
try
|
|
{
|
|
Directory.CreateDirectory(pluginDirectory);
|
|
}
|
|
catch (System.Exception e)
|
|
{
|
|
Log.Error(e.Message);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Load and init all Wox plugins
|
|
/// </summary>
|
|
public static void Init(IPublicAPI api)
|
|
{
|
|
if (api == null) throw new WoxCritialException("api is null");
|
|
|
|
SetupPluginDirectories();
|
|
API = api;
|
|
plugins.Clear();
|
|
|
|
List<PluginMetadata> pluginMetadatas = PluginConfig.Parse(pluginDirectories);
|
|
plugins.AddRange(new CSharpPluginLoader().LoadPlugin(pluginMetadatas));
|
|
plugins.AddRange(new JsonRPCPluginLoader<PythonPlugin>().LoadPlugin(pluginMetadatas));
|
|
|
|
foreach (PluginPair pluginPair in plugins)
|
|
{
|
|
PluginPair pair = pluginPair;
|
|
ThreadPool.QueueUserWorkItem(o =>
|
|
{
|
|
using (new Timeit("Init Plugin: " + pair.Metadata.Name))
|
|
{
|
|
pair.Plugin.Init(new PluginInitContext()
|
|
{
|
|
CurrentPluginMetadata = pair.Metadata,
|
|
Proxy = HttpProxy.Instance,
|
|
API = API
|
|
});
|
|
}
|
|
})
|
|
;
|
|
}
|
|
}
|
|
|
|
public static void InstallPlugin(string path)
|
|
{
|
|
PluginInstaller.Install(path);
|
|
}
|
|
|
|
public static void Query(Query query)
|
|
{
|
|
QueryDispatcher.QueryDispatcher.Dispatch(query);
|
|
}
|
|
|
|
public static List<PluginPair> AllPlugins
|
|
{
|
|
get
|
|
{
|
|
return plugins;
|
|
}
|
|
}
|
|
|
|
public static bool IsUserPluginQuery(Query query)
|
|
{
|
|
if (string.IsNullOrEmpty(query.ActionName)) return false;
|
|
|
|
return plugins.Any(o => o.Metadata.PluginType == PluginType.User && o.Metadata.ActionKeyword == query.ActionName);
|
|
}
|
|
|
|
public static bool IsSystemPlugin(PluginMetadata metadata)
|
|
{
|
|
return metadata.ActionKeyword == "*";
|
|
}
|
|
|
|
public static void ActivatePluginDebugger(string path)
|
|
{
|
|
DebuggerMode = path;
|
|
}
|
|
|
|
/// <summary>
|
|
/// get specified plugin, return null if not found
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
public static PluginPair GetPlugin(string id)
|
|
{
|
|
return AllPlugins.FirstOrDefault(o => o.Metadata.ID == id);
|
|
}
|
|
}
|
|
}
|