ShellHelper.cs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. using Microsoft.Win32;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using System.Text.RegularExpressions;
  6. namespace LYFZ.OtherExpansion.Win32
  7. {
  8. public static class ShellHelper
  9. {
  10. private static readonly Regex r = new Regex("c=\\[c:(?<key>.+)\\]", RegexOptions.Compiled);
  11. public static void ApplicationExit()
  12. {
  13. ShellHelper.ApplicationExit(0);
  14. }
  15. public static void ApplicationExit(int exitCode)
  16. {
  17. try
  18. {
  19. Environment.Exit(exitCode);
  20. }
  21. catch
  22. {
  23. }
  24. }
  25. public static string ParseUrl(string url, IDictionary<string, string> credentials)
  26. {
  27. if (credentials != null)
  28. {
  29. Match match = ShellHelper.r.Match(url);
  30. if (!match.Success)
  31. {
  32. return url;
  33. }
  34. string str = "";
  35. string str2 = match.Result("${key}");
  36. if (string.IsNullOrEmpty(str2))
  37. {
  38. return url;
  39. }
  40. if (credentials.ContainsKey(str2))
  41. {
  42. str = HttpWebRequestHelper.UrlEncode(credentials[str2]);
  43. }
  44. url = ShellHelper.r.Replace(url, "c=" + str);
  45. }
  46. return url;
  47. }
  48. public static void StartUrl(string url)
  49. {
  50. try
  51. {
  52. StringBuilder builder = new StringBuilder(ShellHelper.ParseString((string)Registry.ClassesRoot.OpenSubKey("HTTP\\shell\\open\\command", false).GetValue(string.Empty, string.Empty)));
  53. builder.Append(" ");
  54. builder.Append(url);
  55. NativeMethods.WinExec(builder.ToString(), 5);
  56. }
  57. catch
  58. {
  59. try
  60. {
  61. StringBuilder builder2 = new StringBuilder(ShellHelper.ParseString((string)Registry.ClassesRoot.OpenSubKey("Applications\\iexplore.exe\\shell\\open\\command", false).GetValue(string.Empty, string.Empty)));
  62. builder2.Append(" ");
  63. builder2.Append(url);
  64. NativeMethods.WinExec(builder2.ToString(), 5);
  65. }
  66. catch
  67. {
  68. }
  69. }
  70. }
  71. public static void StartUrl(string url, IDictionary<string, string> credentials)
  72. {
  73. ShellHelper.StartUrl(ShellHelper.ParseUrl(url, credentials));
  74. }
  75. private static string ParseString(string value)
  76. {
  77. if (value.Substring(0, 1) == "\"")
  78. {
  79. int index = value.IndexOf("\"", 1);
  80. return value.Substring(0, index + 1);
  81. }
  82. return value.Split(new char[]
  83. {
  84. ' '
  85. })[0];
  86. }
  87. }
  88. }