| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380 |
- //
- // System.Web.UI.WebControls.ProfileBase.cs
- //
- // Authors:
- // Chris Toshok ([email protected])
- // Vladimir Krasnov ([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.
- //
- #if NET_2_0
- using System;
- using System.Configuration;
- using System.Configuration.Provider;
- using System.Web.Security;
- using System.Web.Configuration;
- using System.Reflection;
- namespace System.Web.Profile
- {
- public class ProfileBase : SettingsBase
- {
- bool _propertiyValuesLoaded = false;
- bool _dirty = false;
- DateTime _lastActivityDate = DateTime.MinValue;
- DateTime _lastUpdatedDate = DateTime.MinValue;
- SettingsContext _settingsContext = null;
- SettingsPropertyValueCollection _propertiyValues = null;
- const string Profiles_SettingsPropertyCollection = "Profiles.SettingsPropertyCollection";
- #if TARGET_J2EE
- static SettingsPropertyCollection _properties
- {
- get
- {
- object o = AppDomain.CurrentDomain.GetData (Profiles_SettingsPropertyCollection);
- return (SettingsPropertyCollection) o;
- }
- set
- {
- AppDomain.CurrentDomain.SetData (Profiles_SettingsPropertyCollection, value);
- }
- }
- #else
- static SettingsPropertyCollection _properties = null;
- #endif
- static void InitProperties ()
- {
- SettingsPropertyCollection properties = new SettingsPropertyCollection ();
- ProfileSection config = (ProfileSection) WebConfigurationManager.GetSection ("system.web/profile");
- RootProfilePropertySettingsCollection ps = config.PropertySettings;
- for (int i = 0; i < ps.GroupSettings.Count; i++) {
- ProfileGroupSettings pgs = ps.GroupSettings [i];
- ProfilePropertySettingsCollection ppsc = pgs.PropertySettings;
- for (int s = 0; s < ppsc.Count; s++) {
- SettingsProperty settingsProperty = CreateSettingsPropery (pgs, ppsc [s]);
- ValidateProperty (settingsProperty, ppsc [i].ElementInformation);
- properties.Add (settingsProperty);
- }
- }
- for (int s = 0; s < ps.Count; s++) {
- SettingsProperty settingsProperty = CreateSettingsPropery (null, ps [s]);
- ValidateProperty (settingsProperty, ps [s].ElementInformation);
- properties.Add (settingsProperty);
- }
- if (config.Inherits.Length > 0) {
- Type profileType = ProfileParser.GetProfileCommonType (HttpContext.Current);
- if (profileType != null) {
- Type properiesType = profileType.BaseType;
- for (; ; ) {
- PropertyInfo [] pi = properiesType.GetProperties (BindingFlags.Instance | BindingFlags.Public | BindingFlags.DeclaredOnly);
- if (pi.Length > 0)
- for (int i = 0; i < pi.Length; i++)
- properties.Add (CreateSettingsPropery (pi [i]));
- if (properiesType.BaseType == null ||
- properiesType.BaseType == typeof (ProfileBase))
- break;
- properiesType = properiesType.BaseType;
- }
- }
- }
- properties.SetReadOnly ();
- lock (Profiles_SettingsPropertyCollection) {
- if (_properties == null)
- _properties = properties;
- }
- }
-
- public ProfileBase ()
- {
- }
- public static ProfileBase Create (string username)
- {
- return Create (username, true);
- }
- public static ProfileBase Create (string username, bool isAuthenticated)
- {
- ProfileBase profile = null;
- Type profileType = ProfileParser.GetProfileCommonType (HttpContext.Current);
- if (profileType != null)
- profile = (ProfileBase) Activator.CreateInstance (profileType);
- else
- profile = (ProfileBase) new DefaultProfile ();
- profile.Initialize (username, isAuthenticated);
- return profile;
- }
- public ProfileGroupBase GetProfileGroup (string groupName)
- {
- ProfileGroupBase group = null;
- Type groupType = ProfileParser.GetProfileGroupType (HttpContext.Current, groupName);
- if (groupType != null)
- group = (ProfileGroupBase) Activator.CreateInstance (groupType);
- else
- throw new ProviderException ("Group '" + groupName + "' not found");
- group.Init (this, groupName);
- return group;
- }
- public object GetPropertyValue (string propertyName)
- {
- if (!_propertiyValuesLoaded)
- InitPropertiesValues ();
- _lastActivityDate = DateTime.UtcNow;
- return ((SettingsPropertyValue) _propertiyValues [propertyName]).PropertyValue;
- }
- public void SetPropertyValue (string propertyName, object propertyValue)
- {
- if (!_propertiyValuesLoaded)
- InitPropertiesValues ();
- if (_propertiyValues [propertyName] == null)
- throw new SettingsPropertyNotFoundException ("The settings property '" + propertyName + "' was not found.");
- if (!(bool)((SettingsPropertyValue)
- _propertiyValues [propertyName]).Property.Attributes["AllowAnonymous"] && IsAnonymous)
- throw new ProviderException ("This property cannot be set for anonymous users.");
- ((SettingsPropertyValue) _propertiyValues [propertyName]).PropertyValue = propertyValue;
- _dirty = true;
- _lastActivityDate = DateTime.UtcNow;
- _lastUpdatedDate = _lastActivityDate;
- }
- public override object this [string propertyName]
- {
- get
- {
- return GetPropertyValue (propertyName);
- }
- set
- {
- SetPropertyValue (propertyName, value);
- }
- }
- void InitPropertiesValues ()
- {
- if (!_propertiyValuesLoaded) {
- _propertiyValues = ProfileManager.Provider.GetPropertyValues (_settingsContext, Properties);
- _propertiyValuesLoaded = true;
- }
- }
- static Type GetPropertyType (ProfileGroupSettings pgs, ProfilePropertySettings pps)
- {
- Type type = Type.GetType (pps.Type);
- if (type != null)
- return type;
- Type profileType = null;
- if (pgs == null)
- profileType = ProfileParser.GetProfileCommonType (HttpContext.Current);
- else
- profileType = ProfileParser.GetProfileGroupType (HttpContext.Current, pgs.Name);
- if (profileType == null)
- return null;
- PropertyInfo pi = profileType.GetProperty (pps.Name);
- if (pi != null)
- return pi.PropertyType;
- return null;
- }
- static void ValidateProperty (SettingsProperty settingsProperty, ElementInformation elementInfo)
- {
- string exceptionMessage = string.Empty;
- if (!AnonymousIdentificationModule.Enabled &&
- (bool) settingsProperty.Attributes ["AllowAnonymous"])
- exceptionMessage = "Profile property '{0}' allows anonymous users to store data. " +
- "This requires that the AnonymousIdentification feature be enabled.";
- if (settingsProperty.PropertyType == null)
- exceptionMessage = "The type specified for a profile property '{0}' could not be found.";
- if (settingsProperty.SerializeAs == SettingsSerializeAs.Binary &&
- !settingsProperty.PropertyType.IsSerializable)
- exceptionMessage = "The type for the property '{0}' cannot be serialized " +
- "using the binary serializer, since the type is not marked as serializable.";
- if (exceptionMessage.Length > 0)
- throw new ConfigurationErrorsException (string.Format (exceptionMessage, settingsProperty.Name),
- elementInfo.Source, elementInfo.LineNumber);
- }
- static SettingsProperty CreateSettingsPropery (PropertyInfo property)
- {
- SettingsProperty sp = new SettingsProperty (property.Name);
- Attribute [] attributes = (Attribute [])property.GetCustomAttributes (typeof (SettingsSerializeAsAttribute), false);
- SettingsAttributeDictionary attDict = new SettingsAttributeDictionary();
- sp.SerializeAs = SettingsSerializeAs.ProviderSpecific;
- sp.PropertyType = property.PropertyType;
- sp.IsReadOnly = false;
- sp.ThrowOnErrorDeserializing = false;
- sp.ThrowOnErrorSerializing = true;
- for (int i = 0; i < attributes.Length; i++) {
- if (attributes [i] is DefaultSettingValueAttribute)
- sp.DefaultValue = ((DefaultSettingValueAttribute) attributes [i]).Value;
- else if (attributes [i] is SettingsProviderAttribute) {
- Type providerType = Type.GetType (((SettingsProviderAttribute) attributes [i]).ProviderTypeName);
- sp.Provider = (SettingsProvider) Activator.CreateInstance (providerType);
- sp.Provider.Initialize (null, null);
- }
- else if (attributes [i] is SettingsSerializeAsAttribute)
- sp.SerializeAs = ((SettingsSerializeAsAttribute) attributes [i]).SerializeAs;
- else if (
- attributes [i] is SettingsAllowAnonymousAttribute ||
- attributes [i] is ApplicationScopedSettingAttribute ||
- attributes [i] is UserScopedSettingAttribute ||
- attributes [i] is SettingsDescriptionAttribute ||
- attributes [i] is SettingAttribute)
- attDict.Add (attributes [i].GetType (), attributes [i]);
- }
- if (sp.Provider == null)
- sp.Provider = ProfileManager.Provider;
- if (sp.Attributes ["AllowAnonymous"] == null)
- sp.Attributes ["AllowAnonymous"] = false;
- return sp;
- }
- static SettingsProperty CreateSettingsPropery (ProfileGroupSettings pgs, ProfilePropertySettings pps)
- {
- string name = ((pgs == null) ? "" : pgs.Name + ".") + pps.Name;
- SettingsProperty sp = new SettingsProperty (name);
- sp.Attributes.Add ("AllowAnonymous", pps.AllowAnonymous);
- sp.DefaultValue = pps.DefaultValue;
- sp.IsReadOnly = pps.ReadOnly;
- sp.Provider = ProfileManager.Provider;
- sp.ThrowOnErrorDeserializing = false;
- sp.ThrowOnErrorSerializing = true;
- if (pps.Type.Length == 0 || pps.Type == "string")
- sp.PropertyType = typeof (string);
- else
- sp.PropertyType = GetPropertyType (pgs, pps);
- switch (pps.SerializeAs) {
- case SerializationMode.Binary:
- sp.SerializeAs = SettingsSerializeAs.Binary;
- break;
- case SerializationMode.ProviderSpecific:
- sp.SerializeAs = SettingsSerializeAs.ProviderSpecific;
- break;
- case SerializationMode.String:
- sp.SerializeAs = SettingsSerializeAs.String;
- break;
- case SerializationMode.Xml:
- sp.SerializeAs = SettingsSerializeAs.Xml;
- break;
- }
- return sp;
- }
- public void Initialize (string username, bool isAuthenticated)
- {
- _settingsContext = new SettingsContext ();
- _settingsContext.Add ("UserName", username);
- _settingsContext.Add ("IsAuthenticated", isAuthenticated);
- SettingsProviderCollection spc = new SettingsProviderCollection();
- spc.Add (ProfileManager.Provider);
- base.Initialize (Context, ProfileBase.Properties, spc);
- }
- public override void Save ()
- {
- if (IsDirty) {
- ProfileManager.Provider.SetPropertyValues (_settingsContext, _propertiyValues);
- }
- }
- public bool IsAnonymous {
- get {
- return !(bool) _settingsContext ["IsAuthenticated"];
- }
- }
- public bool IsDirty {
- get {
- return _dirty;
- }
- }
- public DateTime LastActivityDate {
- get {
- return _lastActivityDate;
- }
- }
- public DateTime LastUpdatedDate {
- get {
- return _lastUpdatedDate;
- }
- }
- public new static SettingsPropertyCollection Properties {
- get {
- if (_properties == null)
- InitProperties ();
- return _properties;
- }
- }
- public string UserName {
- get {
- return (string) _settingsContext ["UserName"];
- }
- }
- }
- }
- #endif
|