Your IP : 216.73.216.79


Current Path : /var/www/html/jawharv2/flowpaper/aspnet/
Upload File :
Current File : /var/www/html/jawharv2/flowpaper/aspnet/change_config.aspx.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using lib;
using System.IO;

public partial class change_config : System.Web.UI.Page
{
    protected Config configManager;
    
    protected void Page_Load(object sender, EventArgs e)
    {
        configManager = new Config(Server.MapPath(VirtualPathUtility.GetDirectory(Request.Path)));

        if (configManager.getConfig("admin.password") == null)
        {
            Response.Redirect("setup.aspx");
            Response.End();
        }

        if (Session["FLOWPAPER_AUTH"] == null)
        {
            Response.Redirect("Default.aspx");
            Response.End();
        }

        if(File.Exists(Server.MapPath(VirtualPathUtility.GetDirectory(Request.Path)) + "setup.aspx")){
            Response.Write("Please delete setup.aspx and setup.aspx.cs to access the admin console.");
            Response.End();
        }

        if (Request["SAVE_CONFIG"] != null)
        {
            String path_pdf = Request["PDF_Directory"];
            String path_pdf_workingdir = Request["SWF_Directory"];

            if (!path_pdf.EndsWith("\\"))
            {
                path_pdf += "\\";
            }

            if (!path_pdf_workingdir.EndsWith("\\"))
            {
                path_pdf_workingdir += "\\";
            }

            configManager.setConfig("path.pdf", path_pdf);
            configManager.setConfig("path.swf", path_pdf_workingdir);
            configManager.setConfig("licensekey", Request["LICENSEKEY"]);
            configManager.setConfig("splitmode", Request["SPLITMODE"]);
            configManager.setConfig("renderingorder.primary", Request["RenderingOrder_PRIM"]);
            configManager.setConfig("renderingorder.secondary", Request["RenderingOrder_SEC"]);

            configManager.SaveConfig(Server.MapPath(VirtualPathUtility.GetDirectory(Request.Path)));

            // wipe old converted files
            if (System.IO.Directory.Exists(configManager.getConfig("path.swf")))
            {
                foreach (string filename in System.IO.Directory.GetFiles(configManager.getConfig("path.swf"))) 
                {
                    if(filename.EndsWith(".pdf") || filename.EndsWith(".js") || filename.EndsWith(".png") || filename.EndsWith(".jpg") || filename.EndsWith(".swf")){
                        System.IO.File.Delete(filename);
                    }
                }
            }

            Response.Redirect("Default.aspx?msg=Configuration%20saved!");
        }
    }
}