Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Security / RoleManagerModule.cs / 1305376 / RoleManagerModule.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * RoleManagerModule class * * Copyright (c) 1999 Microsoft Corporation */ namespace System.Web.Security { using System.Collections; using System.Security.Principal; using System.Security.Permissions; using System.Text; using System.Threading; using System.Web; using System.Web.Configuration; using System.Web.Caching; using System.Web.Util; ////// public sealed class RoleManagerModule : IHttpModule { private const int MAX_COOKIE_LENGTH = 4096; private RoleManagerEventHandler _eventHandler; ///[To be supplied.] ////// [SecurityPermission(SecurityAction.Demand, Unrestricted=true)] public RoleManagerModule() { } public event RoleManagerEventHandler GetRoles { add { HttpRuntime.CheckAspNetHostingPermission(AspNetHostingPermissionLevel.Low, SR.Feature_not_supported_at_this_level); _eventHandler += value; } remove { _eventHandler -= value; } } ////// Initializes a new instance of the ////// class. /// /// public void Dispose() { } ///[To be supplied.] ////// public void Init(HttpApplication app) { // for IIS 7, skip wireup of these delegates altogether unless the // feature is enabled for this application // this avoids the initial OnEnter transition unless it's needed if (Roles.Enabled) { app.PostAuthenticateRequest += new EventHandler(this.OnEnter); app.EndRequest += new EventHandler(this.OnLeave); } } //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// ///[To be supplied.] ////// private void OnEnter(Object source, EventArgs eventArgs) { if (!Roles.Enabled) { if (HttpRuntime.UseIntegratedPipeline) { ((HttpApplication)source).Context.DisableNotifications(RequestNotification.EndRequest, 0); } return; } HttpApplication app = (HttpApplication)source; HttpContext context = app.Context; if (_eventHandler != null) { RoleManagerEventArgs e = new RoleManagerEventArgs(context); _eventHandler(this, e); if (e.RolesPopulated) return; } Debug.Assert(null != context.User, "null != context.User"); if (Roles.CacheRolesInCookie) { if (context.User.Identity.IsAuthenticated && (!Roles.CookieRequireSSL || context.Request.IsSecureConnection)) { // Try to create from cookie try { HttpCookie cookie = context.Request.Cookies[Roles.CookieName]; if (cookie != null) { string cookieValue = cookie.Value; // Ignore cookies that are too long if (cookieValue != null && cookieValue.Length > MAX_COOKIE_LENGTH) { Roles.DeleteCookie(); } else { if (!String.IsNullOrEmpty(Roles.CookiePath) && Roles.CookiePath != "/") { cookie.Path = Roles.CookiePath; } cookie.Domain = Roles.Domain; context.SetPrincipalNoDemand(CreateRolePrincipalWithAssert(context.User.Identity, cookieValue)); } } } catch { } // ---- exceptions } else { if (context.Request.Cookies[Roles.CookieName] != null) Roles.DeleteCookie(); // if we're not using cookie caching, we don't need the EndRequest // event and can suppress it if (HttpRuntime.UseIntegratedPipeline) { context.DisableNotifications(RequestNotification.EndRequest, 0); } } } if (!(context.User is RolePrincipal)) context.SetPrincipalNoDemand(CreateRolePrincipalWithAssert(context.User.Identity)); HttpApplication.SetCurrentPrincipalWithAssert(context.User); } [SecurityPermission(SecurityAction.Assert, ControlPrincipal = true)] private RolePrincipal CreateRolePrincipalWithAssert(IIdentity identity, string encryptedTicket = null) { if (encryptedTicket == null) { return new RolePrincipal(identity); } else { return new RolePrincipal(identity, encryptedTicket); } } private void OnLeave(Object source, EventArgs eventArgs) { HttpApplication app; HttpContext context; app = (HttpApplication)source; context = app.Context; if (!Roles.Enabled || !Roles.CacheRolesInCookie || context.Response.HeadersWritten) return; if (context.User == null || !(context.User is RolePrincipal) || !context.User.Identity.IsAuthenticated) return; if (Roles.CookieRequireSSL && !context.Request.IsSecureConnection) { // if cookie is sent, then clear it if (context.Request.Cookies[Roles.CookieName] != null) Roles.DeleteCookie(); return; } RolePrincipal rp = (RolePrincipal) context.User; if (rp.CachedListChanged && context.Request.Browser.Cookies) { string s = rp.ToEncryptedTicket(); if (string.IsNullOrEmpty(s) || s.Length > MAX_COOKIE_LENGTH) { Roles.DeleteCookie(); } else { HttpCookie cookie = new HttpCookie(Roles.CookieName, s); cookie.HttpOnly = true; cookie.Path = Roles.CookiePath; cookie.Domain = Roles.Domain; if (Roles.CreatePersistentCookie) cookie.Expires = rp.ExpireDate; cookie.Secure = Roles.CookieRequireSSL; context.Response.Cookies.Add(cookie); } } } //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * RoleManagerModule class * * Copyright (c) 1999 Microsoft Corporation */ namespace System.Web.Security { using System.Collections; using System.Security.Principal; using System.Security.Permissions; using System.Text; using System.Threading; using System.Web; using System.Web.Configuration; using System.Web.Caching; using System.Web.Util; ////// public sealed class RoleManagerModule : IHttpModule { private const int MAX_COOKIE_LENGTH = 4096; private RoleManagerEventHandler _eventHandler; ///[To be supplied.] ////// [SecurityPermission(SecurityAction.Demand, Unrestricted=true)] public RoleManagerModule() { } public event RoleManagerEventHandler GetRoles { add { HttpRuntime.CheckAspNetHostingPermission(AspNetHostingPermissionLevel.Low, SR.Feature_not_supported_at_this_level); _eventHandler += value; } remove { _eventHandler -= value; } } ////// Initializes a new instance of the ////// class. /// /// public void Dispose() { } ///[To be supplied.] ////// public void Init(HttpApplication app) { // for IIS 7, skip wireup of these delegates altogether unless the // feature is enabled for this application // this avoids the initial OnEnter transition unless it's needed if (Roles.Enabled) { app.PostAuthenticateRequest += new EventHandler(this.OnEnter); app.EndRequest += new EventHandler(this.OnLeave); } } //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// ///[To be supplied.] ////// private void OnEnter(Object source, EventArgs eventArgs) { if (!Roles.Enabled) { if (HttpRuntime.UseIntegratedPipeline) { ((HttpApplication)source).Context.DisableNotifications(RequestNotification.EndRequest, 0); } return; } HttpApplication app = (HttpApplication)source; HttpContext context = app.Context; if (_eventHandler != null) { RoleManagerEventArgs e = new RoleManagerEventArgs(context); _eventHandler(this, e); if (e.RolesPopulated) return; } Debug.Assert(null != context.User, "null != context.User"); if (Roles.CacheRolesInCookie) { if (context.User.Identity.IsAuthenticated && (!Roles.CookieRequireSSL || context.Request.IsSecureConnection)) { // Try to create from cookie try { HttpCookie cookie = context.Request.Cookies[Roles.CookieName]; if (cookie != null) { string cookieValue = cookie.Value; // Ignore cookies that are too long if (cookieValue != null && cookieValue.Length > MAX_COOKIE_LENGTH) { Roles.DeleteCookie(); } else { if (!String.IsNullOrEmpty(Roles.CookiePath) && Roles.CookiePath != "/") { cookie.Path = Roles.CookiePath; } cookie.Domain = Roles.Domain; context.SetPrincipalNoDemand(CreateRolePrincipalWithAssert(context.User.Identity, cookieValue)); } } } catch { } // ---- exceptions } else { if (context.Request.Cookies[Roles.CookieName] != null) Roles.DeleteCookie(); // if we're not using cookie caching, we don't need the EndRequest // event and can suppress it if (HttpRuntime.UseIntegratedPipeline) { context.DisableNotifications(RequestNotification.EndRequest, 0); } } } if (!(context.User is RolePrincipal)) context.SetPrincipalNoDemand(CreateRolePrincipalWithAssert(context.User.Identity)); HttpApplication.SetCurrentPrincipalWithAssert(context.User); } [SecurityPermission(SecurityAction.Assert, ControlPrincipal = true)] private RolePrincipal CreateRolePrincipalWithAssert(IIdentity identity, string encryptedTicket = null) { if (encryptedTicket == null) { return new RolePrincipal(identity); } else { return new RolePrincipal(identity, encryptedTicket); } } private void OnLeave(Object source, EventArgs eventArgs) { HttpApplication app; HttpContext context; app = (HttpApplication)source; context = app.Context; if (!Roles.Enabled || !Roles.CacheRolesInCookie || context.Response.HeadersWritten) return; if (context.User == null || !(context.User is RolePrincipal) || !context.User.Identity.IsAuthenticated) return; if (Roles.CookieRequireSSL && !context.Request.IsSecureConnection) { // if cookie is sent, then clear it if (context.Request.Cookies[Roles.CookieName] != null) Roles.DeleteCookie(); return; } RolePrincipal rp = (RolePrincipal) context.User; if (rp.CachedListChanged && context.Request.Browser.Cookies) { string s = rp.ToEncryptedTicket(); if (string.IsNullOrEmpty(s) || s.Length > MAX_COOKIE_LENGTH) { Roles.DeleteCookie(); } else { HttpCookie cookie = new HttpCookie(Roles.CookieName, s); cookie.HttpOnly = true; cookie.Path = Roles.CookiePath; cookie.Domain = Roles.Domain; if (Roles.CreatePersistentCookie) cookie.Expires = rp.ExpireDate; cookie.Secure = Roles.CookieRequireSSL; context.Response.Cookies.Add(cookie); } } } //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DecimalStorage.cs
- FocusChangedEventArgs.cs
- SafeCryptContextHandle.cs
- PointConverter.cs
- EdmConstants.cs
- TableRowGroupCollection.cs
- FontInfo.cs
- SchemaRegistration.cs
- SimpleBitVector32.cs
- MSHTMLHost.cs
- KeyedQueue.cs
- TemplateControlParser.cs
- Line.cs
- ConstraintStruct.cs
- Wizard.cs
- InvokeHandlers.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- IdentifierCollection.cs
- GrammarBuilderDictation.cs
- Function.cs
- TypeTypeConverter.cs
- EntityTypeEmitter.cs
- Int32CAMarshaler.cs
- XPathItem.cs
- DataSetMappper.cs
- COM2IProvidePropertyBuilderHandler.cs
- Vector3D.cs
- CaseCqlBlock.cs
- CompleteWizardStep.cs
- ImageSourceConverter.cs
- GuidelineSet.cs
- DecoderReplacementFallback.cs
- DeviceSpecificDesigner.cs
- GlobalizationSection.cs
- XmlWrappingReader.cs
- CurrencyManager.cs
- StrongNameUtility.cs
- DbConnectionPoolIdentity.cs
- WindowsRichEditRange.cs
- ToolBar.cs
- ConfigurationProperty.cs
- XmlTextEncoder.cs
- ScrollPattern.cs
- HatchBrush.cs
- ToolTip.cs
- SoapCommonClasses.cs
- SqlDataSourceEnumerator.cs
- DataTableCollection.cs
- NamespaceEmitter.cs
- MetadataItem_Static.cs
- ClientApiGenerator.cs
- JsonFormatWriterGenerator.cs
- PageBuildProvider.cs
- Content.cs
- DbParameterCollectionHelper.cs
- ExtenderControl.cs
- EntityDataSourceChangingEventArgs.cs
- QilTargetType.cs
- TreeViewEvent.cs
- ScaleTransform3D.cs
- TextServicesProperty.cs
- UiaCoreApi.cs
- QilName.cs
- DbConnectionFactory.cs
- HttpDictionary.cs
- XmlILConstructAnalyzer.cs
- TextBoxRenderer.cs
- ElementNotEnabledException.cs
- AttachedAnnotation.cs
- QuaternionAnimation.cs
- NextPreviousPagerField.cs
- RadioButtonPopupAdapter.cs
- HashAlgorithm.cs
- GenericAuthenticationEventArgs.cs
- RawStylusActions.cs
- sqlstateclientmanager.cs
- HwndProxyElementProvider.cs
- WebHostUnsafeNativeMethods.cs
- ExpressionNormalizer.cs
- ProxyGenerationError.cs
- CodeMemberMethod.cs
- SchemaImporter.cs
- PropertyBuilder.cs
- _BufferOffsetSize.cs
- ConfigurationCollectionAttribute.cs
- ImageInfo.cs
- WindowsAuthenticationEventArgs.cs
- SmiContextFactory.cs
- DataFormats.cs
- MediaScriptCommandRoutedEventArgs.cs
- SecurityDocument.cs
- ProgressBar.cs
- SlotInfo.cs
- AgileSafeNativeMemoryHandle.cs
- TabPage.cs
- ThreadPoolTaskScheduler.cs
- CounterCreationData.cs
- Boolean.cs
- ThreadExceptionEvent.cs
- InkCollectionBehavior.cs