WebHelper.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Net;
  6. using System.Net.Security;
  7. using System.Security.Cryptography.X509Certificates;
  8. using System.Text;
  9. using System.Text.RegularExpressions;
  10. namespace TimedUpload
  11. {
  12. /// <summary>
  13. /// Web操作
  14. /// </summary>
  15. public static class WebHelper
  16. {
  17. #region Host(获取主机名)
  18. /// <summary>
  19. /// 获取主机名,即域名,
  20. /// 范例:用户输入网址http://www.a.com/b.htm?a=1&amp;b=2,
  21. /// 返回值为: www.a.com
  22. /// </summary>
  23. //public static string Host
  24. //{
  25. // get
  26. // {
  27. // return HttpContext.Current.Request.Url.Host;
  28. // }
  29. //}
  30. #endregion
  31. #region HttpWebRequest(请求网络资源)
  32. /// <summary>
  33. /// 请求网络资源,返回响应的文本
  34. /// </summary>
  35. /// <param name="url">网络资源地址</param>
  36. public static string HttpWebRequest(string url)
  37. {
  38. return HttpWebRequest(url, string.Empty, Encoding.GetEncoding("utf-8"));
  39. }
  40. /// <summary>
  41. /// 请求网络资源,返回响应的文本
  42. /// </summary>
  43. /// <param name="url">网络资源Url地址</param>
  44. /// <param name="parameters">提交的参数,格式:参数1=参数值1&amp;参数2=参数值2</param>
  45. public static string HttpWebRequest(string url, string parameters, String mehtod)
  46. {
  47. return HttpWebRequest(url, parameters, Encoding.GetEncoding("utf-8"), mehtod);
  48. }
  49. /// <summary>
  50. /// 请求网络资源,返回响应的文本
  51. /// </summary>
  52. /// <param name="url">网络资源Url地址</param>
  53. /// <param name="parameters">提交的参数,格式:参数1=参数值1&amp;参数2=参数值2</param>
  54. public static string HttpWebRequest(string url, string parameters, String mehtod, string contentType)
  55. {
  56. return HttpWebRequest(url, parameters, Encoding.GetEncoding("utf-8"), mehtod, contentType);
  57. }
  58. /// <summary>
  59. /// 请求网络资源,返回响应的文本
  60. /// </summary>
  61. /// <param name="url">网络资源Url地址</param>
  62. /// <param name="parameters"></param>
  63. public static string HttpWebRequest(string url, string parameters, string contentType, string Authorization, string app_key)
  64. {
  65. return HttpWebRequest(url, parameters, Encoding.GetEncoding("utf-8"), "POST", contentType, Authorization, app_key);
  66. }
  67. /// <summary>
  68. /// 请求网络资源,返回响应的文本
  69. /// </summary>
  70. /// <param name="url">网络资源Url地址</param>
  71. /// <param name="parameters"></param>
  72. public static string HttpWebRequest(string url, string parameters, string mehtod, string contentType, string Authorization, string app_key)
  73. {
  74. return HttpWebRequest(url, parameters, Encoding.GetEncoding("utf-8"), mehtod, contentType, Authorization, app_key);
  75. }
  76. /// <summary>
  77. /// 请求网络资源,返回响应的文本
  78. /// </summary>
  79. /// <param name="url">网络资源Url地址</param>
  80. /// <param name="parameters">提交的参数</param>
  81. /// <param name="requestBody">提交的requestBody参数json格式</param>
  82. public static string HttpWebRequest(string url, Dictionary<string, string> parameters,string requestBody)
  83. {
  84. return HttpWebRequest(url, null, parameters, requestBody);
  85. }
  86. /// <summary>
  87. /// 请求网络资源,返回响应的文本
  88. /// </summary>
  89. /// <param name="url">网络资源地址</param>
  90. /// <param name="parameters">提交的参数,格式:参数1=参数值1&amp;参数2=参数值2</param>
  91. /// <param name="encoding">字符编码</param>
  92. /// <param name="isPost">是否Post提交</param>
  93. /// <param name="contentType">内容类型</param>
  94. /// <param name="cookie">Cookie容器</param>
  95. /// <param name="timeout">超时时间</param>
  96. public static string HttpWebRequest(string url, string parameters, Encoding encoding, string mehtod = "POST",
  97. string contentType = "application/x-www-form-urlencoded", string Authorization = null, string app_key = null, CookieContainer cookie = null, int timeout = 120000)
  98. {
  99. HttpWebRequest request = null;
  100. try
  101. {
  102. if (mehtod == "GET")
  103. {
  104. request = WebRequest.Create(url + (parameters == "" ? "" : "?") + parameters) as HttpWebRequest;
  105. }
  106. else
  107. {
  108. request = WebRequest.Create(url) as HttpWebRequest;
  109. }
  110. request.Timeout = timeout;
  111. if (!string.IsNullOrEmpty(Authorization))
  112. {
  113. request.Headers["Authorization"] = Authorization;
  114. }
  115. if (!string.IsNullOrEmpty(app_key))
  116. {
  117. request.Headers["app_key"] = app_key;
  118. }
  119. request.Headers["AppId"] = Constants.AppId;
  120. request.CookieContainer = cookie;
  121. request.ContentType = contentType;
  122. request.Method = mehtod;
  123. if (mehtod == "POST")
  124. {
  125. byte[] postData = encoding.GetBytes(parameters);
  126. request.ContentType = contentType;
  127. request.ContentLength = postData.Length;
  128. using (Stream stream = request.GetRequestStream())
  129. {
  130. stream.Write(postData, 0, postData.Length);
  131. }
  132. }
  133. else if(mehtod == "PUT")
  134. {
  135. using (StreamWriter requestStream = new StreamWriter(request.GetRequestStream()))
  136. {
  137. requestStream.Write(parameters);
  138. }
  139. }
  140. else if (mehtod == "GET")
  141. {
  142. request.ContentType = "text/html;charset=UTF-8";
  143. }
  144. var response = (HttpWebResponse)request.GetResponse();
  145. string result;
  146. using (Stream stream = response.GetResponseStream())
  147. {
  148. if (stream == null)
  149. return string.Empty;
  150. using (var reader = new StreamReader(stream, encoding))
  151. {
  152. result = reader.ReadToEnd();
  153. }
  154. }
  155. return result;
  156. }
  157. catch (Exception ex)
  158. {
  159. throw ex;
  160. }
  161. }
  162. /// <summary>
  163. /// 有Request Paras和Request Body的接口
  164. /// </summary>
  165. /// <param name="baseUrl"></param>
  166. /// <param name="headers"></param>
  167. /// <param name="urlParas"></param>
  168. /// <param name="requestBody"></param>
  169. /// <returns></returns>
  170. public static string HttpWebRequest(string baseUrl,Dictionary<string, string> headers,Dictionary<string, string> urlParas,string requestBody = null,int timeout = 120000)
  171. {
  172. string result ;
  173. try
  174. {
  175. var apiUrl = baseUrl;
  176. if (urlParas != null)
  177. {
  178. foreach (var p in urlParas)
  179. {
  180. if (apiUrl.IndexOf("{" + p.Key + "}") > -1)
  181. {
  182. apiUrl = apiUrl.Replace("{" + p.Key + "}", p.Value);
  183. }
  184. else
  185. {
  186. apiUrl += string.Format("{0}{1}={2}", apiUrl.Contains("?") ? "&" : "?", p.Key, p.Value);
  187. }
  188. }
  189. }
  190. var req = (HttpWebRequest)WebRequest.Create(apiUrl);
  191. req.Method = "POST";
  192. req.ContentType = "application/json";
  193. req.Timeout = timeout;
  194. if (!String.IsNullOrEmpty(requestBody))
  195. {
  196. using (var postStream = new StreamWriter(req.GetRequestStream()))
  197. {
  198. postStream.Write(requestBody);
  199. }
  200. }
  201. if (headers != null)
  202. {
  203. if (headers.Keys.Any(p => p.ToLower() == "content-type"))
  204. req.ContentType = headers.SingleOrDefault(p => p.Key.ToLower() == "content-type").Value;
  205. if (headers.Keys.Any(p => p.ToLower() == "accept"))
  206. req.Accept = headers.SingleOrDefault(p => p.Key.ToLower() == "accept").Value;
  207. }
  208. var response = (HttpWebResponse)req.GetResponse();
  209. using (Stream stream = response.GetResponseStream())
  210. {
  211. if (stream == null)
  212. {
  213. result = string.Empty;
  214. }
  215. else
  216. {
  217. using (StreamReader reader = new StreamReader(stream, Encoding.GetEncoding("UTF-8")))
  218. {
  219. result = reader.ReadToEnd();
  220. }
  221. }
  222. }
  223. }
  224. catch (Exception ex)
  225. {
  226. throw ex;
  227. }
  228. return result;
  229. }
  230. private static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
  231. {
  232. return true;
  233. }
  234. private static X509Certificate2 GetSentosaCertificate()
  235. {
  236. X509Store userCaStore = new X509Store(StoreName.My, StoreLocation.LocalMachine);
  237. try
  238. {
  239. userCaStore.Open(OpenFlags.ReadOnly);
  240. X509Certificate2Collection certificatesInStore = userCaStore.Certificates;
  241. X509Certificate2Collection findResult = certificatesInStore.Find(X509FindType.FindBySubjectName, "server", true);
  242. X509Certificate2 clientCertificate = null;
  243. if (findResult.Count == 1)
  244. {
  245. clientCertificate = findResult[0];
  246. }
  247. else
  248. {
  249. throw new Exception("Unable to locate the correct client certificate.");
  250. }
  251. return clientCertificate;
  252. }
  253. catch
  254. {
  255. throw;
  256. }
  257. finally
  258. {
  259. userCaStore.Close();
  260. }
  261. }
  262. #endregion
  263. #region 去除HTML标记
  264. /// <summary>
  265. /// 去除HTML标记
  266. /// </summary>
  267. /// <param name="NoHTML">包括HTML的源码 </param>
  268. /// <returns>已经去除后的文字</returns>
  269. //public static string NoHtml(string Htmlstring)
  270. //{
  271. // //删除脚本
  272. // Htmlstring = Regex.Replace(Htmlstring, @"<script[^>]*?>.*?</script>", "", RegexOptions.IgnoreCase);
  273. // //删除HTML
  274. // Htmlstring = Regex.Replace(Htmlstring, @"<(.[^>]*)>", "", RegexOptions.IgnoreCase);
  275. // Htmlstring = Regex.Replace(Htmlstring, @"([\r\n])[\s]+", "", RegexOptions.IgnoreCase);
  276. // Htmlstring = Regex.Replace(Htmlstring, @"-->", "", RegexOptions.IgnoreCase);
  277. // Htmlstring = Regex.Replace(Htmlstring, @"<!--.*", "", RegexOptions.IgnoreCase);
  278. // Htmlstring = Regex.Replace(Htmlstring, @"&(quot|#34);", "\"", RegexOptions.IgnoreCase);
  279. // Htmlstring = Regex.Replace(Htmlstring, @"&(amp|#38);", "&", RegexOptions.IgnoreCase);
  280. // Htmlstring = Regex.Replace(Htmlstring, @"&(lt|#60);", "<", RegexOptions.IgnoreCase);
  281. // Htmlstring = Regex.Replace(Htmlstring, @"&(gt|#62);", ">", RegexOptions.IgnoreCase);
  282. // Htmlstring = Regex.Replace(Htmlstring, @"&(nbsp|#160);", " ", RegexOptions.IgnoreCase);
  283. // Htmlstring = Regex.Replace(Htmlstring, @"&(iexcl|#161);", "\xa1", RegexOptions.IgnoreCase);
  284. // Htmlstring = Regex.Replace(Htmlstring, @"&(cent|#162);", "\xa2", RegexOptions.IgnoreCase);
  285. // Htmlstring = Regex.Replace(Htmlstring, @"&(pound|#163);", "\xa3", RegexOptions.IgnoreCase);
  286. // Htmlstring = Regex.Replace(Htmlstring, @"&(copy|#169);", "\xa9", RegexOptions.IgnoreCase);
  287. // Htmlstring = Regex.Replace(Htmlstring, @"&#(\d+);", "", RegexOptions.IgnoreCase);
  288. // Htmlstring = Regex.Replace(Htmlstring, @"&hellip;", "", RegexOptions.IgnoreCase);
  289. // Htmlstring = Regex.Replace(Htmlstring, @"&mdash;", "", RegexOptions.IgnoreCase);
  290. // Htmlstring = Regex.Replace(Htmlstring, @"&ldquo;", "", RegexOptions.IgnoreCase);
  291. // Htmlstring.Replace("<", "");
  292. // Htmlstring = Regex.Replace(Htmlstring, @"&rdquo;", "", RegexOptions.IgnoreCase);
  293. // Htmlstring.Replace(">", "");
  294. // Htmlstring.Replace("\r\n", "");
  295. // Htmlstring = HttpContext.Current.Server.HtmlEncode(Htmlstring).Trim();
  296. // return Htmlstring;
  297. //}
  298. #endregion
  299. #region 格式化文本(防止SQL注入)
  300. /// <summary>
  301. /// 格式化文本(防止SQL注入)
  302. /// </summary>
  303. /// <param name="str"></param>
  304. /// <returns></returns>
  305. public static string Formatstr(string html)
  306. {
  307. System.Text.RegularExpressions.Regex regex1 = new System.Text.RegularExpressions.Regex(@"<script[\s\S]+</script *>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
  308. System.Text.RegularExpressions.Regex regex2 = new System.Text.RegularExpressions.Regex(@" href *= *[\s\S]*script *:", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
  309. System.Text.RegularExpressions.Regex regex3 = new System.Text.RegularExpressions.Regex(@" on[\s\S]*=", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
  310. System.Text.RegularExpressions.Regex regex4 = new System.Text.RegularExpressions.Regex(@"<iframe[\s\S]+</iframe *>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
  311. System.Text.RegularExpressions.Regex regex5 = new System.Text.RegularExpressions.Regex(@"<frameset[\s\S]+</frameset *>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
  312. System.Text.RegularExpressions.Regex regex10 = new System.Text.RegularExpressions.Regex(@"select", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
  313. System.Text.RegularExpressions.Regex regex11 = new System.Text.RegularExpressions.Regex(@"update", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
  314. System.Text.RegularExpressions.Regex regex12 = new System.Text.RegularExpressions.Regex(@"delete", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
  315. html = regex1.Replace(html, ""); //过滤<script></script>标记
  316. html = regex2.Replace(html, ""); //过滤href=javascript: (<A>) 属性
  317. html = regex3.Replace(html, " _disibledevent="); //过滤其它控件的on...事件
  318. html = regex4.Replace(html, ""); //过滤iframe
  319. html = regex10.Replace(html, "s_elect");
  320. html = regex11.Replace(html, "u_pudate");
  321. html = regex12.Replace(html, "d_elete");
  322. html = html.Replace("'", "’");
  323. html = html.Replace("&nbsp;", " ");
  324. return html;
  325. }
  326. #endregion
  327. }
  328. }