ViewConfigurationProjectPlugin.cs :  » Build-Systems » CruiseControl.NET » ThoughtWorks » CruiseControl » WebDashboard » Plugins » ProjectReport » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Build Systems » CruiseControl.NET 
CruiseControl.NET » ThoughtWorks » CruiseControl » WebDashboard » Plugins » ProjectReport » ViewConfigurationProjectPlugin.cs
using System.IO;
using System.Web;
using System.Xml;
using Exortech.NetReflector;
using ThoughtWorks.CruiseControl.Core.Reporting.Dashboard.Navigation;
using ThoughtWorks.CruiseControl.WebDashboard.Dashboard;
using ThoughtWorks.CruiseControl.WebDashboard.IO;
using ThoughtWorks.CruiseControl.WebDashboard.MVC;
using ThoughtWorks.CruiseControl.WebDashboard.MVC.Cruise;
using ThoughtWorks.CruiseControl.WebDashboard.ServerConnection;

namespace ThoughtWorks.CruiseControl.WebDashboard.Plugins.ProjectReport{
    /// <title>View Configuration Project Plugin</title>
    /// <version>1.3.0</version>
    /// <summary>
    /// The View Configuration Project Plugin shows the configuration for a project.
    /// </summary>
    /// <example>
    /// <code title="Minimalist Example">
    /// &lt;viewConfigurationProjectPlugin /&gt;
    /// </code>
    /// <code title="Full Example">
    /// &lt;viewConfigurationProjectPlugin hidePasswords="false" /&gt;
    /// </code>
    /// </example>
    /// <remarks>
    /// <para type="tip">
    /// This can be installed using the "Project Configuration Display" package.
    /// </para>
    /// </remarks>
    [ReflectorType("viewConfigurationProjectPlugin")]
    public class ViewConfigurationProjectPlugin : ICruiseAction, IPlugin
    {
        private readonly ICruiseManagerWrapper cruiseManager;

        private bool hidePasswords = true;

        /// <summary>
        /// Whether to hide the passwords.
        /// </summary>
        /// <version>1.4.0</version>
        /// <default>true</default>
        /// <remarks>
        /// From version 1.4.0 the passwords are masked by default. Use this setting if you need to see the passwords.
        /// </remarks>
        [ReflectorProperty("hidePasswords", Required = false)]
        public bool HidePasswords
        {
            get { return hidePasswords; }
            set { hidePasswords = value; }
        }

        public ViewConfigurationProjectPlugin(ICruiseManagerWrapper cruiseManager)
        {
            this.cruiseManager = cruiseManager;
        }

        public IResponse Execute(ICruiseRequest cruiseRequest)
        {
            IProjectSpecifier projectSpecifier = cruiseRequest.ProjectSpecifier;
            string projectXml = cruiseManager.GetProject(projectSpecifier, cruiseRequest.RetrieveSessionToken());
            return new HtmlFragmentResponse("<pre>" + HttpUtility.HtmlEncode(FormatXml(projectXml)) + "</pre>");
        }

        private string FormatXml(string projectXml)
        {
            XmlDocument document = new XmlDocument();
            document.LoadXml(projectXml);
            StringWriter buffer = new StringWriter();
            XmlTextWriter writer = new XmlTextWriter(buffer);
            writer.Formatting = Formatting.Indented;
            document.WriteTo(writer);

            string Result;
            if (hidePasswords)
            {
                Result = SecureProjectView(buffer.ToString());
            }
            else
            {
                Result = buffer.ToString();
            }


            return Result;
        }

        public string LinkDescription
        {
            get { return "Project Configuration"; }
        }

        public INamedAction[] NamedActions
        {
            get { return new INamedAction[] { new ImmutableNamedAction("ViewProjectConfiguration", this) }; }
        }


        private string SecureProjectView(string project)
        {
            const string PasswordReplacement = "*****";

            System.IO.StringReader projectReader = new StringReader(project);
            string projectLine = projectReader.ReadLine();

            System.IO.StringWriter result = new StringWriter();
            string replacedPassword=string.Empty;

            int startPos;
            int endPos;


            while (!(projectLine == null))
            {
                if (System.Text.RegularExpressions.Regex.IsMatch(projectLine,"password", System.Text.RegularExpressions.RegexOptions.IgnoreCase))
                {
                    endPos = projectLine.IndexOf("</");

                    if (endPos > 0)
                    {
                        //structure : <password>somevalue</password>

                        startPos = projectLine.IndexOf(">");
                        replacedPassword = projectLine.Substring(0,startPos+1);
                        replacedPassword += PasswordReplacement;
                        replacedPassword += projectLine.Substring(endPos);
                    }
                    else
                    {
                        //structure : <password />
                        replacedPassword = projectLine.Replace(" /",string.Empty);
                        string temp = replacedPassword.Trim();

                        replacedPassword += PasswordReplacement;
                        replacedPassword += temp.Insert(1,"/");
                    }

                    result.WriteLine(replacedPassword);
                }
                else
                {
                    result.WriteLine(projectLine);
                }

                projectLine = projectReader.ReadLine();
            }

            return result.ToString();
        }


    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.