| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- //
- // System.Net.WebProxy
- //
- // Author:
- // Lawrence Pit ([email protected])
- //
- using System;
- using System.Collections;
- using System.Runtime.Serialization;
- using System.Text.RegularExpressions;
- namespace System.Net
- {
- [Serializable]
- public class WebProxy : IWebProxy, ISerializable
- {
- private Uri address;
- private bool bypassOnLocal;
- private ArrayList bypassList;
- private ICredentials credentials;
-
- // Constructors
-
- public WebProxy ()
- : this ((Uri) null, false, null, null) {}
-
- public WebProxy (string address)
- : this (ToUri (address), false, null, null) {}
-
- public WebProxy (Uri address)
- : this (address, false, null, null) {}
-
- public WebProxy (string address, bool bypassOnLocal)
- : this (ToUri (address), bypassOnLocal, null, null) {}
-
- public WebProxy (string host, int port)
- : this (new Uri ("http://" + host + ":" + port)) {}
-
- public WebProxy (Uri address, bool bypassOnLocal)
- : this (address, bypassOnLocal, null, null) {}
- public WebProxy (string address, bool bypassOnLocal, string [] bypassList)
- : this (ToUri (address), bypassOnLocal, bypassList, null) {}
- public WebProxy (Uri address, bool bypassOnLocal, string [] bypassList)
- : this (address, bypassOnLocal, bypassList, null) {}
-
- public WebProxy (string address, bool bypassOnLocal,
- string[] bypassList, ICredentials credentials)
- : this (ToUri (address), bypassOnLocal, bypassList, null) {}
- public WebProxy (Uri address, bool bypassOnLocal,
- string[] bypassList, ICredentials credentials)
- {
- this.address = address;
- this.bypassOnLocal = bypassOnLocal;
- if (bypassList == null)
- bypassList = new string [] {};
- this.bypassList = new ArrayList (bypassList);
- this.credentials = credentials;
- CheckBypassList ();
- }
-
- [MonoTODO]
- protected WebProxy (SerializationInfo serializationInfo, StreamingContext streamingContext)
- {
- throw new NotImplementedException ();
- }
-
- // Properties
-
- public Uri Address {
- get { return address; }
- set { address = value; }
- }
-
- public ArrayList BypassArrayList {
- get {
- return bypassList;
- }
- }
-
- public string [] BypassList {
- get { return (string []) bypassList.ToArray (typeof (string)); }
- set {
- if (value == null)
- throw new ArgumentNullException ();
- bypassList = new ArrayList (value);
- CheckBypassList ();
- }
- }
-
- public bool BypassProxyOnLocal {
- get { return bypassOnLocal; }
- set { bypassOnLocal = value; }
- }
-
- public ICredentials Credentials {
- get { return credentials; }
- set { credentials = value; }
- }
-
- // Methods
-
- [MonoTODO]
- public static WebProxy GetDefaultProxy ()
- {
- // for Mono we should probably read in these settings
- // from the global application configuration file
-
- // for now, return the empty WebProxy to indicate
- // no proxy is used
- // return GlobalProxySelection.GetEmptyWebProxy ();
- // ??
-
- throw new NotImplementedException ();
- }
-
- public Uri GetProxy (Uri destination)
- {
- if (IsBypassed (destination))
- return destination;
-
- return address;
- }
-
- public bool IsBypassed (Uri host)
- {
- if (address == null)
- return true;
-
- if (host.IsLoopback)
- return true;
-
- if (bypassOnLocal && host.Host.IndexOf ('.') == -1)
- return true;
-
- try {
- string hostStr = host.Scheme + "://" + host.Authority;
- int i = 0;
- for (; i < bypassList.Count; i++) {
- Regex regex = new Regex ((string) bypassList [i],
- // TODO: RegexOptions.Compiled | // not implemented yet by Regex
- RegexOptions.IgnoreCase |
- RegexOptions.Singleline);
- if (regex.IsMatch (hostStr))
- break;
- }
- if (i == bypassList.Count)
- return false;
- // continue checking correctness of regular expressions..
- // will throw expression when an invalid one is found
- for (; i < bypassList.Count; i++)
- new Regex ((string) bypassList [i]);
- return true;
- } catch (ArgumentException) {
- return false;
- }
- }
- [MonoTODO]
- void ISerializable.GetObjectData (SerializationInfo serializationInfo,
- StreamingContext streamingContext)
- {
- throw new NotImplementedException ();
- }
-
- // Private Methods
-
- // this compiles the regular expressions, and will throw
- // an exception when an invalid one is found.
- private void CheckBypassList ()
- {
- for (int i = 0; i < bypassList.Count; i++)
- new Regex ((string) bypassList [i]);
- }
-
- private static Uri ToUri (string address)
- {
- if (address == null)
- return null;
-
- if (address.IndexOf (':') == -1)
- address = "http://" + address;
-
- return new Uri (address);
- }
- }
- }
|