WebHelper.cs 16 KB

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