Global.asax.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Web;
  6. using System.Web.Security;
  7. using System.Web.SessionState;
  8. namespace LYFZ.WanYuKeFu
  9. {
  10. public class Global : System.Web.HttpApplication
  11. {
  12. static LYFZ.WanYuKeFuData.Model.DBConnection dbConn = LYFZ.WanYuKeFuData.SystemConfig.ReadDBConnectionConfig();
  13. public static LYFZ.WanYuKeFuData.Model.DBConnection DbConn
  14. {
  15. get { return Global.dbConn; }
  16. set { Global.dbConn = value; }
  17. }
  18. //static List<string> tempRegisterTokenList = new List<string>();
  19. ///// <summary>
  20. ///// 设备注册临时Token
  21. ///// </summary>
  22. //public static List<string> TempRegisterTokenList
  23. //{
  24. // get { return Global.tempRegisterTokenList; }
  25. // set { Global.tempRegisterTokenList = value; }
  26. //}
  27. static List<string> _DisableEidList = new List<string>();
  28. /// <summary>
  29. /// 禁用手机APP 企业ID 列表
  30. /// </summary>
  31. public static List<string> DisableEidList
  32. {
  33. get { return _DisableEidList; }
  34. set { _DisableEidList = value; }
  35. }
  36. private static List<string> _LogsDongleDomainList = new List<string>();
  37. /// <summary>
  38. /// 调试日志企业ID列表
  39. /// </summary>
  40. public static List<string> LogsDongleDomainList
  41. {
  42. get { return Global._LogsDongleDomainList; }
  43. set { Global._LogsDongleDomainList = value; }
  44. }
  45. static List<LYFZ.WanYuKeFuData.Model.APPConfig> appConfigList = new List<WanYuKeFuData.Model.APPConfig>();
  46. public static List<LYFZ.WanYuKeFuData.Model.APPConfig> AppConfigList
  47. {
  48. get { return Global.appConfigList; }
  49. set { Global.appConfigList = value; }
  50. }
  51. public static LYFZ.WanYuKeFuData.Model.APPConfig GetAPPConfig(string lyfzAppid, int _APPType)
  52. {
  53. return Global.appConfigList.Find(a=>a.LYFZAPPID.ToLower()==lyfzAppid.ToLower()&&a.APPType==_APPType);
  54. }
  55. protected void Application_Start(object sender, EventArgs e)
  56. {
  57. //string tempstr = "E6051908401744:demo,E6051908401744:UYT,E88999999:demo,E6777777:XS,".Trim(',');
  58. // string tttt=String.Format("where (EnterpriseID='{0}')",tempstr.Replace(":", "' and userid='").Replace(",", "') or ([EnterpriseID]='"));
  59. // string dd = tttt;
  60. appConfigList.Clear();
  61. appConfigList = LYFZ.WanYuKeFuData.DAL.APPConfig.GetAPPConfigList(Global.dbConn);
  62. LYFZ.WanYuKeFu.ErpGetuiApiSDK.LoadGetuiApiSDKConfig();
  63. }
  64. protected void Session_Start(object sender, EventArgs e)
  65. {
  66. }
  67. protected void Application_BeginRequest(object sender, EventArgs e)
  68. {
  69. }
  70. protected void Application_AuthenticateRequest(object sender, EventArgs e)
  71. {
  72. }
  73. protected void Application_Error(object sender, EventArgs e)
  74. {
  75. }
  76. protected void Session_End(object sender, EventArgs e)
  77. {
  78. }
  79. protected void Application_End(object sender, EventArgs e)
  80. {
  81. }
  82. private static bool isOpenLogs = false;
  83. /// <summary>
  84. /// 是否开启日志功能
  85. /// </summary>
  86. public static bool IsOpenLogs
  87. {
  88. get { return isOpenLogs; }
  89. set { isOpenLogs = value; }
  90. }
  91. /// <summary>
  92. /// 写日志(用于跟踪)
  93. /// </summary>
  94. public static void WriteLog(string strMsg, string ddomaine = "-1", List<string> _LogsDongleDomainList = null)
  95. {
  96. try
  97. {
  98. if ((_LogsDongleDomainList != null && IsOpenLogs && _LogsDongleDomainList.Contains(ddomaine)) || (IsOpenLogs && ddomaine == "-1") || (ddomaine == "-2" && IsOpenLogs))
  99. {
  100. string filename = LYFZ.WinAPI.CustomPublicMethod.BasePath + "\\Logs\\APIlogs.txt";
  101. if (!Directory.Exists(System.IO.Path.GetDirectoryName(filename)))
  102. Directory.CreateDirectory(System.IO.Path.GetDirectoryName(filename));
  103. StreamWriter sr = null;
  104. try
  105. {
  106. if (!File.Exists(filename))
  107. {
  108. sr = File.CreateText(filename);
  109. }
  110. else
  111. {
  112. sr = File.AppendText(filename);
  113. }
  114. sr.WriteLine("【" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "】" + strMsg);
  115. }
  116. catch
  117. {
  118. }
  119. finally
  120. {
  121. if (sr != null)
  122. sr.Close();
  123. }
  124. }
  125. }
  126. catch { }
  127. }
  128. public static string GetWeiXinlogs()
  129. {
  130. string filename = LYFZ.WinAPI.CustomPublicMethod.BasePath + "\\Logs\\APIlogs.txt";
  131. if (System.IO.File.Exists(filename))
  132. {
  133. return System.IO.File.ReadAllText(filename).Replace("\r\n", "<br />").Replace("\n", "<br />");
  134. }
  135. else
  136. {
  137. return "暂无日志";
  138. }
  139. }
  140. public static bool DeleteWeiXinlogs()
  141. {
  142. try
  143. {
  144. string filename = LYFZ.WinAPI.CustomPublicMethod.BasePath + "\\Logs\\APIlogs.txt";
  145. if (System.IO.File.Exists(filename))
  146. {
  147. System.IO.File.Delete(filename);
  148. return true;
  149. }
  150. else
  151. {
  152. return false;
  153. }
  154. }
  155. catch { return false; }
  156. }
  157. }
  158. }