| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- //
- // BaseDomainPolicy.cs
- //
- // Authors:
- // Atsushi Enomoto <[email protected]>
- // Moonlight List ([email protected])
- //
- // Copyright (C) 2009-2010 Novell, Inc. http://www.novell.com
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- #if MOBILE
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- // Base class for shared stuff between the Silverlight and Flash policies
- // e.g. Headers and Domain comparison
- namespace System.Net.Policy {
- abstract class BaseDomainPolicy : ICrossDomainPolicy {
- static string root;
- static Uri app;
- #if !TEST
- static BaseDomainPolicy ()
- {
- ApplicationUri = new Uri (AppDomain.CurrentDomain.GetData ("xap_uri") as string);
- }
- #endif
- static public Uri ApplicationUri {
- get { return app; }
- set {
- app = value;
- root = null;
- }
- }
- static public string ApplicationRoot {
- get {
- if (root == null)
- root = CrossDomainPolicyManager.GetRoot (ApplicationUri);
- return root;
- }
- }
- public class Headers {
- sealed class PrefixComparer : IEqualityComparer<string> {
- public bool Equals (string x, string y)
- {
- int check_length = x.Length - 1;
- if ((x.Length > 0) && (x [check_length] == '*'))
- return (String.Compare (x, 0, y, 0, check_length, StringComparison.OrdinalIgnoreCase) == 0);
- return (String.Compare (x, y, StringComparison.OrdinalIgnoreCase) == 0);
- }
- public int GetHashCode (string obj)
- {
- return (obj == null) ? 0 : obj.GetHashCode ();
- }
- }
- static PrefixComparer pc = new PrefixComparer ();
- private List<string> list;
- public Headers ()
- {
- }
- public bool AllowAllHeaders { get; private set; }
- public bool IsAllowed (string[] headers)
- {
- if (AllowAllHeaders)
- return true;
- if (headers == null || headers.Length == 0)
- return true;
- return headers.All (s => list.Contains (s, pc));
- }
- public void SetHeaders (string raw)
- {
- if (raw == "*") {
- AllowAllHeaders = true;
- list = null;
- } else if (raw != null) {
- string [] headers = raw.Split (',');
- list = new List<string> (headers.Length + 1);
- list.Add ("Content-Type");
- for (int i = 0; i < headers.Length; i++) {
- string s = headers [i].Trim ();
- if (!String.IsNullOrEmpty (s))
- list.Add (s);
- }
- } else {
- // without a specified 'http-request-headers' no header, expect Content-Type, is allowed
- AllowAllHeaders = false;
- list = new List<string> (1);
- list.Add ("Content-Type");
- }
- }
- }
- abstract public bool IsAllowed (WebRequest request);
- public Exception Exception {
- get; internal set;
- }
- }
- }
- #endif
|