Your IP : 216.73.216.79


Current Path : /var/www/html/jawharv2/flowpaper/aspnet/
Upload File :
Current File : /var/www/html/jawharv2/flowpaper/aspnet/Default.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 _Default : System.Web.UI.Page
{
    protected Config configManager;
    protected String loginerr;
    protected String pdfFilePath;

    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();
        }

        pdfFilePath = configManager.getConfig("path.pdf");

        if(Session["FLOWPAPER_AUTH"]!=null){
            if(Request["pdfFile"]!=null){
                String[] vals = Request["pdfFile"].Split(',');
                for (int i = 0; i < vals.Length; i++)
                {
                    if(File.Exists(pdfFilePath+vals[i]) && vals[i].IndexOfAny(System.IO.Path.GetInvalidFileNameChars())==-1){
                        File.Delete(pdfFilePath+vals[i]);
                    }
                }
            }
        }

        if(File.Exists(Server.MapPath(VirtualPathUtility.GetDirectory(Request.Path)) + "setup.aspx")){
            Session["FLOWPAPER_AUTH"] = null;
            loginerr = "Please delete setup.aspx and setup.aspx.cs to complete the set up and to access the admin console. Then refresh this page.";
        }

        if (Request["ADMIN_USERNAME"] != null)
        {
            if(configManager.getConfig("admin.username") == Request["ADMIN_USERNAME"] &&
               configManager.getConfig("admin.password") == Request["ADMIN_PASSWORD"]){
                Session["FLOWPAPER_AUTH"] = "1";
            }else{
                Session["FLOWPAPER_AUTH"] = null;
                loginerr = "Authentication failed. Please contact your system administrator for assistance.";
            }
        }
    }
}