The website structure containing details oof the underlying website
コード例 #1
0
 /// <summary>
 /// Adds the default website config and params to the current website 
 /// </summary>
 public Website()
 {
     Config = new WebsiteConfig();
     WebsiteParameters = new WebsiteParameters();
 }
コード例 #2
0
        internal override void Parse()
        {
            if (Config == null)
                Config = new WebsiteConfig();

            XNamespace serialisationNamespace = SerialisationNamespace;
            var element = Document.Element(GetSchema() + "SiteConfig");

            #region boolean values

            // get the compute modefrom the instance
            if (element.Element(GetSchema() + "DetailedErrorLoggingEnabled") != null)
            {
                Config.DetailedErrorLoggingEnabled = bool.Parse(element.Element(GetSchema() + "DetailedErrorLoggingEnabled").Value);
            }
            // get the compute modefrom the instance
            if (element.Element(GetSchema() + "HttpLoggingEnabled") != null)
            {
                Config.HttpLoggingEnabled = bool.Parse(element.Element(GetSchema() + "HttpLoggingEnabled").Value);
            }
            // get the compute modefrom the instance
            if (element.Element(GetSchema() + "RequestTracingEnabled") != null)
            {
                Config.RequestTracingEnabled = bool.Parse(element.Element(GetSchema() + "RequestTracingEnabled").Value);
            }
            // get the compute modefrom the instance
            if (element.Element(GetSchema() + "Use32BitWorkerProcess") != null)
            {
                Config.Use32BitWorkerProcess = bool.Parse(element.Element(GetSchema() + "Use32BitWorkerProcess").Value);
            }

            #endregion

            #region string and int values

            // gets the source control type
            if (element.Element(GetSchema() + "ScmType") != null && element.Element(GetSchema() + "ScmType").Value != String.Empty)
            {
                Config.ScmType = (ScmType)Enum.Parse(typeof(ScmType), element.Element(GetSchema() + "ScmType").Value);
            }
            // get the name of the site as in xxxx.azurewebsites.net
            if (element.Element(GetSchema() + "NetFrameworkVersion") != null)
            {
                Config.NetFrameworkVersion = element.Element(GetSchema() + "NetFrameworkVersion").Value;
            }
            // get the name of the site as in xxxx.azurewebsites.net
            if (element.Element(GetSchema() + "PhpVersion") != null)
            {
                Config.PhpVersion = element.Element(GetSchema() + "PhpVersion").Value;
            }
            // get the name of the site as in xxxx.azurewebsites.net
            if (element.Element(GetSchema() + "PublishingUsername") != null)
            {
                Config.PublishingUsername = element.Element(GetSchema() + "PublishingUsername").Value;
            }
            // get the name of the site as in xxxx.azurewebsites.net
            if (element.Element(GetSchema() + "PublishingPassword") != null)
            {
                Config.PublishingPassword = element.Element(GetSchema() + "PublishingPassword").Value;
            }
            // get the name of the site as in xxxx.azurewebsites.net
            if (element.Element(GetSchema() + "NumberOfWorkers") != null)
            {
                Config.NumberOfWorkers = int.Parse(element.Element(GetSchema() + "NumberOfWorkers").Value);
            }

            #endregion

            #region collections

            // get the appsettings
            if (element.Element(GetSchema() + "AppSettings") != null)
            {
                Config.AppSettings = new Dictionary<string, string>();
                foreach (var nvPair in element.Element(GetSchema() + "AppSettings").
                    Elements(GetSchema() + "NameValuePair"))
                {
                    Config.AppSettings.Add(nvPair.Element(GetSchema() + "Name").Value, nvPair.Element(GetSchema() + "Value").Value);
                }
            }
            // get the metadata
            if (element.Element(GetSchema() + "Metadata") != null)
            {
                Config.Metadata = new Dictionary<string, string>();
                foreach (var nvPair in element.Element(GetSchema() + "Metadata").
                    Elements(GetSchema() + "NameValuePair"))
                {
                    Config.Metadata.Add(nvPair.Element(GetSchema() + "Name").Value, nvPair.Element(GetSchema() + "Value").Value);
                }
            }
            // get the connectionstrings
            if (element.Element(GetSchema() + "ConnectionStrings") != null)
            {
                Config.ConnectionStrings = new List<ConnStringInfo>();
                foreach (var nvPair in element.Element(GetSchema() + "ConnectionStrings").
                    Elements(GetSchema() + "ConnStringInfo"))
                {
                    Config.ConnectionStrings.Add(new ConnStringInfo()
                                                     {
                                                         ConnectionString =
                                                             nvPair.Element(GetSchema() + "ConnectionString").Value,
                                                         Name = nvPair.Element(GetSchema() + "Name").Value,
                                                         Type = nvPair.Element(GetSchema() + "Type").Value
                                                     });
                }
            }
            // get the handler mappings

            // get the default documents
            if (element.Element(GetSchema() + "DefaultDocuments") != null)
            {
                Config.DefaultDocuments = new List<string>();
                foreach (var documentElement in element.Element(GetSchema() + "DefaultDocuments").
                    Elements(serialisationNamespace + "string"))
                {
                    Config.DefaultDocuments.Add(documentElement.Value);
                }
            }

            CommandResponse = Config;
            #endregion
        }
コード例 #3
0
ファイル: Website.cs プロジェクト: daonhan/fluent-management
 /// <summary>
 /// Adds the default website config and params to the current website
 /// </summary>
 public Website()
 {
     Config            = new WebsiteConfig();
     WebsiteParameters = new WebsiteParameters();
 }
コード例 #4
0
 /// <summary>
 /// Used to construct a website parser
 /// </summary>
 /// <param name="document"></param>
 public WebsiteConfigParser(XDocument document)
     : base(document)
 {
     CommandResponse = new WebsiteConfig();
 }