ShareX/HelpersLib/Helpers/RegistryHelpers.cs
2014-01-12 09:25:51 +02:00

253 lines
9 KiB
C#

#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
Copyright (C) 2008-2014 ShareX Developers
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Optionally you can also view the license at <http://www.gnu.org/licenses/>.
*/
#endregion License Information (GPL v3)
using Microsoft.Win32;
using System;
using System.IO;
using System.Windows.Forms;
namespace HelpersLib
{
public static class RegistryHelpers
{
private static readonly string WindowsStartupRun = @"Software\Microsoft\Windows\CurrentVersion\Run";
private static readonly string ApplicationName = "ShareX";
private static readonly string ApplicationPath = string.Format("\"{0}\"", Application.ExecutablePath);
private static readonly string StartupPath = ApplicationPath + " -silent";
private static readonly string ShellExtMenuFiles = @"Software\Classes\*\shell\" + ApplicationName;
private static readonly string ShellExtMenuFilesCmd = ShellExtMenuFiles + @"\command";
private static readonly string ShellExtMenuDirectory = @"Software\Classes\Directory\shell\" + ApplicationName;
private static readonly string ShellExtMenuDirectoryCmd = ShellExtMenuDirectory + @"\command";
private static readonly string ShellExtMenuFolders = @"Software\Classes\Folder\shell\" + ApplicationName;
private static readonly string ShellExtMenuFoldersCmd = ShellExtMenuFolders + @"\command";
private static readonly string ShellExtDesc = "Upload with " + ApplicationName;
private static readonly string ShellExtIcon = ApplicationPath + ",0";
private static readonly string ShellExtPath = ApplicationPath + " \"%1\"";
public static bool CheckStartWithWindows()
{
try
{
return CheckRegistry(WindowsStartupRun, Application.ProductName, StartupPath);
}
catch (Exception e)
{
DebugHelper.WriteException(e);
}
return false;
}
public static void SetStartWithWindows(bool startWithWindows)
{
try
{
using (RegistryKey regkey = Registry.CurrentUser.OpenSubKey(WindowsStartupRun, true))
{
if (regkey != null)
{
if (startWithWindows)
{
regkey.SetValue(Application.ProductName, StartupPath, RegistryValueKind.String);
}
else
{
regkey.DeleteValue(Application.ProductName, false);
}
}
}
}
catch (Exception e)
{
DebugHelper.WriteException(e);
}
}
public static bool CheckShellContextMenu()
{
try
{
return CheckRegistry(ShellExtMenuFilesCmd) && CheckRegistry(ShellExtMenuDirectoryCmd);
}
catch (Exception e)
{
DebugHelper.WriteException(e);
}
return false;
}
public static void SetShellContextMenu(bool register)
{
try
{
if (register)
{
UnregisterShellContextMenu();
RegisterShellContextMenu();
}
else
{
UnregisterShellContextMenu();
}
}
catch (Exception e)
{
DebugHelper.WriteException(e);
}
}
public static void RegisterShellContextMenu()
{
CreateRegistryKey(ShellExtMenuFiles, ShellExtDesc);
AddRegistryValue(ShellExtMenuFiles, "Icon", ShellExtIcon);
CreateRegistryKey(ShellExtMenuFilesCmd, ShellExtPath);
CreateRegistryKey(ShellExtMenuDirectory, ShellExtDesc);
AddRegistryValue(ShellExtMenuDirectory, "Icon", ShellExtIcon);
CreateRegistryKey(ShellExtMenuDirectoryCmd, ShellExtPath);
}
public static void UnregisterShellContextMenu()
{
RemoveRegistryKey(ShellExtMenuFilesCmd);
RemoveRegistryKey(ShellExtMenuFiles);
RemoveRegistryKey(ShellExtMenuDirectoryCmd);
RemoveRegistryKey(ShellExtMenuDirectory);
RemoveRegistryKey(ShellExtMenuFoldersCmd);
RemoveRegistryKey(ShellExtMenuFolders);
}
public static ExternalProgram FindProgram(string name, string filename)
{
// First method: HKEY_CLASSES_ROOT\Applications\{filename}\shell\{command}\command
string[] commands = new string[] { "open", "edit" };
foreach (string command in commands)
{
string path = string.Format(@"HKEY_CLASSES_ROOT\Applications\{0}\shell\{1}\command", filename, command);
string value = Registry.GetValue(path, null, null) as string;
if (!string.IsNullOrEmpty(value))
{
string filePath = value.ParseQuoteString();
if (File.Exists(filePath))
{
DebugHelper.WriteLine("Found program with first method: " + filePath);
return new ExternalProgram(name, filePath);
}
}
}
// Second method: HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\MuiCache
using (RegistryKey programs = Registry.CurrentUser.OpenSubKey(@"Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\MuiCache"))
{
if (programs != null)
{
foreach (string filePath in programs.GetValueNames())
{
if (!string.IsNullOrEmpty(filePath) && programs.GetValueKind(filePath) == RegistryValueKind.String)
{
string programName = programs.GetValue(filePath, null) as string;
if (!string.IsNullOrEmpty(programName) && programName.Equals(name, StringComparison.InvariantCultureIgnoreCase) && File.Exists(filePath))
{
DebugHelper.WriteLine("Found program with second method: " + filePath);
return new ExternalProgram(name, filePath);
}
}
}
}
}
return null;
}
private static void CreateRegistryKey(string path, string value, string name = null)
{
using (RegistryKey rk = Registry.CurrentUser.CreateSubKey(path))
{
if (rk != null)
{
rk.SetValue(name, value);
}
}
}
private static void RemoveRegistryKey(string path)
{
using (RegistryKey rk = Registry.CurrentUser.OpenSubKey(path))
{
if (rk != null)
{
Registry.CurrentUser.DeleteSubKey(path);
}
}
}
private static void AddRegistryValue(string path, string name, string value)
{
using (RegistryKey rk = Registry.CurrentUser.OpenSubKey(path, true))
{
if (rk != null)
{
rk.SetValue(name, value);
}
}
}
private static bool CheckRegistry(string path, string name = null, string value = null)
{
string registryValue = GetRegistryValue(path, name);
if (registryValue != null)
{
return value == null || registryValue.Equals(value, StringComparison.InvariantCultureIgnoreCase);
}
return false;
}
private static string GetRegistryValue(string path, string name = null)
{
using (RegistryKey rk = Registry.CurrentUser.OpenSubKey(path))
{
if (rk != null)
{
return rk.GetValue(name, null) as string;
}
}
return null;
}
}
}