2024-02-03 23:59:48 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System ;
2024-02-08 05:29:20 +08:00
using System.Diagnostics ;
2024-02-05 21:16:35 +08:00
using System.IO ;
2024-02-03 23:59:48 +08:00
using System.Runtime.InteropServices ;
using System.Runtime.Versioning ;
using Microsoft.Win32 ;
using osu.Framework.Localisation ;
using osu.Framework.Logging ;
using osu.Game.Localisation ;
2024-02-05 20:34:03 +08:00
namespace osu.Desktop.Windows
2024-02-03 23:59:48 +08:00
{
[SupportedOSPlatform("windows")]
2024-02-08 04:45:36 +08:00
public static class WindowsAssociationManager
2024-02-03 23:59:48 +08:00
{
public const string SOFTWARE_CLASSES = @"Software\Classes" ;
/// <summary>
/// Sub key for setting the icon.
/// https://learn.microsoft.com/en-us/windows/win32/com/defaulticon
/// </summary>
public const string DEFAULT_ICON = @"DefaultIcon" ;
/// <summary>
/// Sub key for setting the command line that the shell invokes.
/// https://learn.microsoft.com/en-us/windows/win32/com/shell
/// </summary>
public const string SHELL_OPEN_COMMAND = @"Shell\Open\Command" ;
2024-02-08 05:42:42 +08:00
public static readonly string EXE_PATH = Path . ChangeExtension ( typeof ( WindowsAssociationManager ) . Assembly . Location , ".exe" ) . Replace ( '/' , '\\' ) ;
2024-02-05 21:16:35 +08:00
/// <summary>
/// Program ID prefix used for file associations. Should be relatively short since the full program ID has a 39 character limit,
/// see https://learn.microsoft.com/en-us/windows/win32/com/-progid--key.
/// </summary>
2024-02-08 05:23:59 +08:00
public const string PROGRAM_ID_PREFIX = "osu.File" ;
2024-02-05 21:16:35 +08:00
2024-02-03 23:59:48 +08:00
private static readonly FileAssociation [ ] file_associations =
{
new FileAssociation ( @".osz" , WindowsAssociationManagerStrings . OsuBeatmap , Icons . Lazer ) ,
new FileAssociation ( @".olz" , WindowsAssociationManagerStrings . OsuBeatmap , Icons . Lazer ) ,
new FileAssociation ( @".osr" , WindowsAssociationManagerStrings . OsuReplay , Icons . Lazer ) ,
new FileAssociation ( @".osk" , WindowsAssociationManagerStrings . OsuSkin , Icons . Lazer ) ,
} ;
private static readonly UriAssociation [ ] uri_associations =
{
new UriAssociation ( @"osu" , WindowsAssociationManagerStrings . OsuProtocol , Icons . Lazer ) ,
new UriAssociation ( @"osump" , WindowsAssociationManagerStrings . OsuMultiplayer , Icons . Lazer ) ,
} ;
2024-02-08 05:17:13 +08:00
/// <summary>
/// Installs file and URI associations.
/// </summary>
/// <remarks>
/// Call <see cref="UpdateDescriptions"/> in a timely fashion to keep descriptions up-to-date and localised.
/// </remarks>
public static void InstallAssociations ( )
2024-02-03 23:59:48 +08:00
{
try
{
2024-02-08 05:06:09 +08:00
updateAssociations ( ) ;
2024-02-08 05:17:13 +08:00
updateDescriptions ( null ) ; // write default descriptions in case `UpdateDescriptions()` is not called.
2024-02-08 05:03:16 +08:00
NotifyShellUpdate ( ) ;
2024-02-03 23:59:48 +08:00
}
catch ( Exception e )
{
2024-02-08 05:21:04 +08:00
Logger . Error ( e , @ $"Failed to install file and URI associations: {e.Message}" ) ;
2024-02-03 23:59:48 +08:00
}
}
2024-02-08 05:17:13 +08:00
/// <summary>
/// Updates associations with latest definitions.
/// </summary>
/// <remarks>
/// Call <see cref="UpdateDescriptions"/> in a timely fashion to keep descriptions up-to-date and localised.
/// </remarks>
public static void UpdateAssociations ( )
{
try
{
updateAssociations ( ) ;
NotifyShellUpdate ( ) ;
}
catch ( Exception e )
{
2024-02-08 05:21:04 +08:00
Logger . Error ( e , @"Failed to update file and URI associations." ) ;
2024-02-08 05:17:13 +08:00
}
}
public static void UpdateDescriptions ( LocalisationManager localisationManager )
{
try
{
updateDescriptions ( localisationManager ) ;
NotifyShellUpdate ( ) ;
}
catch ( Exception e )
{
2024-02-08 05:21:04 +08:00
Logger . Error ( e , @"Failed to update file and URI association descriptions." ) ;
2024-02-08 05:17:13 +08:00
}
}
2024-02-08 05:18:12 +08:00
public static void UninstallAssociations ( )
{
try
{
using var classes = Registry . CurrentUser . OpenSubKey ( SOFTWARE_CLASSES , true ) ;
2024-02-08 05:29:20 +08:00
Debug . Assert ( classes ! = null ) ;
2024-02-08 05:18:12 +08:00
foreach ( var association in file_associations )
association . Uninstall ( classes , PROGRAM_ID_PREFIX ) ;
foreach ( var association in uri_associations )
association . Uninstall ( classes ) ;
NotifyShellUpdate ( ) ;
}
catch ( Exception e )
{
2024-02-08 05:21:04 +08:00
Logger . Error ( e , @"Failed to uninstall file and URI associations." ) ;
2024-02-08 05:18:12 +08:00
}
}
2024-02-08 05:06:09 +08:00
/// <summary>
/// Installs or updates associations.
/// </summary>
private static void updateAssociations ( )
{
2024-02-08 05:26:21 +08:00
using var classes = Registry . CurrentUser . OpenSubKey ( SOFTWARE_CLASSES , true ) ;
2024-02-08 05:29:20 +08:00
Debug . Assert ( classes ! = null ) ;
2024-02-08 05:06:09 +08:00
2024-02-08 05:26:21 +08:00
foreach ( var association in file_associations )
association . Install ( classes , EXE_PATH ) ;
2024-02-08 05:06:09 +08:00
2024-02-08 05:26:21 +08:00
foreach ( var association in uri_associations )
association . Install ( classes , EXE_PATH ) ;
2024-02-08 05:06:09 +08:00
}
2024-02-08 04:45:36 +08:00
private static void updateDescriptions ( LocalisationManager ? localisation )
2024-02-03 23:59:48 +08:00
{
2024-02-08 05:03:16 +08:00
using var classes = Registry . CurrentUser . OpenSubKey ( SOFTWARE_CLASSES , true ) ;
2024-02-08 05:29:20 +08:00
Debug . Assert ( classes ! = null ) ;
2024-02-03 23:59:48 +08:00
2024-02-08 05:03:16 +08:00
foreach ( var association in file_associations )
association . UpdateDescription ( classes , PROGRAM_ID_PREFIX , getLocalisedString ( association . Description ) ) ;
2024-02-03 23:59:48 +08:00
2024-02-08 05:03:16 +08:00
foreach ( var association in uri_associations )
association . UpdateDescription ( classes , getLocalisedString ( association . Description ) ) ;
2024-02-03 23:59:48 +08:00
2024-02-08 04:45:36 +08:00
string getLocalisedString ( LocalisableString s )
{
if ( localisation = = null )
return s . ToString ( ) ;
var b = localisation . GetLocalisedBindableString ( s ) ;
b . UnbindAll ( ) ;
return b . Value ;
}
}
2024-02-04 00:56:14 +08:00
internal static void NotifyShellUpdate ( ) = > SHChangeNotify ( EventId . SHCNE_ASSOCCHANGED , Flags . SHCNF_IDLIST , IntPtr . Zero , IntPtr . Zero ) ;
2024-02-03 23:59:48 +08:00
#region Native interop
[DllImport("Shell32.dll")]
private static extern void SHChangeNotify ( EventId wEventId , Flags uFlags , IntPtr dwItem1 , IntPtr dwItem2 ) ;
private enum EventId
{
/// <summary>
/// A file type association has changed. <see cref="Flags.SHCNF_IDLIST"/> must be specified in the uFlags parameter.
/// dwItem1 and dwItem2 are not used and must be <see cref="IntPtr.Zero"/>. This event should also be sent for registered protocols.
/// </summary>
SHCNE_ASSOCCHANGED = 0x08000000
}
private enum Flags : uint
{
SHCNF_IDLIST = 0x0000
}
#endregion
2024-02-08 04:33:23 +08:00
private record FileAssociation ( string Extension , LocalisableString Description , string IconPath )
2024-02-03 23:59:48 +08:00
{
2024-02-08 05:23:59 +08:00
private string programId = > $@"{PROGRAM_ID_PREFIX}{Extension}" ;
2024-02-03 23:59:48 +08:00
/// <summary>
/// Installs a file extenstion association in accordance with https://learn.microsoft.com/en-us/windows/win32/com/-progid--key
/// </summary>
2024-02-08 05:23:59 +08:00
public void Install ( RegistryKey classes , string exePath )
2024-02-03 23:59:48 +08:00
{
// register a program id for the given extension
using ( var programKey = classes . CreateSubKey ( programId ) )
{
using ( var defaultIconKey = programKey . CreateSubKey ( DEFAULT_ICON ) )
2024-02-08 04:33:23 +08:00
defaultIconKey . SetValue ( null , IconPath ) ;
2024-02-03 23:59:48 +08:00
using ( var openCommandKey = programKey . CreateSubKey ( SHELL_OPEN_COMMAND ) )
openCommandKey . SetValue ( null , $@"""{exePath}"" ""%1""" ) ;
}
using ( var extensionKey = classes . CreateSubKey ( Extension ) )
{
// set ourselves as the default program
extensionKey . SetValue ( null , programId ) ;
// add to the open with dialog
// https://learn.microsoft.com/en-us/windows/win32/shell/how-to-include-an-application-on-the-open-with-dialog-box
using ( var openWithKey = extensionKey . CreateSubKey ( @"OpenWithProgIds" ) )
openWithKey . SetValue ( programId , string . Empty ) ;
}
}
public void UpdateDescription ( RegistryKey classes , string programIdPrefix , string description )
{
2024-02-08 05:23:59 +08:00
using ( var programKey = classes . OpenSubKey ( programId , true ) )
2024-02-03 23:59:48 +08:00
programKey ? . SetValue ( null , description ) ;
}
public void Uninstall ( RegistryKey classes , string programIdPrefix )
{
// importantly, we don't delete the default program entry because some other program could have taken it.
using ( var extensionKey = classes . OpenSubKey ( $@"{Extension}\OpenWithProgIds" , true ) )
extensionKey ? . DeleteValue ( programId , throwOnMissingValue : false ) ;
classes . DeleteSubKeyTree ( programId , throwOnMissingSubKey : false ) ;
}
}
2024-02-08 04:33:23 +08:00
private record UriAssociation ( string Protocol , LocalisableString Description , string IconPath )
2024-02-03 23:59:48 +08:00
{
/// <summary>
/// "The <c>URL Protocol</c> string value indicates that this key declares a custom pluggable protocol handler."
/// See https://learn.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/platform-apis/aa767914(v=vs.85).
/// </summary>
public const string URL_PROTOCOL = @"URL Protocol" ;
/// <summary>
/// Registers an URI protocol handler in accordance with https://learn.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/platform-apis/aa767914(v=vs.85).
/// </summary>
public void Install ( RegistryKey classes , string exePath )
{
using ( var protocolKey = classes . CreateSubKey ( Protocol ) )
{
protocolKey . SetValue ( URL_PROTOCOL , string . Empty ) ;
using ( var defaultIconKey = protocolKey . CreateSubKey ( DEFAULT_ICON ) )
2024-02-08 04:33:23 +08:00
defaultIconKey . SetValue ( null , IconPath ) ;
2024-02-03 23:59:48 +08:00
using ( var openCommandKey = protocolKey . CreateSubKey ( SHELL_OPEN_COMMAND ) )
openCommandKey . SetValue ( null , $@"""{exePath}"" ""%1""" ) ;
}
}
public void UpdateDescription ( RegistryKey classes , string description )
{
using ( var protocolKey = classes . OpenSubKey ( Protocol , true ) )
protocolKey ? . SetValue ( null , $@"URL:{description}" ) ;
}
public void Uninstall ( RegistryKey classes )
{
classes . DeleteSubKeyTree ( Protocol , throwOnMissingSubKey : false ) ;
}
}
}
}