| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- //
- // System.Web.Configuration.AuthorizationRule
- //
- // Authors:
- // Chris Toshok ([email protected])
- //
- // (C) 2005 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.
- //
- using System;
- using System.Collections.Specialized;
- using System.Security.Principal;
- using System.Configuration;
- using System.ComponentModel;
- using System.Xml;
- #if NET_2_0
- namespace System.Web.Configuration {
- public sealed class AuthorizationRule : ConfigurationElement
- {
- static ConfigurationProperty rolesProp;
- static ConfigurationProperty usersProp;
- static ConfigurationProperty verbsProp;
- static ConfigurationPropertyCollection properties;
- AuthorizationRuleAction action;
- static AuthorizationRule ()
- {
- rolesProp = new ConfigurationProperty ("roles", typeof (StringCollection), null,
- PropertyHelper.CommaDelimitedStringCollectionConverter,
- PropertyHelper.DefaultValidator,
- ConfigurationPropertyOptions.None);
- usersProp = new ConfigurationProperty ("users", typeof (StringCollection), null,
- PropertyHelper.CommaDelimitedStringCollectionConverter,
- PropertyHelper.DefaultValidator,
- ConfigurationPropertyOptions.None);
- verbsProp = new ConfigurationProperty ("verbs", typeof (StringCollection), null,
- PropertyHelper.CommaDelimitedStringCollectionConverter,
- PropertyHelper.DefaultValidator,
- ConfigurationPropertyOptions.None);
- properties = new ConfigurationPropertyCollection ();
- properties.Add (rolesProp);
- properties.Add (usersProp);
- properties.Add (verbsProp);
- }
- public AuthorizationRule (AuthorizationRuleAction action)
- {
- this.action = action;
- base[rolesProp] = new CommaDelimitedStringCollection ();
- base[usersProp] = new CommaDelimitedStringCollection ();
- base[verbsProp] = new CommaDelimitedStringCollection ();
- }
- public override bool Equals (object obj)
- {
- AuthorizationRule auth = obj as AuthorizationRule;
- if (auth == null)
- return false;
- if (action != auth.Action)
- return false;
- if (Roles.Count != auth.Roles.Count
- || Users.Count != auth.Users.Count
- || Verbs.Count != auth.Verbs.Count)
- return false;
- int i;
- for (i = 0; i < Roles.Count; i ++)
- if (Roles[i] != auth.Roles[i])
- return false;
- for (i = 0; i < Users.Count; i ++)
- if (Users[i] != auth.Users[i])
- return false;
- for (i = 0; i < Verbs.Count; i ++)
- if (Verbs[i] != auth.Verbs[i])
- return false;
-
- return true;
- }
- public override int GetHashCode ()
- {
- int hashCode = (int)action;
- int i;
- for (i = 0; i < Roles.Count; i ++)
- hashCode += Roles[i].GetHashCode();
- for (i = 0; i < Users.Count; i ++)
- hashCode += Users[i].GetHashCode();
- for (i = 0; i < Verbs.Count; i ++)
- hashCode += Verbs[i].GetHashCode();
- return hashCode;
- }
- [MonoTODO]
- protected override bool IsModified ()
- {
- throw new NotImplementedException ();
- }
- void VerifyData ()
- {
- if (Roles.Count == 0 && Users.Count == 0)
- throw new ConfigurationErrorsException ("You must supply either a list of users or roles when creating an AuthorizationRule");
- }
- protected override void PostDeserialize ()
- {
- base.PostDeserialize();
- VerifyData ();
- }
- protected override void PreSerialize (XmlWriter writer)
- {
- base.PreSerialize (writer);
- VerifyData ();
- }
- [MonoTODO]
- protected override void Reset (ConfigurationElement parentElement)
- {
- base.Reset (parentElement);
- }
- [MonoTODO]
- protected override void ResetModified ()
- {
- base.ResetModified ();
- }
- protected override bool SerializeElement (XmlWriter writer, bool serializeCollectionKey)
- {
- PreSerialize (writer);
- writer.WriteStartElement (action == AuthorizationRuleAction.Allow ? "allow" : "deny");
- if (Roles.Count > 0)
- writer.WriteAttributeString ("roles", Roles.ToString());
- if (Users.Count > 0)
- writer.WriteAttributeString ("users", Users.ToString());
- if (Verbs.Count > 0)
- writer.WriteAttributeString ("verbs", Verbs.ToString());
- writer.WriteEndElement ();
- return true;
- }
- [MonoTODO]
- protected override void SetReadOnly ()
- {
- base.SetReadOnly();
- }
- [MonoTODO]
- protected override void Unmerge (ConfigurationElement sourceElement, ConfigurationElement parentElement, ConfigurationSaveMode saveMode)
- {
- base.Unmerge (sourceElement, parentElement, saveMode);
- }
- public AuthorizationRuleAction Action {
- get { return action; }
- set { action = value; }
- }
- [TypeConverter (typeof (CommaDelimitedStringCollectionConverter))]
- [ConfigurationProperty ("roles")]
- public StringCollection Roles {
- get { return (StringCollection) base [rolesProp];}
- }
- [TypeConverter (typeof (CommaDelimitedStringCollectionConverter))]
- [ConfigurationProperty ("users")]
- public StringCollection Users {
- get { return (StringCollection) base [usersProp];}
- }
- [TypeConverter (typeof (CommaDelimitedStringCollectionConverter))]
- [ConfigurationProperty ("verbs")]
- public StringCollection Verbs {
- get { return (StringCollection) base [verbsProp];}
- }
- protected override ConfigurationPropertyCollection Properties {
- get { return properties; }
- }
- internal bool CheckVerb (string verb)
- {
- foreach (string v in Verbs) {
- if (String.Compare (v, verb, true) == 0)
- return true;
- }
- return false;
- }
- internal bool CheckUser (string user)
- {
- foreach (string u in Users) {
- if (String.Compare (u, user, true) == 0 ||
- u == "*" ||
- (u == "?" && user == ""))
- return true;
- }
- return false;
- }
- internal bool CheckRole (IPrincipal user)
- {
- foreach (string r in Roles) {
- if (user.IsInRole (r))
- return true;
- }
- return false;
- }
- }
- }
- #endif
|