1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
|
//------------------------------------------------------------------------------
// <copyright file="WebConfigManager.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.UI.Design.MobileControls.Util
{
using System;
using System.Collections;
using System.ComponentModel;
using System.Diagnostics;
using System.Reflection;
using System.IO;
using System.Windows.Forms;
using System.Web.UI.MobileControls;
using System.Web.UI.Design;
using System.Web.UI.Design.MobileControls;
using System.Xml;
using SR = System.Web.UI.Design.MobileControls.SR;
[
System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand,
Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)
]
[Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")]
internal class WebConfigManager
{
private readonly String _path = null;
private ISite _site = null;
private XmlDocument _document = null;
private WebConfigManager()
{
}
internal WebConfigManager(ISite site)
{
Debug.Assert(site != null);
_site = site;
IWebApplication webApplicationService = (IWebApplication)_site.GetService(typeof(IWebApplication));
if (webApplicationService != null) {
IProjectItem dataFileProjectItem = webApplicationService.GetProjectItemFromUrl("~/web.config");
if (dataFileProjectItem != null) {
_path = dataFileProjectItem.PhysicalPath;
}
}
/* VSWhidbey 271075, 257678
// the following inspired by:
// \VSDesigner\Designer\Microsoft\VisualStudio\Designer\Serialization\BaseDesignerLoader.cs
Type projectItemType = Type.GetType("EnvDTE.ProjectItem, " + AssemblyRef.EnvDTE);
if (projectItemType != null)
{
Object currentProjItem = _site.GetService(projectItemType);
PropertyInfo containingProjectProp = projectItemType.GetProperty("ContainingProject");
Object dteProject = containingProjectProp.GetValue(currentProjItem, new Object[0]);
Type projectType = Type.GetType("EnvDTE.Project, " + AssemblyRef.EnvDTE);
PropertyInfo fullNameProperty = projectType.GetProperty("FullName");
String projectPath = (String)fullNameProperty.GetValue(dteProject, new Object[0]);
_path = Path.GetDirectoryName(projectPath) + "\\web.config";
}
*/
}
internal XmlDocument Document
{
get
{
if (_document == null)
{
_document = new XmlDocument();
}
return _document;
}
}
private void LoadDocument()
{
try
{
Document.Load(_path);
}
catch (Exception ex)
{
Debug.Fail(ex.ToString());
throw new Exception(SR.GetString(SR.WebConfig_FileLoadException));
}
}
internal void EnsureWebConfigCheckedOut()
{
DesignerUtility.EnsureFileCheckedOut(_site, _path);
}
internal void EnsureWebConfigIsPresent()
{
if(!File.Exists(_path))
{
// We throw our own exception type so we can easily tell
// between a corrupt web.config and a missing one.
throw new FileNotFoundException(
SR.GetString(SR.WebConfig_FileNotFoundException)
);
}
}
internal ArrayList ReadDeviceFilters()
{
EnsureWebConfigIsPresent();
// Reload the document everytime we read filters
LoadDocument();
XmlNode filters = FindFilterSection(Document, false);
ArrayList DeviceFilterList = new ArrayList();
if (filters != null)
{
Hashtable filterTable = new Hashtable();
foreach(XmlNode childNode in filters.ChildNodes)
{
if (childNode.Name != null && childNode.Name.Equals("filter"))
{
// Ignore the empty filter.
if (childNode.Attributes["name"] == null ||
childNode.Attributes["name"].Value == null ||
childNode.Attributes["name"].Value.Length == 0)
{
continue;
}
String filterName = childNode.Attributes["name"].Value;
if (filterTable[filterName] != null)
{
throw new Exception(SR.GetString(SR.DeviceFilterEditorDialog_DuplicateNames));
}
DeviceFilterNode node = new DeviceFilterNode(this, childNode);
DeviceFilterList.Add(node);
filterTable[filterName] = true;
}
}
}
return DeviceFilterList;
}
private bool IsSystemWebSectionPresent()
{
EnsureWebConfigIsPresent();
XmlNode filters = FindFilterSection(Document, false);
return filters != null;
}
private XmlElement FindXmlNode(XmlNode node, string name) {
Debug.Assert(node != null);
if (node.HasChildNodes) {
foreach (XmlNode child in node.ChildNodes) {
if (String.Equals(child.Name, name, StringComparison.Ordinal) &&
child is XmlElement) {
return (XmlElement)child;
}
}
}
return null;
}
internal XmlElement FindFilterSection(XmlDocument document, bool createIfNotExists) {
XmlNode configSection = FindXmlNode(document, "configuration");
if (configSection == null) {
if (createIfNotExists) {
throw new Exception(SR.GetString(SR.WebConfig_FileLoadException));
}
return null;
}
XmlElement webSection = FindXmlNode(configSection, "system.web");
if (webSection == null) {
if (createIfNotExists) {
webSection = Document.CreateElement("system.web");
configSection.AppendChild(webSection);
}
return null;
}
XmlElement filters = FindXmlNode(webSection, "deviceFilters");
if (filters == null) {
if (createIfNotExists) {
filters = Document.CreateElement("deviceFilters");
webSection.AppendChild(filters);
}
return null;
}
return filters;
}
internal void EnsureSystemWebSectionIsPresent() {
if (!IsSystemWebSectionPresent()) {
Debug.Assert(Document != null);
FindFilterSection(Document, true);
}
}
internal void Save()
{
Document.Save(_path);
}
}
[
System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand,
Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)
]
[Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")]
internal class DeviceFilterNode : ICloneable
{
internal enum DeviceFilterMode
{
Compare,
Delegate
};
private WebConfigManager _webConfig = null;
private XmlNode _xmlNode = null;
internal DeviceFilterMode Mode;
private String _name;
private String _type;
private String _method;
private String _compare;
private String _argument;
internal DeviceFilterNode(WebConfigManager webConfig) : base()
{
_webConfig = webConfig;
_xmlNode = webConfig.Document.CreateElement("filter");
Name = SR.GetString(SR.DeviceFilterNode_DefaultFilterName);
Mode = DeviceFilterMode.Compare;
}
internal DeviceFilterNode(
WebConfigManager webConfig,
XmlNode xmlNode
) {
_webConfig = webConfig;
_xmlNode = xmlNode;
Debug.Assert(_xmlNode.Attributes != null);
if (_xmlNode.Attributes["type"] != null)
{
Mode = DeviceFilterMode.Delegate;
Debug.Assert(
_xmlNode.Attributes["argument"] == null && _xmlNode.Attributes["compare"] == null,
"Managementobject contains both Compare and Delegate mode properties."
);
}
else
{
Mode = DeviceFilterMode.Compare;
// we already know type is null, but it nevers hurts...
Debug.Assert(
_xmlNode.Attributes["type"] == null && _xmlNode.Attributes["method"] == null,
"Managementobject contains both Compare and Delegate mode properties."
);
}
_name = _xmlNode.Attributes["name"] == null?
null : _xmlNode.Attributes["name"].Value;
_compare = _xmlNode.Attributes["compare"] == null?
null : _xmlNode.Attributes["compare"].Value;
_argument = _xmlNode.Attributes["argument"] == null?
null : _xmlNode.Attributes["argument"].Value;
_type = _xmlNode.Attributes["type"] == null?
null : _xmlNode.Attributes["type"].Value;
_method = _xmlNode.Attributes["method"] == null?
null : _xmlNode.Attributes["method"].Value;
}
internal void Delete()
{
Debug.Assert(_xmlNode != null);
if (_xmlNode.ParentNode != null)
{
_xmlNode.ParentNode.RemoveChild(_xmlNode);
}
}
internal void Save()
{
Debug.Assert(_xmlNode != null);
if (_xmlNode.Attributes["name"] == null)
{
_xmlNode.Attributes.Append(_webConfig.Document.CreateAttribute("name"));
}
_xmlNode.Attributes["name"].Value = Name;
if(Mode == DeviceFilterMode.Compare)
{
Type = null;
Method = null;
_xmlNode.Attributes.RemoveNamedItem("type");
_xmlNode.Attributes.RemoveNamedItem("method");
if (_xmlNode.Attributes["compare"] == null)
{
_xmlNode.Attributes.Append(_webConfig.Document.CreateAttribute("compare"));
}
_xmlNode.Attributes["compare"].Value = Compare;
if (_xmlNode.Attributes["argument"] == null)
{
_xmlNode.Attributes.Append(_webConfig.Document.CreateAttribute("argument"));
}
_xmlNode.Attributes["argument"].Value = Argument;
}
else
{
Compare = null;
Argument = null;
_xmlNode.Attributes.RemoveNamedItem("compare");
_xmlNode.Attributes.RemoveNamedItem("argument");
if (_xmlNode.Attributes["type"] == null)
{
_xmlNode.Attributes.Append(_webConfig.Document.CreateAttribute("type"));
}
_xmlNode.Attributes["type"].Value = Type;
if (_xmlNode.Attributes["method"] == null)
{
_xmlNode.Attributes.Append(_webConfig.Document.CreateAttribute("method"));
}
_xmlNode.Attributes["method"].Value = Method;
}
_webConfig.EnsureSystemWebSectionIsPresent();
XmlNode filters = _webConfig.FindFilterSection(_webConfig.Document, false);
filters.AppendChild(_xmlNode);
}
// Cause the DeviceFilterNode to display correctly when inserted
// in a combo box.
public override String ToString()
{
if(Name == null || Name.Length == 0)
{
return SR.GetString(SR.DeviceFilter_DefaultChoice);
}
return Name;
}
internal String Name
{
get { return _name; }
set { _name = value; }
}
internal String Type
{
get { return _type; }
set { _type = value; }
}
internal String Method
{
get { return _method; }
set { _method = value; }
}
internal String Compare
{
get { return _compare; }
set { _compare = value; }
}
internal String Argument
{
get { return _argument; }
set { _argument = value; }
}
// <summary>
// Returns a copy of this node's encapsulated data. Does not
// copy TreeNode fields.
// </summary>
public Object Clone()
{
DeviceFilterNode newNode = new DeviceFilterNode(
_webConfig
);
newNode.Name = this.Name;
newNode.Mode = this.Mode;
if(this.Mode == DeviceFilterMode.Compare)
{
newNode.Compare = this.Compare;
newNode.Argument = this.Argument;
}
else
{
newNode.Type = this.Type;
newNode.Method = this.Method;
}
return (Object) newNode;
}
}
}
|