12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- using Microsoft.Win32;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Text.RegularExpressions;
- namespace LYFZ.OtherExpansion.Win32
- {
- public static class ShellHelper
- {
- private static readonly Regex r = new Regex("c=\\[c:(?<key>.+)\\]", RegexOptions.Compiled);
- public static void ApplicationExit()
- {
- ShellHelper.ApplicationExit(0);
- }
- public static void ApplicationExit(int exitCode)
- {
- try
- {
- Environment.Exit(exitCode);
- }
- catch
- {
- }
- }
- public static string ParseUrl(string url, IDictionary<string, string> credentials)
- {
- if (credentials != null)
- {
- Match match = ShellHelper.r.Match(url);
- if (!match.Success)
- {
- return url;
- }
- string str = "";
- string str2 = match.Result("${key}");
- if (string.IsNullOrEmpty(str2))
- {
- return url;
- }
- if (credentials.ContainsKey(str2))
- {
- str = HttpWebRequestHelper.UrlEncode(credentials[str2]);
- }
- url = ShellHelper.r.Replace(url, "c=" + str);
- }
- return url;
- }
- public static void StartUrl(string url)
- {
- try
- {
- StringBuilder builder = new StringBuilder(ShellHelper.ParseString((string)Registry.ClassesRoot.OpenSubKey("HTTP\\shell\\open\\command", false).GetValue(string.Empty, string.Empty)));
- builder.Append(" ");
- builder.Append(url);
- NativeMethods.WinExec(builder.ToString(), 5);
- }
- catch
- {
- try
- {
- StringBuilder builder2 = new StringBuilder(ShellHelper.ParseString((string)Registry.ClassesRoot.OpenSubKey("Applications\\iexplore.exe\\shell\\open\\command", false).GetValue(string.Empty, string.Empty)));
- builder2.Append(" ");
- builder2.Append(url);
- NativeMethods.WinExec(builder2.ToString(), 5);
- }
- catch
- {
- }
- }
- }
- public static void StartUrl(string url, IDictionary<string, string> credentials)
- {
- ShellHelper.StartUrl(ShellHelper.ParseUrl(url, credentials));
- }
- private static string ParseString(string value)
- {
- if (value.Substring(0, 1) == "\"")
- {
- int index = value.IndexOf("\"", 1);
- return value.Substring(0, index + 1);
- }
- return value.Split(new char[]
- {
- ' '
- })[0];
- }
- }
- }
|