123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403 |
- using System;
- using System.Collections;
- using System.IO;
- using System.Net;
- using System.Text;
- namespace LYFZ.OtherExpansion.Win32
- {
- public class HttpWebRequestHelper
- {
- private class UrlDecoder
- {
- private int _bufferSize;
- private byte[] _byteBuffer;
- private char[] _charBuffer;
- private Encoding _encoding;
- private int _numBytes;
- private int _numChars;
- public UrlDecoder(int bufferSize, Encoding encoding)
- {
- this._bufferSize = bufferSize;
- this._encoding = encoding;
- this._charBuffer = new char[bufferSize];
- }
- public void AddByte(byte b)
- {
- if (this._byteBuffer == null)
- {
- this._byteBuffer = new byte[this._bufferSize];
- }
- this._byteBuffer[this._numBytes++] = b;
- }
- public void AddChar(char ch)
- {
- if (this._numBytes > 0)
- {
- this.FlushBytes();
- }
- this._charBuffer[this._numChars++] = ch;
- }
- private void FlushBytes()
- {
- if (this._numBytes > 0)
- {
- this._numChars += this._encoding.GetChars(this._byteBuffer, 0, this._numBytes, this._charBuffer, this._numChars);
- this._numBytes = 0;
- }
- }
- public string GetString()
- {
- if (this._numBytes > 0)
- {
- this.FlushBytes();
- }
- if (this._numChars > 0)
- {
- return new string(this._charBuffer, 0, this._numChars);
- }
- return string.Empty;
- }
- }
- private Encoding encoding = Encoding.UTF8;
- public string Boundary
- {
- get
- {
- string[] strArray2 = this.ContentType.Split(new char[]
- {
- ';'
- });
- if (strArray2[0].Trim().ToLower() == "multipart/form-data")
- {
- string[] strArray3 = strArray2[1].Split(new char[]
- {
- '='
- });
- return "--" + strArray3[1];
- }
- return null;
- }
- }
- public string ContentType
- {
- get
- {
- return "multipart/form-data; boundary=---------------------------7d5b915500cee";
- }
- }
- public Encoding Encoding
- {
- get
- {
- return this.encoding;
- }
- set
- {
- this.encoding = value;
- }
- }
- public byte[] CreateFieldData(string fieldName, string fieldValue)
- {
- string s = string.Format(this.Boundary + "\r\nContent-Disposition: form-data; name=\"{0}\"\r\n\r\n{1}\r\n", fieldName, fieldValue);
- return this.encoding.GetBytes(s);
- }
- public byte[] CreateFieldData(string fieldName, string filename, string contentType, byte[] fileBytes)
- {
- string s = "\r\n";
- 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);
- byte[] bytes = this.encoding.GetBytes(str3);
- byte[] buffer2 = this.encoding.GetBytes(s);
- byte[] array = new byte[bytes.Length + fileBytes.Length + buffer2.Length];
- bytes.CopyTo(array, 0);
- fileBytes.CopyTo(array, bytes.Length);
- buffer2.CopyTo(array, bytes.Length + fileBytes.Length);
- return array;
- }
- public Encoding GetEncoding(HttpWebResponse response)
- {
- string contentEncoding = response.ContentEncoding;
- Encoding encoding = Encoding.Default;
- if (contentEncoding == "")
- {
- string contentType = response.ContentType;
- if (contentType.ToLower().IndexOf("charset") != -1)
- {
- contentEncoding = contentType.Substring(contentType.ToLower().IndexOf("charset=") + "charset=".Length);
- }
- }
- if (contentEncoding != "")
- {
- try
- {
- encoding = Encoding.GetEncoding(contentEncoding);
- }
- catch
- {
- }
- }
- return encoding;
- }
- private static int HexToInt(char h)
- {
- if (h >= '0' && h <= '9')
- {
- return (int)(h - '0');
- }
- if (h >= 'a' && h <= 'f')
- {
- return (int)(h - 'a' + '\n');
- }
- if (h >= 'A' && h <= 'F')
- {
- return (int)(h - 'A' + '\n');
- }
- return -1;
- }
- public static char IntToHex(int n)
- {
- if (n <= 9)
- {
- return (char)(n + 48);
- }
- return (char)(n - 10 + 97);
- }
- public static bool IsSafe(char ch)
- {
- if ((ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z') || (ch >= '0' && ch <= '9'))
- {
- return true;
- }
- if (ch != '!')
- {
- switch (ch)
- {
- case '\'':
- case '(':
- case ')':
- case '*':
- case '-':
- case '.':
- return true;
- case '+':
- case ',':
- break;
- default:
- if (ch == '_')
- {
- return true;
- }
- break;
- }
- return false;
- }
- return true;
- }
- public byte[] JoinBytes(ArrayList byteArrays)
- {
- int num = 0;
- int index = 0;
- string s = this.Boundary + "--\r\n";
- byte[] bytes = this.encoding.GetBytes(s);
- byteArrays.Add(bytes);
- foreach (byte[] buffer2 in byteArrays)
- {
- num += buffer2.Length;
- }
- byte[] array = new byte[num];
- foreach (byte[] buffer3 in byteArrays)
- {
- buffer3.CopyTo(array, index);
- index += buffer3.Length;
- }
- return array;
- }
- public string TextContent(HttpWebResponse response)
- {
- string str = "";
- Stream responseStream = response.GetResponseStream();
- StreamReader reader = new StreamReader(responseStream, this.GetEncoding(response));
- string str2;
- while ((str2 = reader.ReadLine()) != null)
- {
- str = str + str2 + "\r\n";
- }
- responseStream.Close();
- return str;
- }
- public static string UrlDecode(string str)
- {
- if (str == null)
- {
- return null;
- }
- return HttpWebRequestHelper.UrlDecode(str, Encoding.UTF8);
- }
- public static string UrlDecode(string str, Encoding e)
- {
- if (str == null)
- {
- return null;
- }
- return HttpWebRequestHelper.UrlDecodeStringFromStringInternal(str, e);
- }
- private static string UrlDecodeStringFromStringInternal(string s, Encoding e)
- {
- int length = s.Length;
- HttpWebRequestHelper.UrlDecoder decoder = new HttpWebRequestHelper.UrlDecoder(length, e);
- int i = 0;
- while (i < length)
- {
- char ch = s[i];
- if (ch == '+')
- {
- ch = ' ';
- goto IL_106;
- }
- if (ch != '%' || i >= length - 2)
- {
- goto IL_106;
- }
- if (s[i + 1] == 'u' && i < length - 5)
- {
- int num3 = HttpWebRequestHelper.HexToInt(s[i + 2]);
- int num4 = HttpWebRequestHelper.HexToInt(s[i + 3]);
- int num5 = HttpWebRequestHelper.HexToInt(s[i + 4]);
- int num6 = HttpWebRequestHelper.HexToInt(s[i + 5]);
- if (num3 < 0 || num4 < 0 || num5 < 0 || num6 < 0)
- {
- goto IL_106;
- }
- ch = (char)(num3 << 12 | num4 << 8 | num5 << 4 | num6);
- i += 5;
- decoder.AddChar(ch);
- }
- else
- {
- int num7 = HttpWebRequestHelper.HexToInt(s[i + 1]);
- int num8 = HttpWebRequestHelper.HexToInt(s[i + 2]);
- if (num7 < 0 || num8 < 0)
- {
- goto IL_106;
- }
- byte b = (byte)(num7 << 4 | num8);
- i += 2;
- decoder.AddByte(b);
- }
- IL_120:
- i++;
- continue;
- IL_106:
- if ((ch & 'タ') == '\0')
- {
- decoder.AddByte((byte)ch);
- goto IL_120;
- }
- decoder.AddChar(ch);
- goto IL_120;
- }
- return decoder.GetString();
- }
- public static string UrlEncode(string str)
- {
- if (str == null)
- {
- return null;
- }
- return HttpWebRequestHelper.UrlEncode(str, Encoding.UTF8);
- }
- public static string UrlEncode(string str, Encoding e)
- {
- if (str == null)
- {
- return null;
- }
- return Encoding.ASCII.GetString(HttpWebRequestHelper.UrlEncodeToBytes(str, e));
- }
- private static byte[] UrlEncodeBytesToBytesInternal(byte[] bytes, int offset, int count, bool alwaysCreateReturnValue)
- {
- int num = 0;
- int num2 = 0;
- for (int i = 0; i < count; i++)
- {
- char ch = (char)bytes[offset + i];
- if (ch == ' ')
- {
- num++;
- }
- else
- {
- if (!HttpWebRequestHelper.IsSafe(ch))
- {
- num2++;
- }
- }
- }
- if (!alwaysCreateReturnValue && num == 0 && num2 == 0)
- {
- return bytes;
- }
- byte[] buffer = new byte[count + num2 * 2];
- int num3 = 0;
- for (int j = 0; j < count; j++)
- {
- byte num4 = bytes[offset + j];
- char ch2 = (char)num4;
- if (HttpWebRequestHelper.IsSafe(ch2))
- {
- buffer[num3++] = num4;
- }
- else
- {
- if (ch2 == ' ')
- {
- buffer[num3++] = 43;
- }
- else
- {
- buffer[num3++] = 37;
- buffer[num3++] = (byte)HttpWebRequestHelper.IntToHex(num4 >> 4 & 15);
- buffer[num3++] = (byte)HttpWebRequestHelper.IntToHex((int)(num4 & 15));
- }
- }
- }
- return buffer;
- }
- public static byte[] UrlEncodeToBytes(byte[] bytes)
- {
- if (bytes == null)
- {
- return null;
- }
- return HttpWebRequestHelper.UrlEncodeToBytes(bytes, 0, bytes.Length);
- }
- public static byte[] UrlEncodeToBytes(string str, Encoding e)
- {
- if (str == null)
- {
- return null;
- }
- byte[] bytes = e.GetBytes(str);
- return HttpWebRequestHelper.UrlEncodeBytesToBytesInternal(bytes, 0, bytes.Length, false);
- }
- public static byte[] UrlEncodeToBytes(byte[] bytes, int offset, int count)
- {
- if (bytes == null && count == 0)
- {
- return null;
- }
- if (bytes == null)
- {
- throw new ArgumentNullException("bytes");
- }
- if (offset < 0 || offset > bytes.Length)
- {
- throw new ArgumentOutOfRangeException("offset");
- }
- if (count < 0 || offset + count > bytes.Length)
- {
- throw new ArgumentOutOfRangeException("count");
- }
- return HttpWebRequestHelper.UrlEncodeBytesToBytesInternal(bytes, offset, count, true);
- }
- }
- }
|