123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Text;
- #if NETFX_CORE
- using Windows.Security.Cryptography;
- using Windows.Security.Cryptography.Core;
- using Windows.Storage.Streams;
- using BestHTTP.PlatformSupport.IO;
- using FileStream = BestHTTP.PlatformSupport.IO.FileStream;
- #elif UNITY_WP8
- using Cryptography = BestHTTP.PlatformSupport.Cryptography;
- #else
- using Cryptography = System.Security.Cryptography;
- using FileStream = System.IO.FileStream;
- #endif
- namespace BestHTTP.Extensions
- {
- public static class Extensions
- {
- #region ASCII Encoding (These are required because Windows Phone doesn't supports the Encoding.ASCII class.)
- /// <summary>
- /// On WP8 platform there are no ASCII encoding.
- /// </summary>
- public static string AsciiToString(this byte[] bytes)
- {
- StringBuilder sb = new StringBuilder(bytes.Length);
- foreach (byte b in bytes)
- sb.Append(b <= 0x7f ? (char)b : '?');
- return sb.ToString();
- }
- /// <summary>
- /// On WP8 platform there are no ASCII encoding.
- /// </summary>
- public static byte[] GetASCIIBytes(this string str)
- {
- byte[] result = new byte[str.Length];
- for (int i = 0; i < str.Length; ++i)
- {
- char ch = str[i];
- result[i] = (byte)((ch < (char)0x80) ? ch : '?');
- }
- return result;
- }
- public static void SendAsASCII(this BinaryWriter stream, string str)
- {
- for (int i = 0; i < str.Length; ++i)
- {
- char ch = str[i];
- stream.Write((byte)((ch < (char)0x80) ? ch : '?'));
- }
- }
- #endregion
- #region FileSystem WriteLine function support
- public static void WriteLine(this FileStream fs)
- {
- fs.Write(HTTPRequest.EOL, 0, 2);
- }
- public static void WriteLine(this FileStream fs, string line)
- {
- var buff = line.GetASCIIBytes();
- fs.Write(buff, 0, buff.Length);
- fs.WriteLine();
- }
- public static void WriteLine(this FileStream fs, string format, params object[] values)
- {
- var buff = string.Format(format, values).GetASCIIBytes();
- fs.Write(buff, 0, buff.Length);
- fs.WriteLine();
- }
- #endregion
- #region Other Extensions
- public static string GetRequestPathAndQueryURL(this Uri uri)
- {
- string requestPathAndQuery = uri.GetComponents(UriComponents.PathAndQuery, UriFormat.UriEscaped);
- // http://forum.unity3d.com/threads/best-http-released.200006/page-26#post-2723250
- if (string.IsNullOrEmpty(requestPathAndQuery))
- requestPathAndQuery = "/";
- return requestPathAndQuery;
- }
- public static string[] FindOption(this string str, string option)
- {
- //s-maxage=2678400, must-revalidate, max-age=0
- string[] options = str.ToLower().Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
- option = option.ToLower();
- for (int i = 0; i < options.Length; ++i)
- if (options[i].Contains(option))
- return options[i].Split(new char[] { '=' }, StringSplitOptions.RemoveEmptyEntries);
- return null;
- }
- public static void WriteArray(this Stream stream, byte[] array)
- {
- stream.Write(array, 0, array.Length);
- }
- /// <summary>
- /// Returns true if the Uri's host is a valid IPv4 or IPv6 address.
- /// </summary>
- public static bool IsHostIsAnIPAddress(this Uri uri)
- {
- if (uri == null)
- return false;
- return IsIpV4AddressValid(uri.Host) || IsIpV6AddressValid(uri.Host);
- }
- // Original idea from: https://www.code4copy.com/csharp/c-validate-ip-address-string/
- // Working regex: https://www.regular-expressions.info/ip.html
- private static readonly System.Text.RegularExpressions.Regex validIpV4AddressRegex = new System.Text.RegularExpressions.Regex("\\b(?:\\d{1,3}\\.){3}\\d{1,3}\\b", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
- /// <summary>
- /// Validates an IPv4 address.
- /// </summary>
- public static bool IsIpV4AddressValid(string address)
- {
- if (!string.IsNullOrEmpty(address))
- return validIpV4AddressRegex.IsMatch(address.Trim());
- return false;
- }
- /// <summary>
- /// Validates an IPv6 address.
- /// </summary>
- public static bool IsIpV6AddressValid(string address)
- {
- #if !NETFX_CORE
- if (!string.IsNullOrEmpty(address))
- {
- System.Net.IPAddress ip;
- if (System.Net.IPAddress.TryParse(address, out ip))
- return ip.AddressFamily == System.Net.Sockets.AddressFamily.InterNetworkV6;
- }
- #endif
- return false;
- }
- #endregion
- #region String Conversions
- public static int ToInt32(this string str, int defaultValue = default(int))
- {
- if (str == null)
- return defaultValue;
- try
- {
- return int.Parse(str);
- }
- catch
- {
- return defaultValue;
- }
- }
- public static long ToInt64(this string str, long defaultValue = default(long))
- {
- if (str == null)
- return defaultValue;
- try
- {
- return long.Parse(str);
- }
- catch
- {
- return defaultValue;
- }
- }
- public static DateTime ToDateTime(this string str, DateTime defaultValue = default(DateTime))
- {
- if (str == null)
- return defaultValue;
- try
- {
- DateTime.TryParse(str, out defaultValue);
- return defaultValue.ToUniversalTime();
- }
- catch
- {
- return defaultValue;
- }
- }
- public static string ToStrOrEmpty(this string str)
- {
- if (str == null)
- return String.Empty;
- return str;
- }
- #endregion
- #region MD5 Hashing
- public static string CalculateMD5Hash(this string input)
- {
- return input.GetASCIIBytes().CalculateMD5Hash();
- }
- public static string CalculateMD5Hash(this byte[] input)
- {
- #if NETFX_CORE
- var alg = HashAlgorithmProvider.OpenAlgorithm(HashAlgorithmNames.Md5);
- IBuffer buff = CryptographicBuffer.CreateFromByteArray(input);
- var hashed = alg.HashData(buff);
- var res = CryptographicBuffer.EncodeToHexString(hashed);
- return res;
- #else
- var hash = Cryptography.MD5.Create().ComputeHash(input);
- var sb = new StringBuilder();
- foreach (var b in hash)
- sb.Append(b.ToString("x2"));
- return sb.ToString();
- #endif
- }
- #endregion
- #region Efficient String Parsing Helpers
- internal static string Read(this string str, ref int pos, char block, bool needResult = true)
- {
- return str.Read(ref pos, (ch) => ch != block, needResult);
- }
- internal static string Read(this string str, ref int pos, Func<char, bool> block, bool needResult = true)
- {
- if (pos >= str.Length)
- return string.Empty;
- str.SkipWhiteSpace(ref pos);
- int startPos = pos;
- while (pos < str.Length && block(str[pos]))
- pos++;
- string result = needResult ? str.Substring(startPos, pos - startPos) : null;
- // set position to the next char
- pos++;
- return result;
- }
- internal static string ReadPossibleQuotedText(this string str, ref int pos)
- {
- string result = string.Empty;
- if (str == null)
- return result;
- // It's a quoted text?
- if (str[pos] == '\"')
- {
- // Skip the starting quote
- str.Read(ref pos, '\"', false);
- // Read the text until the ending quote
- result = str.Read(ref pos, '\"');
- // Next option
- str.Read(ref pos, ',', false);
- }
- else
- // It's not a quoted text, so we will read until the next option
- result = str.Read(ref pos, (ch) => ch != ',' && ch != ';');
- return result;
- }
- internal static void SkipWhiteSpace(this string str, ref int pos)
- {
- if (pos >= str.Length)
- return;
- while (pos < str.Length && char.IsWhiteSpace(str[pos]))
- pos++;
- }
- internal static string TrimAndLower(this string str)
- {
- if (str == null)
- return null;
- char[] buffer = new char[str.Length];
- int length = 0;
- for (int i = 0; i < str.Length; ++i)
- {
- char ch = str[i];
- if (!char.IsWhiteSpace(ch) && !char.IsControl(ch))
- buffer[length++] = char.ToLowerInvariant(ch);
- }
- return new string(buffer, 0, length);
- }
- internal static char? Peek(this string str, int pos)
- {
- if (pos < 0 || pos >= str.Length)
- return null;
- return str[pos];
- }
- #endregion
- #region Specialized String Parsers
- //public, max-age=2592000
- internal static List<HeaderValue> ParseOptionalHeader(this string str)
- {
- List<HeaderValue> result = new List<HeaderValue>();
- if (str == null)
- return result;
- int idx = 0;
- // process the rest of the text
- while (idx < str.Length)
- {
- // Read key
- string key = str.Read(ref idx, (ch) => ch != '=' && ch != ',').TrimAndLower();
- HeaderValue qp = new HeaderValue(key);
- if (str[idx - 1] == '=')
- qp.Value = str.ReadPossibleQuotedText(ref idx);
- result.Add(qp);
- }
- return result;
- }
- //deflate, gzip, x-gzip, identity, *;q=0
- internal static List<HeaderValue> ParseQualityParams(this string str)
- {
- List<HeaderValue> result = new List<HeaderValue>();
- if (str == null)
- return result;
- int idx = 0;
- while (idx < str.Length)
- {
- string key = str.Read(ref idx, (ch) => ch != ',' && ch != ';').TrimAndLower();
- HeaderValue qp = new HeaderValue(key);
- if (str[idx - 1] == ';')
- {
- str.Read(ref idx, '=', false);
- qp.Value = str.Read(ref idx, ',');
- }
- result.Add(qp);
- }
- return result;
- }
- #endregion
- #region Buffer Filling
- /// <summary>
- /// Will fill the entire buffer from the stream. Will throw an exception when the underlying stream is closed.
- /// </summary>
- public static void ReadBuffer(this Stream stream, byte[] buffer)
- {
- int count = 0;
- do
- {
- int read = stream.Read(buffer, count, buffer.Length - count);
- if (read <= 0)
- throw ExceptionHelper.ServerClosedTCPStream();
- count += read;
- } while (count < buffer.Length);
- }
- #endregion
- #region MemoryStream
- public static void WriteAll(this MemoryStream ms, byte[] buffer)
- {
- ms.Write(buffer, 0, buffer.Length);
- }
- public static void WriteString(this MemoryStream ms, string str)
- {
- byte[] buffer = Encoding.UTF8.GetBytes(str);
- ms.WriteAll(buffer);
- }
- public static void WriteLine(this MemoryStream ms)
- {
- ms.WriteAll(HTTPRequest.EOL);
- }
- public static void WriteLine(this MemoryStream ms, string str)
- {
- ms.WriteString(str);
- ms.WriteLine();
- }
- #endregion
- }
- public static class ExceptionHelper
- {
- public static Exception ServerClosedTCPStream()
- {
- return new Exception("TCP Stream closed unexpectedly by the remote server");
- }
- }
- }
|