2014-01-29 10:33:24 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Net;
|
|
|
|
|
using System.Net.Security;
|
|
|
|
|
using System.Security.Cryptography.X509Certificates;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
//From:http://blog.csdn.net/zhoufoxcn/article/details/6404236
|
|
|
|
|
namespace Wox.Plugin.Fanyi
|
|
|
|
|
{
|
|
|
|
|
public class HttpRequest
|
|
|
|
|
{
|
|
|
|
|
private static readonly string DefaultUserAgent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)";
|
2014-03-13 14:31:44 +00:00
|
|
|
|
|
2014-01-29 10:33:24 +00:00
|
|
|
|
public static HttpWebResponse CreateGetHttpResponse(string url, int? timeout, string userAgent, CookieCollection cookies)
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrEmpty(url))
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("url");
|
|
|
|
|
}
|
|
|
|
|
HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest;
|
|
|
|
|
request.Method = "GET";
|
|
|
|
|
request.UserAgent = DefaultUserAgent;
|
|
|
|
|
if (!string.IsNullOrEmpty(userAgent))
|
|
|
|
|
{
|
|
|
|
|
request.UserAgent = userAgent;
|
|
|
|
|
}
|
|
|
|
|
if (timeout.HasValue)
|
|
|
|
|
{
|
|
|
|
|
request.Timeout = timeout.Value;
|
|
|
|
|
}
|
|
|
|
|
if (cookies != null)
|
|
|
|
|
{
|
|
|
|
|
request.CookieContainer = new CookieContainer();
|
|
|
|
|
request.CookieContainer.Add(cookies);
|
|
|
|
|
}
|
|
|
|
|
return request.GetResponse() as HttpWebResponse;
|
|
|
|
|
}
|
2014-03-13 14:31:44 +00:00
|
|
|
|
|
2014-01-29 10:33:24 +00:00
|
|
|
|
public static HttpWebResponse CreatePostHttpResponse(string url, IDictionary<string, string> parameters, int? timeout, string userAgent, Encoding requestEncoding, CookieCollection cookies)
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrEmpty(url))
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("url");
|
|
|
|
|
}
|
|
|
|
|
if (requestEncoding == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("requestEncoding");
|
|
|
|
|
}
|
|
|
|
|
HttpWebRequest request = null;
|
|
|
|
|
if (url.StartsWith("https", StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
|
|
|
|
|
request = WebRequest.Create(url) as HttpWebRequest;
|
|
|
|
|
request.ProtocolVersion = HttpVersion.Version10;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
request = WebRequest.Create(url) as HttpWebRequest;
|
|
|
|
|
}
|
|
|
|
|
request.Method = "POST";
|
|
|
|
|
request.ContentType = "application/x-www-form-urlencoded";
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(userAgent))
|
|
|
|
|
{
|
|
|
|
|
request.UserAgent = userAgent;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
request.UserAgent = DefaultUserAgent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (timeout.HasValue)
|
|
|
|
|
{
|
|
|
|
|
request.Timeout = timeout.Value;
|
|
|
|
|
}
|
|
|
|
|
if (cookies != null)
|
|
|
|
|
{
|
|
|
|
|
request.CookieContainer = new CookieContainer();
|
|
|
|
|
request.CookieContainer.Add(cookies);
|
|
|
|
|
}
|
|
|
|
|
if (!(parameters == null || parameters.Count == 0))
|
|
|
|
|
{
|
|
|
|
|
StringBuilder buffer = new StringBuilder();
|
|
|
|
|
int i = 0;
|
|
|
|
|
foreach (string key in parameters.Keys)
|
|
|
|
|
{
|
|
|
|
|
if (i > 0)
|
|
|
|
|
{
|
|
|
|
|
buffer.AppendFormat("&{0}={1}", key, parameters[key]);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
buffer.AppendFormat("{0}={1}", key, parameters[key]);
|
|
|
|
|
}
|
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|
byte[] data = requestEncoding.GetBytes(buffer.ToString());
|
|
|
|
|
using (Stream stream = request.GetRequestStream())
|
|
|
|
|
{
|
|
|
|
|
stream.Write(data, 0, data.Length);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return request.GetResponse() as HttpWebResponse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
|
|
|
|
|
{
|
2014-03-13 14:31:44 +00:00
|
|
|
|
return true;
|
2014-01-29 10:33:24 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|