123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434 |
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.IO;
- using System.Text;
- namespace BestHTTP
- {
- using BestHTTP.Authentication;
- using BestHTTP.Extensions;
- using BestHTTP.Forms;
- #if !BESTHTTP_DISABLE_COOKIES && (!UNITY_WEBGL || UNITY_EDITOR)
- using BestHTTP.Cookies;
- #endif
- /// <summary>
- /// Possible logical states of a HTTTPRequest object.
- /// </summary>
- public enum HTTPRequestStates
- {
- /// <summary>
- /// Initial status of a request. No Callback will be called with this status.
- /// </summary>
- Initial,
- /// <summary>
- /// Waiting in a queue to be processed. No Callback will be called with this status.
- /// </summary>
- Queued,
- /// <summary>
- /// Processing of the request started. In this state the client will send the request, and parse the response. No Callback will be called with this status.
- /// </summary>
- Processing,
- /// <summary>
- /// The request finished without problem. Parsing the response done, the result can be used. The user defined Callback will be called with a valid response object. The request’s Exception property will be null.
- /// </summary>
- Finished,
- /// <summary>
- /// The request finished with an unexpected error. The user defined Callback will be called with a null response object. The request's Exception property may contain more info about the error, but it can be null.
- /// </summary>
- Error,
- /// <summary>
- /// The request aborted by the client(HTTPRequest’s Abort() function). The user defined Callback will be called with a null response. The request’s Exception property will be null.
- /// </summary>
- Aborted,
- /// <summary>
- /// Connecting to the server timed out. The user defined Callback will be called with a null response. The request’s Exception property will be null.
- /// </summary>
- ConnectionTimedOut,
- /// <summary>
- /// The request didn't finished in the given time. The user defined Callback will be called with a null response. The request’s Exception property will be null.
- /// </summary>
- TimedOut
- }
- public delegate void OnRequestFinishedDelegate(HTTPRequest originalRequest, HTTPResponse response);
- public delegate void OnDownloadProgressDelegate(HTTPRequest originalRequest, long downloaded, long downloadLength);
- public delegate void OnUploadProgressDelegate(HTTPRequest originalRequest, long uploaded, long uploadLength);
- public delegate bool OnBeforeRedirectionDelegate(HTTPRequest originalRequest, HTTPResponse response, Uri redirectUri);
- public delegate void OnHeaderEnumerationDelegate(string header, List<string> values);
- public delegate void OnBeforeHeaderSendDelegate(HTTPRequest req);
- /// <summary>
- ///
- /// </summary>
- public sealed class HTTPRequest : IEnumerator, IEnumerator<HTTPRequest>
- {
- #region Statics
- public static readonly byte[] EOL = { HTTPResponse.CR, HTTPResponse.LF };
- /// <summary>
- /// Cached uppercase values to save some cpu cycles and GC alloc per request.
- /// </summary>
- public static readonly string[] MethodNames = {
- HTTPMethods.Get.ToString().ToUpper(),
- HTTPMethods.Head.ToString().ToUpper(),
- HTTPMethods.Post.ToString().ToUpper(),
- HTTPMethods.Put.ToString().ToUpper(),
- HTTPMethods.Delete.ToString().ToUpper(),
- HTTPMethods.Patch.ToString().ToUpper(),
- HTTPMethods.Merge.ToString().ToUpper(),
- HTTPMethods.Options.ToString().ToUpper()
- };
- /// <summary>
- /// Size of the internal buffer, and upload progress will be fired when this size of data sent to the wire. It's default value is 2 KiB.
- /// </summary>
- public static int UploadChunkSize = 2 * 1024;
- #endregion
- #region Properties
- /// <summary>
- /// The original request's Uri.
- /// </summary>
- public Uri Uri { get; private set; }
- /// <summary>
- /// The method that how we want to process our request the server.
- /// </summary>
- public HTTPMethods MethodType { get; set; }
- /// <summary>
- /// The raw data to send in a POST request. If it set all other fields that added to this request will be ignored.
- /// </summary>
- public byte[] RawData { get; set; }
- /// <summary>
- /// The stream that the plugin will use to get the data to send out the server. When this property is set, no forms or the RawData property will be used
- /// </summary>
- public Stream UploadStream { get; set; }
- /// <summary>
- /// When set to true(its default value) the plugin will call the UploadStream's Dispose() function when finished uploading the data from it. Default value is true.
- /// </summary>
- public bool DisposeUploadStream { get; set; }
- /// <summary>
- /// If it's true, the plugin will use the Stream's Length property. Otherwise the plugin will send the data chunked. Default value is true.
- /// </summary>
- public bool UseUploadStreamLength { get; set; }
- /// <summary>
- /// Called after data sent out to the wire.
- /// </summary>
- public OnUploadProgressDelegate OnUploadProgress;
- /// <summary>
- /// Indicates that the connection should be open after the response received. If its true, then the internal TCP connections will be reused if it's possible. Default value is true.
- /// The default value can be changed in the HTTPManager class. If you make rare request to the server it's should be changed to false.
- /// </summary>
- public bool IsKeepAlive
- {
- get { return isKeepAlive; }
- set
- {
- if (State == HTTPRequestStates.Processing)
- throw new NotSupportedException("Changing the IsKeepAlive property while processing the request is not supported.");
- isKeepAlive = value;
- }
- }
- #if !BESTHTTP_DISABLE_CACHING && (!UNITY_WEBGL || UNITY_EDITOR)
- /// <summary>
- /// With this property caching can be enabled/disabled on a per-request basis.
- /// </summary>
- public bool DisableCache
- {
- get { return disableCache; }
- set
- {
- if (State == HTTPRequestStates.Processing)
- throw new NotSupportedException("Changing the DisableCache property while processing the request is not supported.");
- disableCache = value;
- }
- }
- public bool CacheOnly
- {
- get { return cacheOnly; }
- set
- {
- if (State == HTTPRequestStates.Processing)
- throw new NotSupportedException("Changing the CacheOnly property while processing the request is not supported.");
- cacheOnly = value;
- }
- }
- #endif
- /// <summary>
- /// If it's true, the Callback will be called every time if we can send out at least one fragment.
- /// </summary>
- public bool UseStreaming
- {
- get { return useStreaming; }
- set
- {
- if (State == HTTPRequestStates.Processing)
- throw new NotSupportedException("Changing the UseStreaming property while processing the request is not supported.");
- useStreaming = value;
- }
- }
- /// <summary>
- /// Maximum size of a data chunk that we want to receive when streaming is set.
- /// </summary>
- public int StreamFragmentSize
- {
- get{ return streamFragmentSize; }
- set
- {
- if (State == HTTPRequestStates.Processing)
- throw new NotSupportedException("Changing the StreamFragmentSize property while processing the request is not supported.");
- if (value < 1)
- throw new System.ArgumentException("StreamFragmentSize must be at least 1.");
- streamFragmentSize = value;
- }
- }
- public int MaxFragmentQueueLength { get; set; }
- /// <summary>
- /// The Callback function that will be called when a request is fully processed or when any downloaded fragment is available if UseStreaming is true. Can be null for fire-and-forget requests.
- /// </summary>
- public OnRequestFinishedDelegate Callback { get; set; }
- /// <summary>
- /// Called when new data downloaded from the server.
- /// The first parameter is the original HTTTPRequest object itself, the second parameter is the downloaded bytes while the third parameter is the content length.
- /// <remarks>There are download modes where we can't figure out the exact length of the final content. In these cases we just guarantee that the third parameter will be at least the size of the second one.</remarks>
- /// </summary>
- public OnDownloadProgressDelegate OnProgress;
- /// <summary>
- /// Called when the current protocol is upgraded to an other. (HTTP => WebSocket for example)
- /// </summary>
- public OnRequestFinishedDelegate OnUpgraded;
- /// <summary>
- /// With this option if reading back the server's response fails, the request will fail and any exceptions can be checked through the Exception property. The default value is True for POST requests, otherwise false.
- /// </summary>
- public bool DisableRetry { get; set; }
- /// <summary>
- /// Indicates that the request is redirected. If a request is redirected, the connection that served it will be closed regardless of the value of IsKeepAlive.
- /// </summary>
- public bool IsRedirected { get; internal set; }
- /// <summary>
- /// The Uri that the request redirected to.
- /// </summary>
- public Uri RedirectUri { get; internal set; }
- /// <summary>
- /// If redirected it contains the RedirectUri.
- /// </summary>
- public Uri CurrentUri { get { return IsRedirected ? RedirectUri : Uri; } }
- /// <summary>
- /// The response to the query.
- /// <remarks>If an exception occurred during reading of the response stream or can't connect to the server, this will be null!</remarks>
- /// </summary>
- public HTTPResponse Response { get; internal set; }
- #if !BESTHTTP_DISABLE_PROXY
- /// <summary>
- /// Response from the Proxy server. It's null with transparent proxies.
- /// </summary>
- public HTTPResponse ProxyResponse { get; internal set; }
- #endif
- /// <summary>
- /// It there is an exception while processing the request or response the Response property will be null, and the Exception will be stored in this property.
- /// </summary>
- public Exception Exception { get; internal set; }
- /// <summary>
- /// Any object can be passed with the request with this property. (eq. it can be identified, etc.)
- /// </summary>
- public object Tag { get; set; }
- /// <summary>
- /// The UserName, Password pair that the plugin will use to authenticate to the remote server.
- /// </summary>
- public Credentials Credentials { get; set; }
- #if !BESTHTTP_DISABLE_PROXY
- /// <summary>
- /// True, if there is a Proxy object.
- /// </summary>
- public bool HasProxy { get { return Proxy != null; } }
- /// <summary>
- /// A web proxy's properties where the request must pass through.
- /// </summary>
- public HTTPProxy Proxy { get; set; }
- #endif
- /// <summary>
- /// How many redirection supported for this request. The default is int.MaxValue. 0 or a negative value means no redirection supported.
- /// </summary>
- public int MaxRedirects { get; set; }
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- /// <summary>
- /// Use Bouncy Castle's code to handle the secure protocol instead of Mono's. You can try to set it true if you receive a "System.Security.Cryptography.CryptographicException: Unsupported hash algorithm" exception.
- /// </summary>
- public bool UseAlternateSSL { get; set; }
- #endif
- #if !BESTHTTP_DISABLE_COOKIES && (!UNITY_WEBGL || UNITY_EDITOR)
- /// <summary>
- /// If true cookies will be added to the headers (if any), and parsed from the response. If false, all cookie operations will be ignored. It's default value is HTTPManager's IsCookiesEnabled.
- /// </summary>
- public bool IsCookiesEnabled { get; set; }
- /// <summary>
- /// Cookies that are added to this list will be sent to the server alongside withe the server sent ones. If cookies are disabled only these cookies will be sent.
- /// </summary>
- public List<Cookie> Cookies
- {
- get
- {
- if (customCookies == null)
- customCookies = new List<Cookie>();
- return customCookies;
- }
- set { customCookies = value; }
- }
- private List<Cookie> customCookies;
- #endif
- /// <summary>
- /// What form should used. Default to Automatic.
- /// </summary>
- public HTTPFormUsage FormUsage { get; set; }
- /// <summary>
- /// Current state of this request.
- /// </summary>
- public HTTPRequestStates State { get; internal set; }
- /// <summary>
- /// How many times redirected.
- /// </summary>
- public int RedirectCount { get; internal set; }
- #if !NETFX_CORE && !UNITY_WP8
- /// <summary>
- /// Custom validator for an SslStream. This event will receive the original HTTPRequest, an X509Certificate and an X509Chain objects. It must return true if the certificate valid, false otherwise.
- /// <remarks>It's called in a thread! Not available on Windows Phone!</remarks>
- /// </summary>
- public event System.Func<HTTPRequest, System.Security.Cryptography.X509Certificates.X509Certificate, System.Security.Cryptography.X509Certificates.X509Chain, bool> CustomCertificationValidator;
- #endif
- /// <summary>
- /// Maximum time we wait to establish the connection to the target server. If set to TimeSpan.Zero or lower, no connect timeout logic is executed. Default value is 20 seconds.
- /// </summary>
- public TimeSpan ConnectTimeout { get; set; }
- /// <summary>
- /// Maximum time we want to wait to the request to finish after the connection is established. Default value is 60 seconds.
- /// <remarks>It's disabled for streaming requests! See <see cref="EnableTimoutForStreaming"/>.</remarks>
- /// </summary>
- public TimeSpan Timeout { get; set; }
- /// <summary>
- /// SaveLocal to true to enable Timeouts on streaming request. Default value is false.
- /// </summary>
- public bool EnableTimoutForStreaming { get; set; }
- /// <summary>
- /// Enables safe read method when the response's length of the content is unknown. Its default value is enabled (true).
- /// </summary>
- public bool EnableSafeReadOnUnknownContentLength { get; set; }
- /// <summary>
- /// The priority of the request. Higher priority requests will be picked from the request queue sooner than lower priority ones.
- /// </summary>
- public int Priority { get; set; }
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- /// <summary>
- /// The ICertificateVerifyer implementation that the plugin will use to verify the server certificates when the request's UseAlternateSSL property is set to true.
- /// </summary>
- public Org.BouncyCastle.Crypto.Tls.ICertificateVerifyer CustomCertificateVerifyer { get; set; }
- /// <summary>
- /// The IClientCredentialsProvider implementation that the plugin will use to send client certificates when the request's UseAlternateSSL property is set to true.
- /// </summary>
- public Org.BouncyCastle.Crypto.Tls.IClientCredentialsProvider CustomClientCredentialsProvider { get; set; }
- /// <summary>
- /// With this property custom Server Name Indication entries can be sent to the server while negotiating TLS.
- /// All added entries must conform to the rules defined in the RFC (https://tools.ietf.org/html/rfc3546#section-3.1), the plugin will not check the entries' validity!
- /// <remarks>This list will be sent to every server that the plugin must connect to while it tries to finish the request.
- /// So for example if redirected to an another server, that new server will receive this list too!</remarks>
- /// </summary>
- public List<string> CustomTLSServerNameList { get; set; }
- #endif
- /// <summary>
- ///
- /// </summary>
- public SupportedProtocols ProtocolHandler { get; set; }
- /// <summary>
- /// It's called before the plugin will do a new request to the new uri. The return value of this function will control the redirection: if it's false the redirection is aborted.
- /// This function is called on a thread other than the main Unity thread!
- /// </summary>
- public event OnBeforeRedirectionDelegate OnBeforeRedirection
- {
- add { onBeforeRedirection += value; }
- remove { onBeforeRedirection -= value; }
- }
- private OnBeforeRedirectionDelegate onBeforeRedirection;
- /// <summary>
- /// This event will be fired before the plugin will write headers to the wire. New headers can be added in this Callback. This event is called on a non-Unity thread!
- /// </summary>
- public event OnBeforeHeaderSendDelegate OnBeforeHeaderSend
- {
- add { _onBeforeHeaderSend += value; }
- remove { _onBeforeHeaderSend -= value; }
- }
- private OnBeforeHeaderSendDelegate _onBeforeHeaderSend;
- /// <summary>
- /// Setting this option to true, the processing connection will set the TCP NoDelay option to send out data as soon as it can.
- /// </summary>
- public bool TryToMinimizeTCPLatency { get; set; }
- #region Internal Properties For Progress Report Support
- /// <summary>
- /// How many bytes downloaded so far.
- /// </summary>
- internal long Downloaded { get; set; }
- /// <summary>
- /// The length of the content that we are currently downloading.
- /// If chunked encoding is used, then it is the size of the sum of all previous chunks plus the current one.
- /// When no Content-Length present and no chunked encoding is used then its size is the currently downloaded size.
- /// </summary>
- internal long DownloadLength { get; set; }
- /// <summary>
- /// SaveLocal to true when the downloaded bytes are changed, and set to false when the OnProgress event called.
- /// </summary>
- internal bool DownloadProgressChanged { get; set; }
- /// <summary>
- /// Will return the length of the UploadStream, or -1 if it's not supported.
- /// </summary>
- internal long UploadStreamLength
- {
- get
- {
- if (UploadStream == null || !UseUploadStreamLength)
- return -1;
- try
- {
- // This may will throw a NotSupportedException
- return UploadStream.Length;
- }
- catch
- {
- // We will fall back to chunked
- return -1;
- }
- }
- }
- /// <summary>
- /// How many bytes are sent to the wire
- /// </summary>
- internal long Uploaded { get; set; }
- /// <summary>
- /// How many bytes are expected we are sending. If we are don't know, then it will be -1.
- /// </summary>
- internal long UploadLength { get; set; }
- /// <summary>
- /// SaveLocal to true when the uploaded bytes are changed, and set to false when the OnUploadProgress event called.
- /// </summary>
- internal bool UploadProgressChanged { get; set; }
- #endregion
- #endregion
- #region Privates
- private bool isKeepAlive;
- #if !BESTHTTP_DISABLE_CACHING && (!UNITY_WEBGL || UNITY_EDITOR)
- private bool disableCache;
- private bool cacheOnly;
- #endif
- private int streamFragmentSize;
- private bool useStreaming;
- private Dictionary<string, List<string>> Headers { get; set; }
- /// <summary>
- /// We will collect the fields and values to the FieldCollector through the AddField and AddBinaryData functions.
- /// </summary>
- private HTTPFormBase FieldCollector;
- /// <summary>
- /// When the request about to send the request we will create a specialized form implementation(url-encoded, multipart, or the legacy WWWForm based).
- /// And we will use this instance to create the data that we will send to the server.
- /// </summary>
- private HTTPFormBase FormImpl;
- #endregion
- #region Constructors
- #region Default Get Constructors
- public HTTPRequest(Uri uri)
- : this(uri, HTTPMethods.Get, HTTPManager.KeepAliveDefaultValue,
- #if !BESTHTTP_DISABLE_CACHING && (!UNITY_WEBGL || UNITY_EDITOR)
- HTTPManager.IsCachingDisabled
- #else
- true
- #endif
- , null)
- {
- }
- public HTTPRequest(Uri uri, OnRequestFinishedDelegate callback)
- : this(uri, HTTPMethods.Get, HTTPManager.KeepAliveDefaultValue,
- #if !BESTHTTP_DISABLE_CACHING && (!UNITY_WEBGL || UNITY_EDITOR)
- HTTPManager.IsCachingDisabled
- #else
- true
- #endif
- , callback)
- {
- }
- public HTTPRequest(Uri uri, bool isKeepAlive, OnRequestFinishedDelegate callback)
- : this(uri, HTTPMethods.Get, isKeepAlive,
- #if !BESTHTTP_DISABLE_CACHING && (!UNITY_WEBGL || UNITY_EDITOR)
- HTTPManager.IsCachingDisabled
- #else
- true
- #endif
- , callback)
- {
- }
- public HTTPRequest(Uri uri, bool isKeepAlive, bool disableCache, OnRequestFinishedDelegate callback)
- : this(uri, HTTPMethods.Get, isKeepAlive, disableCache, callback)
- {
- }
- #endregion
- public HTTPRequest(Uri uri, HTTPMethods methodType)
- : this(uri, methodType, HTTPManager.KeepAliveDefaultValue,
- #if !BESTHTTP_DISABLE_CACHING && (!UNITY_WEBGL || UNITY_EDITOR)
- HTTPManager.IsCachingDisabled || methodType != HTTPMethods.Get
- #else
- true
- #endif
- , null)
- {
- }
- public HTTPRequest(Uri uri, HTTPMethods methodType, OnRequestFinishedDelegate callback)
- : this(uri, methodType, HTTPManager.KeepAliveDefaultValue,
- #if !BESTHTTP_DISABLE_CACHING && (!UNITY_WEBGL || UNITY_EDITOR)
- HTTPManager.IsCachingDisabled || methodType != HTTPMethods.Get
- #else
- true
- #endif
- , callback)
- {
- }
- public HTTPRequest(Uri uri, HTTPMethods methodType, bool isKeepAlive, OnRequestFinishedDelegate callback)
- : this(uri, methodType, isKeepAlive,
- #if !BESTHTTP_DISABLE_CACHING && (!UNITY_WEBGL || UNITY_EDITOR)
- HTTPManager.IsCachingDisabled || methodType != HTTPMethods.Get
- #else
- true
- #endif
- , callback)
- {
- }
- public HTTPRequest(Uri uri, HTTPMethods methodType, bool isKeepAlive, bool disableCache, OnRequestFinishedDelegate callback)
- {
- this.Uri = uri;
- this.MethodType = methodType;
- this.IsKeepAlive = isKeepAlive;
- #if !BESTHTTP_DISABLE_CACHING && (!UNITY_WEBGL || UNITY_EDITOR)
- this.DisableCache = disableCache;
- #endif
- this.Callback = callback;
- this.StreamFragmentSize = 4 * 1024;
- this.MaxFragmentQueueLength = 10;
- this.DisableRetry = !(methodType == HTTPMethods.Get);
- this.MaxRedirects = int.MaxValue;
- this.RedirectCount = 0;
- #if !BESTHTTP_DISABLE_COOKIES && (!UNITY_WEBGL || UNITY_EDITOR)
- this.IsCookiesEnabled = HTTPManager.IsCookiesEnabled;
- #endif
- this.Downloaded = DownloadLength = 0;
- this.DownloadProgressChanged = false;
- this.State = HTTPRequestStates.Initial;
- this.ConnectTimeout = HTTPManager.ConnectTimeout;
- this.Timeout = HTTPManager.RequestTimeout;
- this.EnableTimoutForStreaming = false;
- this.EnableSafeReadOnUnknownContentLength = true;
- #if !BESTHTTP_DISABLE_PROXY
- this.Proxy = HTTPManager.Proxy;
- #endif
- this.UseUploadStreamLength = true;
- this.DisposeUploadStream = true;
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- this.CustomCertificateVerifyer = HTTPManager.DefaultCertificateVerifyer;
- this.CustomClientCredentialsProvider = HTTPManager.DefaultClientCredentialsProvider;
- this.UseAlternateSSL = HTTPManager.UseAlternateSSLDefaultValue;
- #endif
- #if !NETFX_CORE && !UNITY_WP8
- this.CustomCertificationValidator += HTTPManager.DefaultCertificationValidator;
- #endif
- this.TryToMinimizeTCPLatency = HTTPManager.TryToMinimizeTCPLatency;
- }
- #endregion
- #region Public Field Functions
- /// <summary>
- /// Add a field with a given string value.
- /// </summary>
- public void AddField(string fieldName, string value)
- {
- AddField(fieldName, value, System.Text.Encoding.UTF8);
- }
- /// <summary>
- /// Add a field with a given string value.
- /// </summary>
- public void AddField(string fieldName, string value, System.Text.Encoding e)
- {
- if (FieldCollector == null)
- FieldCollector = new HTTPFormBase();
- FieldCollector.AddField(fieldName, value, e);
- }
- /// <summary>
- /// Add a field with binary content to the form.
- /// </summary>
- public void AddBinaryData(string fieldName, byte[] content)
- {
- AddBinaryData(fieldName, content, null, null);
- }
- /// <summary>
- /// Add a field with binary content to the form.
- /// </summary>
- public void AddBinaryData(string fieldName, byte[] content, string fileName)
- {
- AddBinaryData(fieldName, content, fileName, null);
- }
- /// <summary>
- /// Add a field with binary content to the form.
- /// </summary>
- public void AddBinaryData(string fieldName, byte[] content, string fileName, string mimeType)
- {
- if (FieldCollector == null)
- FieldCollector = new HTTPFormBase();
- FieldCollector.AddBinaryData(fieldName, content, fileName, mimeType);
- }
- #if !BESTHTTP_DISABLE_UNITY_FORM
- /// <summary>
- /// SaveLocal or overwrite the internal form. Remarks: on WP8 it doesn't supported!
- /// </summary>
- public void SetFields(UnityEngine.WWWForm wwwForm)
- {
- FormUsage = HTTPFormUsage.Unity;
- FormImpl = new UnityForm(wwwForm);
- }
- #endif
- /// <summary>
- /// Manually set a HTTP Form.
- /// </summary>
- public void SetForm(HTTPFormBase form)
- {
- FormImpl = form;
- }
- /// <summary>
- /// Returns with the added form-fields or null if no one added.
- /// </summary>
- public List<HTTPFieldData> GetFormFields()
- {
- if (this.FieldCollector == null || this.FieldCollector.IsEmpty)
- return null;
- return new List<HTTPFieldData>(this.FieldCollector.Fields);
- }
- /// <summary>
- /// Clears all data from the form.
- /// </summary>
- public void ClearForm()
- {
- FormImpl = null;
- FieldCollector = null;
- }
- /// <summary>
- /// Will create the form implementation based on the value of the FormUsage property.
- /// </summary>
- private HTTPFormBase SelectFormImplementation()
- {
- // Our form already created with a previous
- if (FormImpl != null)
- return FormImpl;
- // No field added to this request yet
- if (FieldCollector == null)
- return null;
- switch (FormUsage)
- {
- case HTTPFormUsage.Automatic:
- // A really simple decision making: if there are at least one field with binary data, or a 'long' string value then we will choose a Multipart form.
- // Otherwise Url Encoded form will be used.
- if (FieldCollector.HasBinary || FieldCollector.HasLongValue)
- goto case HTTPFormUsage.Multipart;
- else
- goto case HTTPFormUsage.UrlEncoded;
- case HTTPFormUsage.UrlEncoded: FormImpl = new HTTPUrlEncodedForm(); break;
- case HTTPFormUsage.Multipart: FormImpl = new HTTPMultiPartForm(); break;
- case HTTPFormUsage.RawJSon: FormImpl = new RawJsonForm(); break;
- #if !BESTHTTP_DISABLE_UNITY_FORM
- case HTTPFormUsage.Unity: FormImpl = new UnityForm(); break;
- #endif
- }
- // Copy the fields, and other properties to the new implementation
- FormImpl.CopyFrom(FieldCollector);
- return FormImpl;
- }
- #endregion
- #region Header Management
- #region General Management
- /// <summary>
- /// Adds a header and value pair to the Headers. Use it to add custom headers to the request.
- /// </summary>
- /// <example>AddHeader("User-Agent', "FooBar 1.0")</example>
- public void AddHeader(string name, string value)
- {
- if (Headers == null)
- Headers = new Dictionary<string, List<string>>();
- List<string> values;
- if (!Headers.TryGetValue(name, out values))
- Headers.Add(name, values = new List<string>(1));
- values.Add(value);
- }
- /// <summary>
- /// Removes any previously added values, and sets the given one.
- /// </summary>
- public void SetHeader(string name, string value)
- {
- if (Headers == null)
- Headers = new Dictionary<string, List<string>>();
- List<string> values;
- if (!Headers.TryGetValue(name, out values))
- Headers.Add(name, values = new List<string>(1));
- values.Clear();
- values.Add(value);
- }
- /// <summary>
- /// Removes the specified header. Returns true, if the header found and succesfully removed.
- /// </summary>
- /// <param name="name"></param>
- /// <returns></returns>
- public bool RemoveHeader(string name)
- {
- if (Headers == null)
- return false;
- return Headers.Remove(name);
- }
- /// <summary>
- /// Returns true if the given head name is already in the Headers.
- /// </summary>
- public bool HasHeader(string name)
- {
- return Headers != null && Headers.ContainsKey(name);
- }
- /// <summary>
- /// Returns the first header or null for the given header name.
- /// </summary>
- public string GetFirstHeaderValue(string name)
- {
- if (Headers == null)
- return null;
- List<string> headers = null;
- if (Headers.TryGetValue(name, out headers) && headers.Count > 0)
- return headers[0];
- return null;
- }
- /// <summary>
- /// Returns all header values for the given header or null.
- /// </summary>
- public List<string> GetHeaderValues(string name)
- {
- if (Headers == null)
- return null;
- List<string> headers = null;
- if (Headers.TryGetValue(name, out headers) && headers.Count > 0)
- return headers;
- return null;
- }
- public void RemoveHeaders()
- {
- if (Headers == null)
- return;
- Headers.Clear();
- }
- #endregion
- #region Range Headers
- /// <summary>
- /// Sets the Range header to download the content from the given byte position. See http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35
- /// </summary>
- /// <param name="firstBytePos">Start position of the download.</param>
- public void SetRangeHeader(int firstBytePos)
- {
- SetHeader("Range", string.Format("bytes={0}-", firstBytePos));
- }
- /// <summary>
- /// Sets the Range header to download the content from the given byte position to the given last position. See http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35
- /// </summary>
- /// <param name="firstBytePos">Start position of the download.</param>
- /// <param name="lastBytePos">The end position of the download.</param>
- public void SetRangeHeader(int firstBytePos, int lastBytePos)
- {
- SetHeader("Range", string.Format("bytes={0}-{1}", firstBytePos, lastBytePos));
- }
- #endregion
- public void EnumerateHeaders(OnHeaderEnumerationDelegate callback)
- {
- EnumerateHeaders(callback, false);
- }
- public void EnumerateHeaders(OnHeaderEnumerationDelegate callback, bool callBeforeSendCallback)
- {
- #if !UNITY_WEBGL || UNITY_EDITOR
- if (!HasHeader("Host"))
- SetHeader("Host", CurrentUri.Authority);
- if (IsRedirected && !HasHeader("Referer"))
- AddHeader("Referer", Uri.ToString());
- if (!HasHeader("Accept-Encoding"))
- #if BESTHTTP_DISABLE_GZIP
- AddHeader("Accept-Encoding", "identity");
- #else
- AddHeader("Accept-Encoding", "gzip, identity");
- #endif
- #if !BESTHTTP_DISABLE_PROXY
- if (HasProxy && !HasHeader("Proxy-Connection"))
- AddHeader("Proxy-Connection", IsKeepAlive ? "Keep-Alive" : "Close");
- #endif
- if (!HasHeader("Connection"))
- AddHeader("Connection", IsKeepAlive ? "Keep-Alive, TE" : "Close, TE");
- if (!HasHeader("TE"))
- AddHeader("TE", "identity");
- if (!HasHeader("User-Agent"))
- AddHeader("User-Agent", "BestHTTP");
- #endif
- long contentLength = -1;
- if (UploadStream == null)
- {
- byte[] entityBody = GetEntityBody();
- contentLength = entityBody != null ? entityBody.Length : 0;
- if (RawData == null && (FormImpl != null || (FieldCollector != null && !FieldCollector.IsEmpty)))
- {
- SelectFormImplementation();
- if (FormImpl != null)
- FormImpl.PrepareRequest(this);
- }
- }
- else
- {
- contentLength = UploadStreamLength;
- if (contentLength == -1)
- SetHeader("Transfer-Encoding", "Chunked");
- if (!HasHeader("Content-Type"))
- SetHeader("Content-Type", "application/octet-stream");
- }
- // Always set the Content-Length header if possible
- // http://tools.ietf.org/html/rfc2616#section-4.4 : For compatibility with HTTP/1.0 applications, HTTP/1.1 requests containing a message-body MUST include a valid Content-Length header field unless the server is known to be HTTP/1.1 compliant.
- // 2018.06.03: Changed the condition so that content-length header will be included for zero length too.
- if (
- #if !UNITY_WEBGL || UNITY_EDITOR
- contentLength >= 0
- #else
- contentLength != -1
- #endif
- && !HasHeader("Content-Length"))
- SetHeader("Content-Length", contentLength.ToString());
- #if !UNITY_WEBGL || UNITY_EDITOR
- #if !BESTHTTP_DISABLE_PROXY
- // Proxy Authentication
- if (HasProxy && Proxy.Credentials != null)
- {
- switch (Proxy.Credentials.Type)
- {
- case AuthenticationTypes.Basic:
- // With Basic authentication we don't want to wait for a challenge, we will send the hash with the first request
- SetHeader("Proxy-Authorization", string.Concat("Basic ", Convert.ToBase64String(Encoding.UTF8.GetBytes(Proxy.Credentials.UserName + ":" + Proxy.Credentials.Password))));
- break;
- case AuthenticationTypes.Unknown:
- case AuthenticationTypes.Digest:
- var digest = DigestStore.Get(Proxy.Address);
- if (digest != null)
- {
- string authentication = digest.GenerateResponseHeader(this, Proxy.Credentials);
- if (!string.IsNullOrEmpty(authentication))
- SetHeader("Proxy-Authorization", authentication);
- }
- break;
- }
- }
- #endif
- #endif
- // Server authentication
- if (Credentials != null)
- {
- switch (Credentials.Type)
- {
- case AuthenticationTypes.Basic:
- // With Basic authentication we don't want to wait for a challenge, we will send the hash with the first request
- SetHeader("Authorization", string.Concat("Basic ", Convert.ToBase64String(Encoding.UTF8.GetBytes(Credentials.UserName + ":" + Credentials.Password))));
- break;
- case AuthenticationTypes.Unknown:
- case AuthenticationTypes.Digest:
- var digest = DigestStore.Get(this.CurrentUri);
- if (digest != null)
- {
- string authentication = digest.GenerateResponseHeader(this, Credentials);
- if (!string.IsNullOrEmpty(authentication))
- SetHeader("Authorization", authentication);
- }
- break;
- }
- }
- // Cookies.
- #if !BESTHTTP_DISABLE_COOKIES && (!UNITY_WEBGL || UNITY_EDITOR)
- // User added cookies are sent even when IsCookiesEnabled is set to false
- List<Cookie> cookies = IsCookiesEnabled ? CookieJar.Get(CurrentUri) : null;
- // Merge server sent cookies with user-set cookies
- if (cookies == null || cookies.Count == 0)
- cookies = this.customCookies;
- else if (this.customCookies != null)
- {
- // Merge
- int idx = 0;
- while (idx < this.customCookies.Count)
- {
- Cookie customCookie = customCookies[idx];
- int foundIdx = cookies.FindIndex(c => c.Name.Equals(customCookie.Name));
- if (foundIdx >= 0)
- cookies[foundIdx] = customCookie;
- else
- cookies.Add(customCookie);
- idx++;
- }
- }
- // http://tools.ietf.org/html/rfc6265#section-5.4
- // -When the user agent generates an HTTP request, the user agent MUST NOT attach more than one Cookie header field.
- if (cookies != null && cookies.Count > 0)
- {
- // TODO:
- // 2. The user agent SHOULD sort the cookie-list in the following order:
- // * Cookies with longer paths are listed before cookies with shorter paths.
- // * Among cookies that have equal-length path fields, cookies with earlier creation-times are listed before cookies with later creation-times.
- bool first = true;
- string cookieStr = string.Empty;
- bool isSecureProtocolInUse = HTTPProtocolFactory.IsSecureProtocol(CurrentUri);
- foreach (var cookie in cookies)
- if (!cookie.IsSecure || (cookie.IsSecure && isSecureProtocolInUse))
- {
- if (!first)
- cookieStr += "; ";
- else
- first = false;
- cookieStr += cookie.ToString();
- // 3. Update the last-access-time of each cookie in the cookie-list to the current date and time.
- cookie.LastAccess = DateTime.UtcNow;
- }
- if (!string.IsNullOrEmpty(cookieStr))
- SetHeader("Cookie", cookieStr);
- }
- #endif
- if (callBeforeSendCallback && _onBeforeHeaderSend != null)
- {
- try
- {
- _onBeforeHeaderSend(this);
- }
- catch(Exception ex)
- {
- HTTPManager.Logger.Exception("HTTPRequest", "OnBeforeHeaderSend", ex);
- }
- }
- // Write out the headers to the stream
- if (callback != null && Headers != null)
- foreach (var kvp in Headers)
- callback(kvp.Key, kvp.Value);
- }
- /// <summary>
- /// Writes out the Headers to the stream.
- /// </summary>
- private void SendHeaders(Stream stream)
- {
- EnumerateHeaders((header, values) =>
- {
- if (string.IsNullOrEmpty(header) || values == null)
- return;
- byte[] headerName = string.Concat(header, ": ").GetASCIIBytes();
- for (int i = 0; i < values.Count; ++i)
- {
- if (string.IsNullOrEmpty(values[i]))
- {
- HTTPManager.Logger.Warning("HTTPRequest", string.Format("Null/empty value for header: {0}", header));
- continue;
- }
- if (HTTPManager.Logger.Level <= Logger.Loglevels.Information)
- VerboseLogging("Header - '" + header + "': '" + values[i] + "'");
- stream.WriteArray(headerName);
- stream.WriteArray(values[i].GetASCIIBytes());
- stream.WriteArray(EOL);
- }
- }, /*callBeforeSendCallback:*/ true);
- }
- /// <summary>
- /// Returns a string representation of the headers.
- /// </summary>
- public string DumpHeaders()
- {
- using (var ms = new MemoryStream())
- {
- SendHeaders(ms);
- return ms.ToArray().AsciiToString();
- }
- }
- /// <summary>
- /// Returns with the bytes that will be sent to the server as the request's payload.
- /// </summary>
- /// <remarks>Call this only after all form-fields are added!</remarks>
- public byte[] GetEntityBody()
- {
- if (RawData != null)
- return RawData;
- if (FormImpl != null || (FieldCollector != null && !FieldCollector.IsEmpty))
- {
- SelectFormImplementation();
- if (FormImpl != null)
- return FormImpl.GetData();
- }
- return null;
- }
- #endregion
- #region Internal Helper Functions
- internal void SendOutTo(Stream stream)
- {
- // Under WEBGL EnumerateHeaders and GetEntityBody are used instead of this function.
- #if !UNITY_WEBGL || UNITY_EDITOR
- try
- {
- string requestPathAndQuery =
- #if !BESTHTTP_DISABLE_PROXY
- HasProxy && Proxy.SendWholeUri ? CurrentUri.OriginalString :
- #endif
- CurrentUri.GetRequestPathAndQueryURL();
- string requestLine = string.Format("{0} {1} HTTP/1.1", MethodNames[(byte)MethodType], requestPathAndQuery);
- if (HTTPManager.Logger.Level <= Logger.Loglevels.Information)
- HTTPManager.Logger.Information("HTTPRequest", string.Format("Sending request: '{0}'", requestLine));
- // Create a buffer stream that will not close 'stream' when disposed or closed.
- // buffersize should be larger than UploadChunkSize as it might be used for uploading user data and
- // it should have enough room for UploadChunkSize data and additional chunk information.
- WriteOnlyBufferedStream bufferStream = new WriteOnlyBufferedStream(stream, (int)(UploadChunkSize * 1.5f));
- bufferStream.WriteArray(requestLine.GetASCIIBytes());
- bufferStream.WriteArray(EOL);
- // Write headers to the buffer
- SendHeaders(bufferStream);
- bufferStream.WriteArray(EOL);
- // Send remaining data to the wire
- bufferStream.Flush();
- byte[] data = RawData;
- // We are sending forms? Then convert the form to a byte array
- if (data == null && FormImpl != null)
- data = FormImpl.GetData();
- if (data != null || UploadStream != null)
- {
- // Make a new reference, as we will check the UploadStream property in the HTTPManager
- Stream uploadStream = UploadStream;
- if (uploadStream == null)
- {
- // Make stream from the data
- uploadStream = new MemoryStream(data, 0, data.Length);
- // Initialize progress report variable
- UploadLength = data.Length;
- }
- else
- UploadLength = UseUploadStreamLength ? UploadStreamLength : -1;
- // Initialize the progress report variables
- Uploaded = 0;
- // Upload buffer. First we will read the data into this buffer from the UploadStream, then write this buffer to our outStream
- byte[] buffer = new byte[UploadChunkSize];
- // How many bytes was read from the UploadStream
- int count = 0;
- while ((count = uploadStream.Read(buffer, 0, buffer.Length)) > 0)
- {
- // If we don't know the size, send as chunked
- if (!UseUploadStreamLength)
- {
- bufferStream.WriteArray(count.ToString("X").GetASCIIBytes());
- bufferStream.WriteArray(EOL);
- }
- // write out the buffer to the wire
- bufferStream.Write(buffer, 0, count);
- // chunk trailing EOL
- if (!UseUploadStreamLength)
- bufferStream.WriteArray(EOL);
- // update how many bytes are uploaded
- Uploaded += count;
- // Write to the wire
- bufferStream.Flush();
- // let the Callback fire
- UploadProgressChanged = true;
- }
- // All data from the stream are sent, write the 'end' chunk if necessary
- if (!UseUploadStreamLength)
- {
- bufferStream.WriteArray("0".GetASCIIBytes());
- bufferStream.WriteArray(EOL);
- bufferStream.WriteArray(EOL);
- }
- // Make sure all remaining data will be on the wire
- bufferStream.Flush();
- // Dispose the MemoryStream
- if (UploadStream == null && uploadStream != null)
- uploadStream.Dispose();
- }
- else
- bufferStream.Flush();
- HTTPManager.Logger.Information("HTTPRequest", "'" + requestLine + "' sent out");
- }
- finally
- {
- if (UploadStream != null && DisposeUploadStream)
- UploadStream.Dispose();
- }
- #endif
- }
- internal void UpgradeCallback()
- {
- if (Response == null || !Response.IsUpgraded)
- return;
- try
- {
- if (OnUpgraded != null)
- OnUpgraded(this, Response);
- }
- catch (Exception ex)
- {
- HTTPManager.Logger.Exception("HTTPRequest", "UpgradeCallback", ex);
- }
- }
- internal void CallCallback()
- {
- try
- {
- if (this.Callback != null)
- this.Callback(this, Response);
- }
- catch (Exception ex)
- {
- HTTPManager.Logger.Exception("HTTPRequest", "CallCallback", ex);
- }
- }
- internal bool CallOnBeforeRedirection(Uri redirectUri)
- {
- if (onBeforeRedirection != null)
- return onBeforeRedirection(this, this.Response, redirectUri);
- return true;
- }
- internal void FinishStreaming()
- {
- if (Response != null && UseStreaming)
- Response.FinishStreaming();
- }
- /// <summary>
- /// Called on Unity's main thread just before processing it.
- /// </summary>
- internal void Prepare()
- {
- #if !BESTHTTP_DISABLE_UNITY_FORM
- if (FormUsage == HTTPFormUsage.Unity)
- SelectFormImplementation();
- #endif
- }
- #if !NETFX_CORE && !UNITY_WP8
- internal bool CallCustomCertificationValidator(System.Security.Cryptography.X509Certificates.X509Certificate cert, System.Security.Cryptography.X509Certificates.X509Chain chain)
- {
- if (CustomCertificationValidator != null)
- return CustomCertificationValidator(this, cert, chain);
- return true;
- }
- #endif
- #endregion
- /// <summary>
- /// Starts processing the request.
- /// </summary>
- public HTTPRequest Send()
- {
- return HTTPManager.SendRequest(this);
- }
- /// <summary>
- /// Aborts an already established connection, so no further download or upload are done.
- /// </summary>
- public void Abort()
- {
- if (System.Threading.Monitor.TryEnter(HTTPManager.Locker, TimeSpan.FromMilliseconds(100)))
- {
- try
- {
- if (this.State >= HTTPRequestStates.Finished)
- {
- HTTPManager.Logger.Warning("HTTPRequest", string.Format("Abort - Already in a state({0}) where no Abort required!", this.State.ToString()));
- return;
- }
- // Get the parent connection
- var connection = HTTPManager.GetConnectionWith(this);
- // No Connection found for this request, maybe not even started
- if (connection == null)
- {
- // so try to remove from the request queue
- if (!HTTPManager.RemoveFromQueue(this))
- HTTPManager.Logger.Warning("HTTPRequest", "Abort - No active connection found with this request! (The request may already finished?)");
- this.State = HTTPRequestStates.Aborted;
- this.CallCallback();
- }
- else
- {
- // destroy the incomplete response
- if (Response != null && Response.IsStreamed)
- Response.Dispose();
- // send an abort request to the connection
- connection.Abort(HTTPConnectionStates.AbortRequested);
- }
- }
- finally
- {
- System.Threading.Monitor.Exit(HTTPManager.Locker);
- }
- }
- else
- throw new Exception("Wasn't able to acquire a thread lock. Abort failed!");
- }
- /// <summary>
- /// Resets the request for a state where switching MethodType is possible.
- /// </summary>
- public void Clear()
- {
- ClearForm();
- RemoveHeaders();
- this.IsRedirected = false;
- this.RedirectCount = 0;
- this.Downloaded = this.DownloadLength = 0;
- }
- private void VerboseLogging(string str)
- {
- HTTPManager.Logger.Verbose("HTTPRequest", "'" + this.CurrentUri.ToString() + "' - " + str);
- }
- #region System.Collections.IEnumerator implementation
- public object Current { get { return null; } }
- public bool MoveNext()
- {
- return this.State < HTTPRequestStates.Finished;
- }
- public void Reset()
- {
- throw new NotImplementedException();
- }
- #endregion
- HTTPRequest IEnumerator<HTTPRequest>.Current
- {
- get { return this; }
- }
- public void Dispose()
- {
- }
- }
- }
|