2024-05-06 23:47:15 +08:00
using System ;
using System.Collections.Generic ;
2025-01-25 00:53:35 +08:00
using System.IO ;
2024-05-06 23:47:15 +08:00
using System.Linq ;
2025-01-25 00:53:35 +08:00
using System.Net.Http ;
2024-05-06 23:47:15 +08:00
using System.Reflection ;
2025-01-25 00:53:35 +08:00
using System.Runtime.InteropServices ;
using System.Threading ;
2024-05-06 23:47:15 +08:00
using System.Threading.Tasks ;
2025-01-25 00:53:35 +08:00
using System.Windows ;
2024-05-06 23:47:15 +08:00
using System.Windows.Controls ;
2025-01-25 00:53:35 +08:00
using Community.PowerToys.Run.Plugin.Everything.ContextMenu ;
2024-05-06 23:47:15 +08:00
using Community.PowerToys.Run.Plugin.Everything.Properties ;
2024-04-19 15:37:15 +08:00
using Microsoft.PowerToys.Settings.UI.Library ;
2025-01-25 00:53:35 +08:00
using NLog ;
using PowerLauncher.Plugin ;
using Wox.Infrastructure.Storage ;
2024-05-06 23:47:15 +08:00
using Wox.Plugin ;
using Wox.Plugin.Logger ;
using static Community . PowerToys . Run . Plugin . Everything . Interop . NativeMethods ;
2023-01-07 02:20:22 +08:00
namespace Community.PowerToys.Run.Plugin.Everything
2022-03-09 00:39:34 +08:00
{
2025-01-25 00:53:35 +08:00
public class Main : IPlugin , IDisposable , IDelayedExecutionPlugin , IContextMenu , ISettingProvider , IPluginI18n , ISavable
2022-03-09 00:39:34 +08:00
{
2023-10-11 23:20:25 +08:00
public static string PluginID = > "A86867E2D932459CBD77D176373DD657" ;
public string Name = > Resources . plugin_name ;
public string Description = > Resources . plugin_description ;
2024-03-25 14:25:51 +08:00
private readonly Settings _setting = new ( ) ;
2025-01-25 00:53:35 +08:00
private readonly PluginJsonStorage < Update . UpdateSettings > _storage = new ( ) ;
private readonly bool _isArm = RuntimeInformation . ProcessArchitecture = = Architecture . Arm64 ;
2024-03-25 14:25:51 +08:00
private Everything _everything ;
2024-01-11 00:33:19 +08:00
private ContextMenuLoader _contextMenuLoader ;
2025-01-25 00:53:35 +08:00
private CancellationTokenSource cts = new ( ) ;
2022-12-02 00:31:07 +08:00
private bool _disposed ;
2022-08-19 00:01:06 +08:00
2024-05-25 21:11:41 +08:00
public IEnumerable < PluginAdditionalOption > AdditionalOptions = >
[
2024-01-11 00:33:19 +08:00
new ( )
2023-10-04 10:13:24 +08:00
{
Key = nameof ( Settings . Context ) ,
DisplayLabel = Resources . Context ,
DisplayDescription = Resources . Context_Description ,
PluginOptionType = PluginAdditionalOption . AdditionalOptionType . Textbox ,
TextValue = _setting . Context ,
} ,
2024-01-11 00:33:19 +08:00
new ( )
2023-10-04 10:13:24 +08:00
{
Key = nameof ( Settings . Sort ) ,
DisplayLabel = Resources . Sort ,
DisplayDescription = Resources . Sort_Description ,
PluginOptionType = PluginAdditionalOption . AdditionalOptionType . Combobox ,
2024-12-18 11:35:32 +08:00
ComboBoxItems = Enum . GetValues < Sort > ( ) . Cast < int > ( ) . Select ( v = > new KeyValuePair < string , string > ( ( ( Sort ) v ) . ToString ( ) , v + string . Empty ) ) . ToList ( ) ,
2023-10-04 10:13:24 +08:00
ComboBoxValue = ( int ) _setting . Sort ,
} ,
2024-01-11 00:33:19 +08:00
new ( )
2023-10-04 10:13:24 +08:00
{
Key = nameof ( Settings . Max ) ,
DisplayLabel = Resources . Max ,
DisplayDescription = Resources . Max_Description ,
PluginOptionType = PluginAdditionalOption . AdditionalOptionType . Numberbox ,
NumberValue = _setting . Max ,
} ,
2024-01-11 00:33:19 +08:00
new ( )
2024-07-03 22:00:35 +08:00
{
Key = nameof ( Settings . Prefix ) ,
DisplayLabel = Resources . Prefix ,
DisplayDescription = Resources . Prefix_Description ,
PluginOptionType = PluginAdditionalOption . AdditionalOptionType . Textbox ,
TextValue = _setting . Prefix ,
} ,
new ( )
2024-07-05 00:48:19 +08:00
{
Key = nameof ( Settings . EverythingPath ) ,
DisplayLabel = Resources . EverythingPath ,
DisplayDescription = Resources . EverythingPath_Description ,
PluginOptionType = PluginAdditionalOption . AdditionalOptionType . Textbox ,
TextValue = _setting . EverythingPath ,
} ,
new ( )
2024-10-13 01:04:46 +08:00
{
Key = nameof ( Settings . CustomProgram ) ,
DisplayLabel = Resources . CustomProgram ,
DisplayDescription = Resources . CustomProgram_Description ,
PluginOptionType = PluginAdditionalOption . AdditionalOptionType . Textbox ,
TextValue = _setting . CustomProgram ,
} ,
new ( )
{
Key = nameof ( Settings . CustomArg ) ,
DisplayLabel = Resources . CustomArg ,
DisplayDescription = Resources . CustomArg_Description ,
PluginOptionType = PluginAdditionalOption . AdditionalOptionType . Textbox ,
TextValue = _setting . CustomArg ,
} ,
new ( )
2022-08-30 22:37:21 +08:00
{
2022-12-11 02:20:09 +08:00
Key = nameof ( Settings . Copy ) ,
DisplayLabel = Resources . SwapCopy ,
DisplayDescription = Resources . SwapCopy_Description ,
2023-10-11 23:20:25 +08:00
Value = _setting . Copy ,
2022-08-30 22:37:21 +08:00
} ,
2024-01-11 00:33:19 +08:00
new ( )
2024-07-20 19:27:04 +08:00
{
Key = nameof ( Settings . EnvVar ) ,
DisplayLabel = Resources . EnvVar ,
DisplayDescription = Resources . EnvVar_Description ,
Value = _setting . EnvVar ,
} ,
new ( )
2022-03-09 00:39:34 +08:00
{
2022-12-11 02:20:09 +08:00
Key = nameof ( Settings . MatchPath ) ,
DisplayLabel = Resources . Match_path ,
DisplayDescription = Resources . Match_path_Description ,
2023-10-11 23:20:25 +08:00
Value = _setting . MatchPath ,
2022-03-09 00:39:34 +08:00
} ,
2024-01-11 00:33:19 +08:00
new ( )
2022-06-01 17:41:33 +08:00
{
2022-12-11 02:20:09 +08:00
Key = nameof ( Settings . Preview ) ,
DisplayLabel = Resources . Preview ,
DisplayDescription = Resources . Preview_Description ,
2023-10-11 23:20:25 +08:00
Value = _setting . Preview ,
2022-12-02 00:31:07 +08:00
} ,
2024-01-11 00:33:19 +08:00
new ( )
2022-12-02 00:31:07 +08:00
{
2022-12-11 02:20:09 +08:00
Key = nameof ( Settings . QueryText ) ,
DisplayLabel = Resources . QueryText ,
DisplayDescription = Resources . QueryText_Description ,
2023-10-11 23:20:25 +08:00
Value = _setting . QueryText ,
2022-12-02 00:31:07 +08:00
} ,
2024-01-11 00:33:19 +08:00
new ( )
2022-12-02 00:31:07 +08:00
{
2022-12-11 02:20:09 +08:00
Key = nameof ( Settings . RegEx ) ,
DisplayLabel = Resources . RegEx ,
DisplayDescription = Resources . RegEx_Description ,
2023-10-11 23:20:25 +08:00
Value = _setting . RegEx ,
2022-06-01 17:41:33 +08:00
} ,
2024-01-11 00:33:19 +08:00
new ( )
{
2024-07-20 19:27:04 +08:00
Key = nameof ( Settings . ShowMore ) ,
DisplayLabel = Resources . ShowMore ,
DisplayDescription = Resources . ShowMore_Description ,
Value = _setting . ShowMore ,
2024-01-11 00:33:19 +08:00
} ,
new ( )
2022-08-19 00:01:06 +08:00
{
2022-12-11 16:23:48 +08:00
Key = nameof ( Settings . Updates ) ,
DisplayLabel = Resources . Updates ,
2022-12-05 23:31:43 +08:00
DisplayDescription = $"v{Assembly.GetExecutingAssembly().GetName().Version}" ,
2023-10-11 23:20:25 +08:00
Value = _setting . Updates ,
2022-08-19 00:01:06 +08:00
} ,
2024-05-25 21:11:41 +08:00
new ( )
{
2025-01-25 00:53:35 +08:00
Key = nameof ( Settings . LoggingLevel ) ,
DisplayLabel = "Log Level" ,
2024-05-25 21:11:41 +08:00
PluginOptionType = PluginAdditionalOption . AdditionalOptionType . Combobox ,
2025-01-25 00:53:35 +08:00
ComboBoxItems = LogLevel . AllLoggingLevels . Select ( d = > new KeyValuePair < string , string > ( d . ToString ( ) , d . Ordinal + string . Empty ) ) . ToList ( ) ,
ComboBoxValue = _setting . LoggingLevel . Ordinal ,
2024-05-25 21:11:41 +08:00
} ,
] ;
2022-03-09 00:39:34 +08:00
2024-03-25 14:25:51 +08:00
public void Init ( PluginInitContext context )
2023-10-04 10:13:24 +08:00
{
2025-01-25 00:53:35 +08:00
string dll = Path . Combine ( Path . GetDirectoryName ( Assembly . GetExecutingAssembly ( ) . Location ) , "Everything64.dll" ) ;
if ( ! File . Exists ( dll ) )
{
MessageBoxResult mbox = MessageBox . Show ( Resources . MissingLib , "EPT: Downloader" , MessageBoxButton . YesNo ) ;
if ( mbox = = MessageBoxResult . Yes )
{
using HttpClient httpClient = new ( ) ;
httpClient . DefaultRequestHeaders . UserAgent . ParseAdd ( "Mozilla/5.0" ) ;
string url = $"https://github.com/lin-ycv/EverythingPowerToys/raw/refs/heads/lib/Everything{(_isArm ? " ARM " : string.Empty)}64.dll" ;
byte [ ] fileContent = httpClient . GetByteArrayAsync ( url ) . Result ;
string fileName = dll ;
File . WriteAllBytes ( fileName , fileContent ) ;
}
else
{
throw new DllNotFoundException ( "EPT: Everything64.dll not found, either press Yes on the download prompt, or manually load in the dll @ %LOCALAPPDATA%\\Microsoft\\PowerToys\\PowerToys Run\\Plugins\\Everything" ) ;
}
}
if ( _setting . LoggingLevel < = LogLevel . Debug )
Log . Info ( "EPT: Init" , GetType ( ) ) ;
2023-11-01 08:52:14 +08:00
if ( _setting . Updates )
2025-01-25 00:53:35 +08:00
{
Update . UpdateSettings upSettings ;
upSettings = _storage . Load ( ) ;
Task . Run ( ( ) = > new Update . UpdateChecker ( ) . Async ( Assembly . GetExecutingAssembly ( ) . GetName ( ) . Version , _setting , upSettings , _isArm ) ) ;
}
2024-11-11 22:46:32 +08:00
if ( Everything_GetMinorVersion ( ) < 5 ) _setting . Getfilters ( ) ;
2023-11-01 08:52:14 +08:00
_everything = new Everything ( _setting ) ;
2024-03-25 14:25:51 +08:00
_contextMenuLoader = new ContextMenuLoader ( context , _setting . Context ) ;
_contextMenuLoader . Update ( _setting ) ;
2025-01-25 00:53:35 +08:00
var history = PluginManager . GlobalPlugins . FirstOrDefault ( p = > p . Metadata . ID = = "C88512156BB74580AADF7252E130BA8D" & & ! p . Metadata . Disabled ) ;
if ( history ! = null )
Task . Run ( ( ) = > MessageBox . Show ( Resources . History , "EPT: History Conflict" , MessageBoxButton . OK , MessageBoxImage . Warning ) ) ;
if ( _setting . LoggingLevel < = LogLevel . Debug )
Log . Info ( "EPT: Init Complete" , GetType ( ) ) ;
2023-11-01 08:52:14 +08:00
}
public void UpdateSettings ( PowerLauncherPluginSettings settings )
{
2024-03-25 14:25:51 +08:00
if ( settings . AdditionalOptions ! = null )
2023-11-01 08:52:14 +08:00
{
_setting . Sort = ( Sort ) settings . AdditionalOptions . FirstOrDefault ( x = > x . Key = = nameof ( _setting . Sort ) ) . ComboBoxValue ;
_setting . Max = ( uint ) settings . AdditionalOptions . FirstOrDefault ( x = > x . Key = = nameof ( _setting . Max ) ) . NumberValue ;
_setting . Context = settings . AdditionalOptions . FirstOrDefault ( x = > x . Key = = nameof ( _setting . Context ) ) . TextValue ;
_setting . RegEx = settings . AdditionalOptions . FirstOrDefault ( x = > x . Key = = nameof ( _setting . RegEx ) ) . Value ;
_setting . Preview = settings . AdditionalOptions . FirstOrDefault ( x = > x . Key = = nameof ( _setting . Preview ) ) . Value ;
_setting . MatchPath = settings . AdditionalOptions . FirstOrDefault ( x = > x . Key = = nameof ( _setting . MatchPath ) ) . Value ;
_setting . Copy = settings . AdditionalOptions . FirstOrDefault ( x = > x . Key = = nameof ( _setting . Copy ) ) . Value ;
_setting . QueryText = settings . AdditionalOptions . FirstOrDefault ( x = > x . Key = = nameof ( _setting . QueryText ) ) . Value ;
2024-01-11 00:33:19 +08:00
_setting . EnvVar = settings . AdditionalOptions . FirstOrDefault ( x = > x . Key = = nameof ( _setting . EnvVar ) ) . Value ;
2023-11-01 08:52:14 +08:00
_setting . Updates = settings . AdditionalOptions . FirstOrDefault ( x = > x . Key = = nameof ( _setting . Updates ) ) . Value ;
2024-07-03 22:00:35 +08:00
_setting . Prefix = settings . AdditionalOptions . FirstOrDefault ( x = > x . Key = = nameof ( _setting . Prefix ) ) . TextValue ;
2024-07-05 00:48:19 +08:00
_setting . EverythingPath = settings . AdditionalOptions . FirstOrDefault ( x = > x . Key = = nameof ( _setting . EverythingPath ) ) . TextValue ;
2024-10-13 01:04:46 +08:00
_setting . CustomProgram = settings . AdditionalOptions . FirstOrDefault ( x = > x . Key = = nameof ( _setting . CustomProgram ) ) . TextValue ;
_setting . CustomArg = settings . AdditionalOptions . FirstOrDefault ( x = > x . Key = = nameof ( _setting . CustomArg ) ) . TextValue ;
2024-07-20 19:27:04 +08:00
_setting . ShowMore = settings . AdditionalOptions . FirstOrDefault ( x = > x . Key = = nameof ( _setting . ShowMore ) ) . Value ;
2025-01-25 00:53:35 +08:00
_setting . LoggingLevel = LogLevel . FromOrdinal ( settings . AdditionalOptions . FirstOrDefault ( x = > x . Key = = nameof ( _setting . LoggingLevel ) ) . ComboBoxValue ) ;
2023-11-01 08:52:14 +08:00
2024-03-25 14:25:51 +08:00
_everything ? . UpdateSettings ( _setting ) ;
2024-01-19 14:56:27 +08:00
_contextMenuLoader ? . Update ( _setting ) ;
2023-11-01 08:52:14 +08:00
}
2023-10-04 10:13:24 +08:00
}
2022-03-09 00:39:34 +08:00
public List < Result > Query ( Query query )
{
2025-01-25 00:53:35 +08:00
return null ;
2022-03-09 00:39:34 +08:00
}
2022-05-06 01:53:32 +08:00
public List < Result > Query ( Query query , bool delayedExecution )
2022-03-09 00:39:34 +08:00
{
2024-01-11 00:33:19 +08:00
List < Result > results = [ ] ;
2022-03-09 00:39:34 +08:00
if ( ! string . IsNullOrEmpty ( query . Search ) )
{
2024-05-25 21:11:41 +08:00
string searchQuery = query . Search ;
2022-03-09 00:39:34 +08:00
2022-11-05 00:54:48 +08:00
try
2022-03-09 00:39:34 +08:00
{
2025-01-25 00:53:35 +08:00
cts . Cancel ( ) ;
cts = new ( ) ;
results . AddRange ( _everything . Query ( searchQuery , _setting , cts . Token ) ) ;
}
catch ( OperationCanceledException )
{
if ( _setting . LoggingLevel < = LogLevel . Debug )
Log . Info ( "EPT: Query Cancelled" , GetType ( ) ) ;
2022-11-05 00:54:48 +08:00
}
catch ( System . ComponentModel . Win32Exception )
{
results . Add ( new Result ( )
2022-03-09 00:39:34 +08:00
{
2022-11-05 00:54:48 +08:00
Title = Resources . Everything_not_running ,
SubTitle = Resources . Everything_ini ,
IcoPath = "Images/warning.png" ,
Score = int . MaxValue ,
} ) ;
}
catch ( Exception e )
{
2025-01-25 00:53:35 +08:00
Log . Exception ( $"EPT: Exception! {e.Message}\n" , e , GetType ( ) ) ;
2022-03-09 00:39:34 +08:00
}
}
return results ;
}
protected virtual void Dispose ( bool disposing )
{
2022-12-02 00:31:07 +08:00
if ( ! _disposed )
2022-03-09 00:39:34 +08:00
{
if ( disposing )
{
2025-01-25 00:53:35 +08:00
cts . Cancel ( ) ;
cts . Dispose ( ) ;
2022-03-09 00:39:34 +08:00
}
2022-12-02 00:31:07 +08:00
_disposed = true ;
2022-03-09 00:39:34 +08:00
}
}
public void Dispose ( )
{
// Do not change this code. Put cleanup code in 'Dispose(bool disposing)' method
2022-12-02 00:31:07 +08:00
Dispose ( disposing : true ) ;
2022-03-09 00:39:34 +08:00
GC . SuppressFinalize ( this ) ;
}
2022-05-27 18:28:41 +08:00
2023-11-01 08:52:14 +08:00
public List < ContextMenuResult > LoadContextMenus ( Result selectedResult ) = > _contextMenuLoader . LoadContextMenus ( selectedResult ) ;
public Control CreateSettingPanel ( ) = > throw new NotImplementedException ( ) ;
public string GetTranslatedPluginTitle ( ) = > Resources . plugin_name ;
public string GetTranslatedPluginDescription ( ) = > Resources . plugin_description ;
2025-01-25 00:53:35 +08:00
public void Save ( ) = > _storage . Save ( ) ;
2022-03-09 00:39:34 +08:00
}
}