| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- //
- // System.Web.Configuration.AuthConfig
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002 Ximian, Inc (http://www.ximian.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;
- using System.Configuration;
- using System.Xml;
- namespace System.Web.Configuration
- {
- class AuthConfig
- {
- AuthenticationMode mode;
- string cookieName;
- string cookiePath;
- string loginUrl;
- FormsProtectionEnum protection;
- int timeout;
- FormsAuthPasswordFormat pwdFormat;
- Hashtable credentialUsers;
- bool has_parent;
- #if NET_1_1
- bool requireSSL;
- bool slidingExpiration;
- #endif
- internal AuthConfig (object parent)
- {
- if (parent is AuthConfig) {
- has_parent = true;
- AuthConfig p = (AuthConfig) parent;
- mode = p.mode;
- cookieName = p.cookieName;
- cookiePath = p.cookiePath;
- loginUrl = p.loginUrl;
- protection = p.protection;
- timeout = p.timeout;
- pwdFormat = p.pwdFormat;
- #if NET_1_1
- requireSSL = p.requireSSL;
- slidingExpiration = p.slidingExpiration;
- #endif
- credentialUsers = new Hashtable (p.CredentialUsers);
- }
- }
- internal void SetMode (string m)
- {
- if (m == null) {
- // we default to Forms authentication mode, MS defaults to Windows
- if (!has_parent)
- Mode = AuthenticationMode.Forms;
- return;
- }
- Mode = (AuthenticationMode) Enum.Parse (typeof (AuthenticationMode), m, true);
- }
- internal void SetProtection (string prot)
- {
- if (prot == null) {
- if (!has_parent)
- Protection = FormsProtectionEnum.All;
- return;
- }
- Protection = (FormsProtectionEnum) Enum.Parse (typeof (FormsProtectionEnum),
- prot,
- true);
- }
- internal void SetTimeout (string minutes)
- {
- if (minutes != null) {
- Timeout = Int32.Parse (minutes);
- return;
- }
- if (!has_parent)
- Timeout = 30;
- }
- internal void SetPasswordFormat (string pwdFormat)
- {
- if (pwdFormat == null) {
- if (!has_parent)
- PasswordFormat = FormsAuthPasswordFormat.Clear;
- return;
- }
- PasswordFormat =
- (FormsAuthPasswordFormat) Enum.Parse (typeof (FormsAuthPasswordFormat),
- pwdFormat,
- true);
- }
- internal AuthenticationMode Mode {
- get { return mode; }
- set { mode = value; }
- }
- internal string CookieName {
- get {
- if (cookieName == null)
- cookieName = ".ASPXAUTH";
- return cookieName;
- }
- set {
- if (value == null)
- return;
- cookieName = value;
- }
- }
- internal string CookiePath {
- get {
- if (cookiePath == null)
- cookiePath = "/";
- return cookiePath;
- }
- set {
- if (value == null)
- return;
- cookiePath = value;
- }
- }
- internal string LoginUrl {
- get {
- if (loginUrl == null)
- loginUrl = "login.aspx";
- return loginUrl;
- }
- set {
- if (value == null)
- return;
- loginUrl = value;
- }
- }
- internal FormsProtectionEnum Protection {
- get { return protection; }
- set { protection = value; }
- }
- internal int Timeout {
- get { return timeout; }
- set {
- if (value <= 0)
- throw new ArgumentException ("Timeout must be > 0", "value");
- timeout = value;
- }
- }
- internal FormsAuthPasswordFormat PasswordFormat {
- get { return pwdFormat; }
- set { pwdFormat = value; }
- }
- internal Hashtable CredentialUsers {
- get {
- if (credentialUsers == null)
- credentialUsers = new Hashtable ();
- return credentialUsers;
- }
- }
- #if NET_1_1
- internal bool RequireSSL {
- get { return requireSSL; }
- set { requireSSL = value; }
- }
- internal bool SlidingExpiration {
- get { return slidingExpiration; }
- set { slidingExpiration = value; }
- }
- #endif
- }
- }
|