HttpWebRequestHelper.cs 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. using System;
  2. using System.Collections;
  3. using System.IO;
  4. using System.Net;
  5. using System.Text;
  6. namespace LYFZ.OtherExpansion.Win32
  7. {
  8. public class HttpWebRequestHelper
  9. {
  10. private class UrlDecoder
  11. {
  12. private int _bufferSize;
  13. private byte[] _byteBuffer;
  14. private char[] _charBuffer;
  15. private Encoding _encoding;
  16. private int _numBytes;
  17. private int _numChars;
  18. public UrlDecoder(int bufferSize, Encoding encoding)
  19. {
  20. this._bufferSize = bufferSize;
  21. this._encoding = encoding;
  22. this._charBuffer = new char[bufferSize];
  23. }
  24. public void AddByte(byte b)
  25. {
  26. if (this._byteBuffer == null)
  27. {
  28. this._byteBuffer = new byte[this._bufferSize];
  29. }
  30. this._byteBuffer[this._numBytes++] = b;
  31. }
  32. public void AddChar(char ch)
  33. {
  34. if (this._numBytes > 0)
  35. {
  36. this.FlushBytes();
  37. }
  38. this._charBuffer[this._numChars++] = ch;
  39. }
  40. private void FlushBytes()
  41. {
  42. if (this._numBytes > 0)
  43. {
  44. this._numChars += this._encoding.GetChars(this._byteBuffer, 0, this._numBytes, this._charBuffer, this._numChars);
  45. this._numBytes = 0;
  46. }
  47. }
  48. public string GetString()
  49. {
  50. if (this._numBytes > 0)
  51. {
  52. this.FlushBytes();
  53. }
  54. if (this._numChars > 0)
  55. {
  56. return new string(this._charBuffer, 0, this._numChars);
  57. }
  58. return string.Empty;
  59. }
  60. }
  61. private Encoding encoding = Encoding.UTF8;
  62. public string Boundary
  63. {
  64. get
  65. {
  66. string[] strArray2 = this.ContentType.Split(new char[]
  67. {
  68. ';'
  69. });
  70. if (strArray2[0].Trim().ToLower() == "multipart/form-data")
  71. {
  72. string[] strArray3 = strArray2[1].Split(new char[]
  73. {
  74. '='
  75. });
  76. return "--" + strArray3[1];
  77. }
  78. return null;
  79. }
  80. }
  81. public string ContentType
  82. {
  83. get
  84. {
  85. return "multipart/form-data; boundary=---------------------------7d5b915500cee";
  86. }
  87. }
  88. public Encoding Encoding
  89. {
  90. get
  91. {
  92. return this.encoding;
  93. }
  94. set
  95. {
  96. this.encoding = value;
  97. }
  98. }
  99. public byte[] CreateFieldData(string fieldName, string fieldValue)
  100. {
  101. string s = string.Format(this.Boundary + "\r\nContent-Disposition: form-data; name=\"{0}\"\r\n\r\n{1}\r\n", fieldName, fieldValue);
  102. return this.encoding.GetBytes(s);
  103. }
  104. public byte[] CreateFieldData(string fieldName, string filename, string contentType, byte[] fileBytes)
  105. {
  106. string s = "\r\n";
  107. string str3 = string.Format(this.Boundary + "\r\nContent-Disposition: form-data; name=\"{0}\"; filename=\"{1}\"\r\nContent-Type: {2}\r\n\r\n", fieldName, filename, contentType);
  108. byte[] bytes = this.encoding.GetBytes(str3);
  109. byte[] buffer2 = this.encoding.GetBytes(s);
  110. byte[] array = new byte[bytes.Length + fileBytes.Length + buffer2.Length];
  111. bytes.CopyTo(array, 0);
  112. fileBytes.CopyTo(array, bytes.Length);
  113. buffer2.CopyTo(array, bytes.Length + fileBytes.Length);
  114. return array;
  115. }
  116. public Encoding GetEncoding(HttpWebResponse response)
  117. {
  118. string contentEncoding = response.ContentEncoding;
  119. Encoding encoding = Encoding.Default;
  120. if (contentEncoding == "")
  121. {
  122. string contentType = response.ContentType;
  123. if (contentType.ToLower().IndexOf("charset") != -1)
  124. {
  125. contentEncoding = contentType.Substring(contentType.ToLower().IndexOf("charset=") + "charset=".Length);
  126. }
  127. }
  128. if (contentEncoding != "")
  129. {
  130. try
  131. {
  132. encoding = Encoding.GetEncoding(contentEncoding);
  133. }
  134. catch
  135. {
  136. }
  137. }
  138. return encoding;
  139. }
  140. private static int HexToInt(char h)
  141. {
  142. if (h >= '0' && h <= '9')
  143. {
  144. return (int)(h - '0');
  145. }
  146. if (h >= 'a' && h <= 'f')
  147. {
  148. return (int)(h - 'a' + '\n');
  149. }
  150. if (h >= 'A' && h <= 'F')
  151. {
  152. return (int)(h - 'A' + '\n');
  153. }
  154. return -1;
  155. }
  156. public static char IntToHex(int n)
  157. {
  158. if (n <= 9)
  159. {
  160. return (char)(n + 48);
  161. }
  162. return (char)(n - 10 + 97);
  163. }
  164. public static bool IsSafe(char ch)
  165. {
  166. if ((ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z') || (ch >= '0' && ch <= '9'))
  167. {
  168. return true;
  169. }
  170. if (ch != '!')
  171. {
  172. switch (ch)
  173. {
  174. case '\'':
  175. case '(':
  176. case ')':
  177. case '*':
  178. case '-':
  179. case '.':
  180. return true;
  181. case '+':
  182. case ',':
  183. break;
  184. default:
  185. if (ch == '_')
  186. {
  187. return true;
  188. }
  189. break;
  190. }
  191. return false;
  192. }
  193. return true;
  194. }
  195. public byte[] JoinBytes(ArrayList byteArrays)
  196. {
  197. int num = 0;
  198. int index = 0;
  199. string s = this.Boundary + "--\r\n";
  200. byte[] bytes = this.encoding.GetBytes(s);
  201. byteArrays.Add(bytes);
  202. foreach (byte[] buffer2 in byteArrays)
  203. {
  204. num += buffer2.Length;
  205. }
  206. byte[] array = new byte[num];
  207. foreach (byte[] buffer3 in byteArrays)
  208. {
  209. buffer3.CopyTo(array, index);
  210. index += buffer3.Length;
  211. }
  212. return array;
  213. }
  214. public string TextContent(HttpWebResponse response)
  215. {
  216. string str = "";
  217. Stream responseStream = response.GetResponseStream();
  218. StreamReader reader = new StreamReader(responseStream, this.GetEncoding(response));
  219. string str2;
  220. while ((str2 = reader.ReadLine()) != null)
  221. {
  222. str = str + str2 + "\r\n";
  223. }
  224. responseStream.Close();
  225. return str;
  226. }
  227. public static string UrlDecode(string str)
  228. {
  229. if (str == null)
  230. {
  231. return null;
  232. }
  233. return HttpWebRequestHelper.UrlDecode(str, Encoding.UTF8);
  234. }
  235. public static string UrlDecode(string str, Encoding e)
  236. {
  237. if (str == null)
  238. {
  239. return null;
  240. }
  241. return HttpWebRequestHelper.UrlDecodeStringFromStringInternal(str, e);
  242. }
  243. private static string UrlDecodeStringFromStringInternal(string s, Encoding e)
  244. {
  245. int length = s.Length;
  246. HttpWebRequestHelper.UrlDecoder decoder = new HttpWebRequestHelper.UrlDecoder(length, e);
  247. int i = 0;
  248. while (i < length)
  249. {
  250. char ch = s[i];
  251. if (ch == '+')
  252. {
  253. ch = ' ';
  254. goto IL_106;
  255. }
  256. if (ch != '%' || i >= length - 2)
  257. {
  258. goto IL_106;
  259. }
  260. if (s[i + 1] == 'u' && i < length - 5)
  261. {
  262. int num3 = HttpWebRequestHelper.HexToInt(s[i + 2]);
  263. int num4 = HttpWebRequestHelper.HexToInt(s[i + 3]);
  264. int num5 = HttpWebRequestHelper.HexToInt(s[i + 4]);
  265. int num6 = HttpWebRequestHelper.HexToInt(s[i + 5]);
  266. if (num3 < 0 || num4 < 0 || num5 < 0 || num6 < 0)
  267. {
  268. goto IL_106;
  269. }
  270. ch = (char)(num3 << 12 | num4 << 8 | num5 << 4 | num6);
  271. i += 5;
  272. decoder.AddChar(ch);
  273. }
  274. else
  275. {
  276. int num7 = HttpWebRequestHelper.HexToInt(s[i + 1]);
  277. int num8 = HttpWebRequestHelper.HexToInt(s[i + 2]);
  278. if (num7 < 0 || num8 < 0)
  279. {
  280. goto IL_106;
  281. }
  282. byte b = (byte)(num7 << 4 | num8);
  283. i += 2;
  284. decoder.AddByte(b);
  285. }
  286. IL_120:
  287. i++;
  288. continue;
  289. IL_106:
  290. if ((ch & 'タ') == '\0')
  291. {
  292. decoder.AddByte((byte)ch);
  293. goto IL_120;
  294. }
  295. decoder.AddChar(ch);
  296. goto IL_120;
  297. }
  298. return decoder.GetString();
  299. }
  300. public static string UrlEncode(string str)
  301. {
  302. if (str == null)
  303. {
  304. return null;
  305. }
  306. return HttpWebRequestHelper.UrlEncode(str, Encoding.UTF8);
  307. }
  308. public static string UrlEncode(string str, Encoding e)
  309. {
  310. if (str == null)
  311. {
  312. return null;
  313. }
  314. return Encoding.ASCII.GetString(HttpWebRequestHelper.UrlEncodeToBytes(str, e));
  315. }
  316. private static byte[] UrlEncodeBytesToBytesInternal(byte[] bytes, int offset, int count, bool alwaysCreateReturnValue)
  317. {
  318. int num = 0;
  319. int num2 = 0;
  320. for (int i = 0; i < count; i++)
  321. {
  322. char ch = (char)bytes[offset + i];
  323. if (ch == ' ')
  324. {
  325. num++;
  326. }
  327. else
  328. {
  329. if (!HttpWebRequestHelper.IsSafe(ch))
  330. {
  331. num2++;
  332. }
  333. }
  334. }
  335. if (!alwaysCreateReturnValue && num == 0 && num2 == 0)
  336. {
  337. return bytes;
  338. }
  339. byte[] buffer = new byte[count + num2 * 2];
  340. int num3 = 0;
  341. for (int j = 0; j < count; j++)
  342. {
  343. byte num4 = bytes[offset + j];
  344. char ch2 = (char)num4;
  345. if (HttpWebRequestHelper.IsSafe(ch2))
  346. {
  347. buffer[num3++] = num4;
  348. }
  349. else
  350. {
  351. if (ch2 == ' ')
  352. {
  353. buffer[num3++] = 43;
  354. }
  355. else
  356. {
  357. buffer[num3++] = 37;
  358. buffer[num3++] = (byte)HttpWebRequestHelper.IntToHex(num4 >> 4 & 15);
  359. buffer[num3++] = (byte)HttpWebRequestHelper.IntToHex((int)(num4 & 15));
  360. }
  361. }
  362. }
  363. return buffer;
  364. }
  365. public static byte[] UrlEncodeToBytes(byte[] bytes)
  366. {
  367. if (bytes == null)
  368. {
  369. return null;
  370. }
  371. return HttpWebRequestHelper.UrlEncodeToBytes(bytes, 0, bytes.Length);
  372. }
  373. public static byte[] UrlEncodeToBytes(string str, Encoding e)
  374. {
  375. if (str == null)
  376. {
  377. return null;
  378. }
  379. byte[] bytes = e.GetBytes(str);
  380. return HttpWebRequestHelper.UrlEncodeBytesToBytesInternal(bytes, 0, bytes.Length, false);
  381. }
  382. public static byte[] UrlEncodeToBytes(byte[] bytes, int offset, int count)
  383. {
  384. if (bytes == null && count == 0)
  385. {
  386. return null;
  387. }
  388. if (bytes == null)
  389. {
  390. throw new ArgumentNullException("bytes");
  391. }
  392. if (offset < 0 || offset > bytes.Length)
  393. {
  394. throw new ArgumentOutOfRangeException("offset");
  395. }
  396. if (count < 0 || offset + count > bytes.Length)
  397. {
  398. throw new ArgumentOutOfRangeException("count");
  399. }
  400. return HttpWebRequestHelper.UrlEncodeBytesToBytesInternal(bytes, offset, count, true);
  401. }
  402. }
  403. }