PageUtils.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543
  1. using System;
  2. using System.Collections.Specialized;
  3. using System.Globalization;
  4. using System.Net;
  5. using System.Text;
  6. using System.Text.RegularExpressions;
  7. namespace Tede.Data.Tests.Utils
  8. {
  9. public static class PageUtils
  10. {
  11. public const char SeparatorChar = '/';
  12. public const string UnClickableUrl = "javascript:;";
  13. public static string AddEndSlashToUrl(string url)
  14. {
  15. if (string.IsNullOrEmpty(url) || !url.EndsWith("/"))
  16. {
  17. url += "/";
  18. }
  19. return url;
  20. }
  21. public static string AddQuestionOrAndToUrl(string pageUrl)
  22. {
  23. var url = pageUrl;
  24. if (string.IsNullOrEmpty(url))
  25. {
  26. url = "?";
  27. }
  28. else
  29. {
  30. if (url.IndexOf('?') == -1)
  31. {
  32. url = url + "?";
  33. }
  34. else if (!url.EndsWith("?"))
  35. {
  36. url = url + "&";
  37. }
  38. }
  39. return url;
  40. }
  41. public static string RemoveFileNameFromUrl(string url)
  42. {
  43. if (string.IsNullOrEmpty(url)) return string.Empty;
  44. url = url.Trim();
  45. if (url.Contains("/"))
  46. {
  47. var fileName = url.Substring(url.LastIndexOf("/", StringComparison.Ordinal));
  48. if (fileName.Contains("."))
  49. {
  50. return url.Substring(0, url.LastIndexOf("/", StringComparison.Ordinal));
  51. }
  52. }
  53. return url;
  54. }
  55. public static string RemoveProtocolFromUrl(string url)
  56. {
  57. if (string.IsNullOrEmpty(url)) return string.Empty;
  58. url = url.Trim();
  59. return IsProtocolUrl(url) ? url.Substring(url.IndexOf("://", StringComparison.Ordinal) + 3) : url;
  60. }
  61. public static bool IsProtocolUrl(string url)
  62. {
  63. if (string.IsNullOrEmpty(url)) return false;
  64. url = url.Trim();
  65. return url.IndexOf("://", StringComparison.Ordinal) != -1 || url.StartsWith("javascript:");
  66. }
  67. public static bool IsAbsoluteUrl(string url)
  68. {
  69. if (string.IsNullOrEmpty(url)) return false;
  70. url = url.Trim();
  71. return url.StartsWith("/") || url.IndexOf("://", StringComparison.Ordinal) != -1 || url.StartsWith("javascript:");
  72. }
  73. public static string PathDifference(string path1, string path2, bool compareCase)
  74. {
  75. var num2 = -1;
  76. var num1 = 0;
  77. while ((num1 < path1.Length) && (num1 < path2.Length))
  78. {
  79. if ((path1[num1] != path2[num1]) && (compareCase || (char.ToLower(path1[num1], CultureInfo.InvariantCulture) != char.ToLower(path2[num1], CultureInfo.InvariantCulture))))
  80. {
  81. break;
  82. }
  83. if (path1[num1] == '/')
  84. {
  85. num2 = num1;
  86. }
  87. num1++;
  88. }
  89. if (num1 == 0)
  90. {
  91. return path2;
  92. }
  93. if ((num1 == path1.Length) && (num1 == path2.Length))
  94. {
  95. return string.Empty;
  96. }
  97. var builder1 = new StringBuilder();
  98. while (num1 < path1.Length)
  99. {
  100. if (path1[num1] == '/')
  101. {
  102. builder1.Append("../");
  103. }
  104. num1++;
  105. }
  106. return (builder1 + path2.Substring(num2 + 1));
  107. }
  108. /// <summary>
  109. /// 获取服务器根域名
  110. /// </summary>
  111. /// <returns></returns>
  112. public static string GetMainDomain(string url)
  113. {
  114. if (string.IsNullOrEmpty(url)) return url;
  115. url = RemoveProtocolFromUrl(url.ToLower());
  116. if (url.IndexOf('/') != -1)
  117. {
  118. url = url.Substring(0, url.IndexOf('/'));
  119. }
  120. if (url.IndexOf('.') <= 0) return url;
  121. var strArr = url.Split('.');
  122. var lastStr = strArr.GetValue(strArr.Length - 1).ToString();
  123. if (StringUtils.IsNumber(lastStr)) //如果最后一位是数字,那么说明是IP地址
  124. {
  125. return url;
  126. }
  127. var domainRules = ".com.cn|.net.cn|.org.cn|.gov.cn|.com|.net|.cn|.org|.cc|.me|.tel|.mobi|.asia|.biz|.info|.name|.tv|.hk|.公司|.中国|.网络".Split('|');
  128. var returnStr = string.Empty;
  129. foreach (var t in domainRules)
  130. {
  131. if (url.EndsWith(t.ToLower())) //如果最后有找到匹配项
  132. {
  133. var findStr = t;
  134. var replaceStr = url.Replace(findStr, "");
  135. if (replaceStr.IndexOf('.') > 0) //存在二级域名或者三级,比如:www.px915
  136. {
  137. var replaceArr = replaceStr.Split('.'); // www px915
  138. returnStr = replaceArr.GetValue(replaceArr.Length - 1) + findStr;
  139. return returnStr;
  140. }
  141. returnStr = replaceStr + findStr; //连接起来输出为:px915.com
  142. return returnStr;
  143. }
  144. returnStr = url;
  145. }
  146. return returnStr;
  147. }
  148. public static string Combine(params string[] urls)
  149. {
  150. if (urls == null || urls.Length <= 0) return string.Empty;
  151. var retval = urls[0]?.Replace(PathUtils.SeparatorChar, SeparatorChar) ?? string.Empty;
  152. for (var i = 1; i < urls.Length; i++)
  153. {
  154. var url = (urls[i] != null) ? urls[i].Replace(PathUtils.SeparatorChar, SeparatorChar) : string.Empty;
  155. retval = Combine(retval, url);
  156. }
  157. return retval;
  158. }
  159. private static string Combine(string url1, string url2)
  160. {
  161. if (url1 == null || url2 == null)
  162. {
  163. throw new ArgumentNullException(url1 == null ? "url1" : "url2");
  164. }
  165. if (url2.Length == 0)
  166. {
  167. return url1;
  168. }
  169. if (url1.Length == 0)
  170. {
  171. return url2;
  172. }
  173. return url1.TrimEnd(SeparatorChar) + SeparatorChar + url2.TrimStart(SeparatorChar);
  174. }
  175. public static string AddQueryString(string url, string queryStringKey, string queryStringValue)
  176. {
  177. var queryString = new NameValueCollection
  178. {
  179. {queryStringKey, queryStringValue}
  180. };
  181. return AddQueryString(url, queryString);
  182. }
  183. public static string AddQueryString(string url, string queryString)
  184. {
  185. if (queryString == null || url == null) return url;
  186. queryString = queryString.TrimStart('?', '&');
  187. if (url.IndexOf("?", StringComparison.Ordinal) == -1)
  188. {
  189. return string.Concat(url, "?", queryString);
  190. }
  191. return url.EndsWith("?") ? string.Concat(url, queryString) : string.Concat(url, "&", queryString);
  192. }
  193. public static string AddQueryString(string url, NameValueCollection queryString)
  194. {
  195. if (queryString == null || url == null || queryString.Count == 0)
  196. return url;
  197. var builder = new StringBuilder();
  198. foreach (string key in queryString.Keys)
  199. {
  200. builder.Append($"&{key}={UrlEncode(queryString[key])}");
  201. }
  202. if (url.IndexOf("?", StringComparison.Ordinal) == -1)
  203. {
  204. if (builder.Length > 0) builder.Remove(0, 1);
  205. return string.Concat(url, "?", builder.ToString());
  206. }
  207. if (url.EndsWith("?"))
  208. {
  209. if (builder.Length > 0) builder.Remove(0, 1);
  210. }
  211. return string.Concat(url, builder.ToString());
  212. }
  213. public static string RemoveQueryString(string url)
  214. {
  215. if (url == null) return null;
  216. if (url.IndexOf("?", StringComparison.Ordinal) == -1 || url.EndsWith("?"))
  217. {
  218. return url;
  219. }
  220. return url.Substring(0, url.IndexOf("?", StringComparison.Ordinal));
  221. }
  222. public static string GetIpAddress(IPAddress ipAddress)
  223. {
  224. if (ipAddress == null) return "127.0.0.1";
  225. return GetIpAddress(ipAddress.ToString());
  226. }
  227. public static string GetIpAddress(string remoteIpAddress)
  228. {
  229. var result = string.Empty;
  230. //取CDN用户真实IP的方法
  231. //当用户使用代理时,取到的是代理IP
  232. result = remoteIpAddress;
  233. if (!string.IsNullOrEmpty(result))
  234. {
  235. //可能有代理
  236. if (result.IndexOf(".", StringComparison.Ordinal) == -1)
  237. result = null;
  238. else
  239. {
  240. if (result.IndexOf(",", StringComparison.Ordinal) != -1)
  241. {
  242. result = result.Replace(" ", "").Replace("'", "");
  243. var temparyip = result.Split(",;".ToCharArray());
  244. foreach (var t in temparyip)
  245. {
  246. if (IsIpAddress(t) && t.Substring(0, 3) != "10." && t.Substring(0, 7) != "192.168" && t.Substring(0, 7) != "172.16.")
  247. {
  248. result = t;
  249. }
  250. }
  251. var str = result.Split(',');
  252. if (str.Length > 0)
  253. result = str[0].Trim();
  254. }
  255. else if (IsIpAddress(result))
  256. return result;
  257. }
  258. }
  259. if (string.IsNullOrEmpty(result) || result == "::1" || result == "127.0.0.1")
  260. {
  261. result = "localhost";
  262. }
  263. return result;
  264. }
  265. public static bool IsIpAddress(string ip)
  266. {
  267. return Regex.IsMatch(ip, @"^((2[0-4]\d|25[0-5]|[01]?\d\d?)\.){3}(2[0-4]\d|25[0-5]|[01]?\d\d?)$");
  268. }
  269. /// <summary>
  270. /// 将Url地址的查询字符串去掉
  271. /// </summary>
  272. /// <param name="rawUrl"></param>
  273. /// <returns></returns>
  274. public static string GetUrlWithoutQueryString(string rawUrl)
  275. {
  276. string urlWithoutQueryString;
  277. if (rawUrl != null && rawUrl.IndexOf("?", StringComparison.Ordinal) != -1)
  278. {
  279. var queryString = rawUrl.Substring(rawUrl.IndexOf("?", StringComparison.Ordinal));
  280. urlWithoutQueryString = rawUrl.Replace(queryString, "");
  281. }
  282. else
  283. {
  284. urlWithoutQueryString = rawUrl;
  285. }
  286. return urlWithoutQueryString;
  287. }
  288. /// <summary>
  289. /// 将Url地址域名后的字符去掉
  290. /// </summary>
  291. /// <param name="rawUrl"></param>
  292. /// <returns></returns>
  293. public static string GetUrlWithoutPathInfo(string rawUrl)
  294. {
  295. var urlWithoutPathInfo = string.Empty;
  296. if (rawUrl != null && rawUrl.Trim().Length > 0)
  297. {
  298. if (rawUrl.ToLower().StartsWith("http://"))
  299. {
  300. urlWithoutPathInfo = rawUrl.Substring("http://".Length);
  301. }
  302. if (urlWithoutPathInfo.IndexOf("/", StringComparison.Ordinal) != -1)
  303. {
  304. urlWithoutPathInfo = urlWithoutPathInfo.Substring(0, urlWithoutPathInfo.IndexOf("/", StringComparison.Ordinal));
  305. }
  306. if (string.IsNullOrEmpty(urlWithoutPathInfo))
  307. {
  308. urlWithoutPathInfo = rawUrl;
  309. }
  310. urlWithoutPathInfo = "http://" + urlWithoutPathInfo;
  311. }
  312. return urlWithoutPathInfo;
  313. }
  314. /// <summary>
  315. /// 将Url地址后的文件名称去掉
  316. /// </summary>
  317. /// <param name="rawUrl"></param>
  318. /// <returns></returns>
  319. public static string GetUrlWithoutFileName(string rawUrl)
  320. {
  321. if (string.IsNullOrEmpty(rawUrl)) return string.Empty;
  322. var urlWithoutFileName = string.Empty;
  323. if (rawUrl.ToLower().StartsWith("http://"))
  324. {
  325. urlWithoutFileName = rawUrl.Substring("http://".Length);
  326. }
  327. if (urlWithoutFileName.IndexOf("/", StringComparison.Ordinal) != -1 && !urlWithoutFileName.EndsWith("/"))
  328. {
  329. const string regex = "/(?<filename>[^/]*\\.[^/]*)[^/]*$";
  330. const RegexOptions options = RegexOptions.IgnorePatternWhitespace | RegexOptions.Multiline | RegexOptions.IgnoreCase;
  331. var reg = new Regex(regex, options);
  332. var match = reg.Match(urlWithoutFileName);
  333. if (match.Success)
  334. {
  335. var fileName = match.Groups["filename"].Value;
  336. urlWithoutFileName = urlWithoutFileName.Substring(0, urlWithoutFileName.LastIndexOf(fileName, StringComparison.Ordinal));
  337. }
  338. }
  339. urlWithoutFileName = "http://" + urlWithoutFileName;
  340. return urlWithoutFileName;
  341. }
  342. public static string GetUrlQueryString(string url)
  343. {
  344. var queryString = string.Empty;
  345. if (!string.IsNullOrEmpty(url) && url.IndexOf("?", StringComparison.Ordinal) != -1)
  346. {
  347. queryString = url.Substring(url.IndexOf("?", StringComparison.Ordinal) + 1);
  348. }
  349. return queryString;
  350. }
  351. public static string GetFileNameFromUrl(string rawUrl)
  352. {
  353. if (string.IsNullOrEmpty(rawUrl)) return string.Empty;
  354. var fileName = string.Empty;
  355. //if (rawUrl.ToLower().StartsWith("http://"))
  356. //{
  357. // rawUrl = rawUrl.Substring("http://".Length);
  358. //}
  359. //if (rawUrl.IndexOf("?") != -1)
  360. //{
  361. // int index = rawUrl.IndexOf("?");
  362. // rawUrl = rawUrl.Remove(index, rawUrl.Length - index);
  363. //}
  364. rawUrl = RemoveProtocolFromUrl(rawUrl);
  365. rawUrl = GetUrlWithoutQueryString(rawUrl);
  366. if (rawUrl.IndexOf("/", StringComparison.Ordinal) != -1 && !rawUrl.EndsWith("/"))
  367. {
  368. const string regex = "/(?<filename>[^/]*\\.[^/]*)[^/]*$";
  369. const RegexOptions options = RegexOptions.IgnorePatternWhitespace | RegexOptions.Multiline | RegexOptions.IgnoreCase;
  370. var reg = new Regex(regex, options);
  371. var match = reg.Match(rawUrl);
  372. if (match.Success)
  373. {
  374. fileName = match.Groups["filename"].Value;
  375. }
  376. }
  377. else
  378. {
  379. fileName = rawUrl;
  380. }
  381. return fileName;
  382. }
  383. public static string GetExtensionFromUrl(string rawUrl)
  384. {
  385. var extension = string.Empty;
  386. if (!string.IsNullOrEmpty(rawUrl))
  387. {
  388. rawUrl = RemoveProtocolFromUrl(rawUrl);
  389. rawUrl = GetUrlWithoutQueryString(rawUrl);
  390. rawUrl = rawUrl.TrimEnd('/');
  391. if (rawUrl.IndexOf('/') != -1)
  392. {
  393. rawUrl = rawUrl.Substring(rawUrl.LastIndexOf('/'));
  394. if (rawUrl.IndexOf('.') != -1)
  395. {
  396. extension = rawUrl.Substring(rawUrl.LastIndexOf('.'));
  397. }
  398. }
  399. }
  400. return extension;
  401. }
  402. public static string UrlEncode(string url)
  403. {
  404. return WebUtility.UrlEncode(url);
  405. }
  406. public static string UrlDecode(string url)
  407. {
  408. return WebUtility.UrlDecode(url);
  409. }
  410. //public static string UrlEncode(string urlString)
  411. //{
  412. // if (urlString == null || urlString == "$4")
  413. // {
  414. // return string.Empty;
  415. // }
  416. // var newValue = urlString.Replace("\"", "'");
  417. // newValue = HttpUtility.UrlEncode(newValue);
  418. // newValue = newValue.Replace("%2f", "/");
  419. // return newValue;
  420. //}
  421. //public static string UrlEncode(string urlString, string encoding)
  422. //{
  423. // if (urlString == null || urlString == "$4")
  424. // {
  425. // return string.Empty;
  426. // }
  427. // var newValue = urlString.Replace("\"", "'");
  428. // newValue = HttpUtility.UrlEncode(newValue, Encoding.GetEncoding(encoding));
  429. // newValue = newValue.Replace("%2f", "/");
  430. // return newValue;
  431. //}
  432. //public static string UrlEncode(string urlString, ECharset charset)
  433. //{
  434. // if (urlString == null || urlString == "$4")
  435. // {
  436. // return string.Empty;
  437. // }
  438. // var newValue = urlString.Replace("\"", "'");
  439. // newValue = HttpUtility.UrlEncode(newValue, ECharsetUtils.GetEncoding(charset));
  440. // newValue = newValue.Replace("%2f", "/");
  441. // return newValue;
  442. //}
  443. //public static string UrlDecode(string urlString, string encoding)
  444. //{
  445. // return HttpUtility.UrlDecode(urlString, Encoding.GetEncoding(encoding));
  446. //}
  447. //public static string UrlDecode(string urlString, ECharset charset)
  448. //{
  449. // return HttpUtility.UrlDecode(urlString, ECharsetUtils.GetEncoding(charset));
  450. //}
  451. //public static string UrlDecode(string urlString)
  452. //{
  453. // return HttpUtility.UrlDecode(urlString);
  454. //}
  455. public static bool IsVirtualUrl(string url)
  456. {
  457. if (!string.IsNullOrEmpty(url))
  458. {
  459. if (url.StartsWith("~") || url.StartsWith("@"))
  460. {
  461. return true;
  462. }
  463. }
  464. return false;
  465. }
  466. public static string GetRedirectStringWithCheckBoxValue(string redirectUrl, string checkBoxServerId, string checkBoxClientId, string emptyAlertText)
  467. {
  468. return
  469. $@"if (!_alertCheckBoxCollection(document.getElementsByName('{checkBoxClientId}'), '{emptyAlertText}')){{_goto('{redirectUrl}' + '&{checkBoxServerId}=' + _getCheckBoxCollectionValue(document.getElementsByName('{checkBoxClientId}')));}};return false;";
  470. }
  471. public static string GetRedirectStringWithCheckBoxValueAndAlert(string redirectUrl, string checkBoxServerId, string checkBoxClientId, string emptyAlertText, string confirmAlertText)
  472. {
  473. return
  474. $@"_confirmCheckBoxCollection(document.getElementsByName('{checkBoxClientId}'), '{emptyAlertText}', '{confirmAlertText}', '{redirectUrl}' + '&{checkBoxServerId}=' + _getCheckBoxCollectionValue(document.getElementsByName('{checkBoxClientId}')));return false;";
  475. }
  476. public static string GetRedirectStringWithConfirm(string redirectUrl, string confirmString)
  477. {
  478. return $@"_confirm('{confirmString}', '{redirectUrl}');return false;";
  479. }
  480. }
  481. }