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:(?.+)\\]", 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 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 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]; } } }