123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- 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<string> tempRegisterTokenList = new List<string>();
- ///// <summary>
- ///// 设备注册临时Token
- ///// </summary>
- //public static List<string> TempRegisterTokenList
- //{
- // get { return Global.tempRegisterTokenList; }
- // set { Global.tempRegisterTokenList = value; }
- //}
- static List<string> _DisableEidList = new List<string>();
- /// <summary>
- /// 禁用手机APP 企业ID 列表
- /// </summary>
- public static List<string> DisableEidList
- {
- get { return _DisableEidList; }
- set { _DisableEidList = value; }
- }
- private static List<string> _LogsDongleDomainList = new List<string>();
- /// <summary>
- /// 调试日志企业ID列表
- /// </summary>
- public static List<string> LogsDongleDomainList
- {
- get { return Global._LogsDongleDomainList; }
- set { Global._LogsDongleDomainList = value; }
- }
- static List<LYFZ.WanYuKeFuData.Model.APPConfig> appConfigList = new List<WanYuKeFuData.Model.APPConfig>();
- public static List<LYFZ.WanYuKeFuData.Model.APPConfig> 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;
- /// <summary>
- /// 是否开启日志功能
- /// </summary>
- public static bool IsOpenLogs
- {
- get { return isOpenLogs; }
- set { isOpenLogs = value; }
- }
- /// <summary>
- /// 写日志(用于跟踪)
- /// </summary>
- public static void WriteLog(string strMsg, string ddomaine = "-1", List<string> _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", "<br />").Replace("\n", "<br />");
- }
- 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; }
- }
- }
- }
|