using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Web; using System.Web.Security; using System.Web.SessionState; namespace LYFZ.WanYuKeFu { public class Global : System.Web.HttpApplication { static LYFZ.WanYuKeFuData.Model.DBConnection dbConn = LYFZ.WanYuKeFuData.SystemConfig.ReadDBConnectionConfig(); public static LYFZ.WanYuKeFuData.Model.DBConnection DbConn { get { return Global.dbConn; } set { Global.dbConn = value; } } //static List tempRegisterTokenList = new List(); ///// ///// 设备注册临时Token ///// //public static List TempRegisterTokenList //{ // get { return Global.tempRegisterTokenList; } // set { Global.tempRegisterTokenList = value; } //} static List _DisableEidList = new List(); /// /// 禁用手机APP 企业ID 列表 /// public static List DisableEidList { get { return _DisableEidList; } set { _DisableEidList = value; } } private static List _LogsDongleDomainList = new List(); /// /// 调试日志企业ID列表 /// public static List LogsDongleDomainList { get { return Global._LogsDongleDomainList; } set { Global._LogsDongleDomainList = value; } } static List appConfigList = new List(); public static List AppConfigList { get { return Global.appConfigList; } set { Global.appConfigList = value; } } public static LYFZ.WanYuKeFuData.Model.APPConfig GetAPPConfig(string lyfzAppid, int _APPType) { return Global.appConfigList.Find(a=>a.LYFZAPPID.ToLower()==lyfzAppid.ToLower()&&a.APPType==_APPType); } protected void Application_Start(object sender, EventArgs e) { //string tempstr = "E6051908401744:demo,E6051908401744:UYT,E88999999:demo,E6777777:XS,".Trim(','); // string tttt=String.Format("where (EnterpriseID='{0}')",tempstr.Replace(":", "' and userid='").Replace(",", "') or ([EnterpriseID]='")); // string dd = tttt; appConfigList.Clear(); appConfigList = LYFZ.WanYuKeFuData.DAL.APPConfig.GetAPPConfigList(Global.dbConn); LYFZ.WanYuKeFu.ErpGetuiApiSDK.LoadGetuiApiSDKConfig(); } protected void Session_Start(object sender, EventArgs e) { } protected void Application_BeginRequest(object sender, EventArgs e) { } protected void Application_AuthenticateRequest(object sender, EventArgs e) { } protected void Application_Error(object sender, EventArgs e) { } protected void Session_End(object sender, EventArgs e) { } protected void Application_End(object sender, EventArgs e) { } private static bool isOpenLogs = false; /// /// 是否开启日志功能 /// public static bool IsOpenLogs { get { return isOpenLogs; } set { isOpenLogs = value; } } /// /// 写日志(用于跟踪) /// public static void WriteLog(string strMsg, string ddomaine = "-1", List _LogsDongleDomainList = null) { try { if ((_LogsDongleDomainList != null && IsOpenLogs && _LogsDongleDomainList.Contains(ddomaine)) || (IsOpenLogs && ddomaine == "-1") || (ddomaine == "-2" && IsOpenLogs)) { string filename = LYFZ.WinAPI.CustomPublicMethod.BasePath + "\\Logs\\APIlogs.txt"; if (!Directory.Exists(System.IO.Path.GetDirectoryName(filename))) Directory.CreateDirectory(System.IO.Path.GetDirectoryName(filename)); StreamWriter sr = null; try { if (!File.Exists(filename)) { sr = File.CreateText(filename); } else { sr = File.AppendText(filename); } sr.WriteLine("【" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "】" + strMsg); } catch { } finally { if (sr != null) sr.Close(); } } } catch { } } public static string GetWeiXinlogs() { string filename = LYFZ.WinAPI.CustomPublicMethod.BasePath + "\\Logs\\APIlogs.txt"; if (System.IO.File.Exists(filename)) { return System.IO.File.ReadAllText(filename).Replace("\r\n", "
").Replace("\n", "
"); } else { return "暂无日志"; } } public static bool DeleteWeiXinlogs() { try { string filename = LYFZ.WinAPI.CustomPublicMethod.BasePath + "\\Logs\\APIlogs.txt"; if (System.IO.File.Exists(filename)) { System.IO.File.Delete(filename); return true; } else { return false; } } catch { return false; } } } }