GlobalActionMonitor.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. using Attribute;
  2. using Base;
  3. using Common;
  4. using Extensions;
  5. using Infrastructure;
  6. using Infrastructure.Model;
  7. using IPTools.Core;
  8. using Microsoft.AspNetCore.Mvc;
  9. using Microsoft.AspNetCore.Mvc.Controllers;
  10. using Microsoft.AspNetCore.Mvc.Diagnostics;
  11. using Microsoft.AspNetCore.Mvc.Filters;
  12. using NLog;
  13. using System.Text;
  14. using System.Web;
  15. namespace Middleware
  16. {
  17. public class GlobalActionMonitor : ActionFilterAttribute
  18. {
  19. static readonly Logger logger = LogManager.GetCurrentClassLogger();
  20. // private readonly ISysOperLogService OperLogService;
  21. public GlobalActionMonitor()
  22. {
  23. // OperLogService = operLogService;
  24. }
  25. /// <summary>
  26. /// Action请求前
  27. /// </summary>
  28. /// <param name="context"></param>
  29. /// <param name="next"></param>
  30. /// <returns></returns>
  31. public override Task OnActionExecutionAsync(ActionExecutingContext context, ActionExecutionDelegate next)
  32. {
  33. if(!context.HttpContext.Request.Path.Value.ToLower().Contains("noauth/"))
  34. {
  35. string content = "";
  36. if(context.HttpContext.Request.Method.ToLower() == "get")
  37. {
  38. content = context.HttpContext.GetQueryString();
  39. content = content.Substring(content.IndexOf("?") + 1);
  40. if(!string.IsNullOrEmpty(content))
  41. {
  42. string jsonString = "";
  43. string[] dataList = content.Split('&');
  44. foreach(string sub in dataList)
  45. {
  46. string[] item = sub.Split('=');
  47. jsonString += "\"" + item[0] + "\":\"" + item[1] + "\",";
  48. }
  49. content = "{" + jsonString.TrimEnd(',') + "}";
  50. }
  51. }
  52. else if(context.HttpContext.Request.Method.ToLower() == "delete")
  53. {
  54. string path = context.HttpContext.Request.Path.Value;
  55. content = path.Substring(path.LastIndexOf("/") + 1);
  56. }
  57. else
  58. {
  59. content = context.HttpContext.GetBody();
  60. }
  61. if(!string.IsNullOrEmpty(content))
  62. {
  63. if(content.Contains("{") && content.Contains("}") && content != "{}")
  64. {
  65. Dictionary<string, object> dictionary = Newtonsoft.Json.JsonConvert.DeserializeObject<Dictionary<string, object>>(content);
  66. if(context.ActionDescriptor.Parameters.Count > 0)
  67. {
  68. var parameters = context.ActionDescriptor.Parameters;
  69. foreach(var parameter in parameters)
  70. {
  71. string parameterName = parameter.Name;
  72. Type objectType = parameter.ParameterType;
  73. if(objectType.FullName != "System.String")
  74. {
  75. System.Reflection.Assembly assembly = System.Reflection.Assembly.GetAssembly(objectType);
  76. var entry = assembly.CreateInstance(objectType.FullName);
  77. Type type = entry.GetType();
  78. System.Reflection.PropertyInfo[] propertyInfos = type.GetProperties();
  79. for (int i = 0; i < propertyInfos.Length; i++)
  80. {
  81. foreach (string key in dictionary.Keys)
  82. {
  83. if (propertyInfos[i].Name == key)
  84. {
  85. object value = dictionary[key];
  86. string ParameterType = propertyInfos[i].GetMethod.ReturnParameter.ParameterType.Name;
  87. if (ParameterType == "Int32")
  88. {
  89. if(value == null || value == "") value = "0";
  90. value = Convert.ToInt32(value);
  91. }
  92. else if (ParameterType == "Int64[]")
  93. {
  94. value = Tools.SpitLongArrary(Newtonsoft.Json.JsonConvert.SerializeObject(value).Replace("[", "").Replace("]", "").Trim('"'), ',');
  95. }
  96. else if (ParameterType == "Int32[]")
  97. {
  98. value = Tools.SpitIntArrary(Newtonsoft.Json.JsonConvert.SerializeObject(value).Replace("[", "").Replace("]", "").Trim('"'), ',');
  99. }
  100. else if (ParameterType == "List`1")
  101. {
  102. string val = Newtonsoft.Json.JsonConvert.SerializeObject(value).Replace("[", "").Replace("]", "").Trim('"');
  103. value = Tools.SpitLongArrary(val, ',').ToList();
  104. }
  105. if(value.ToString() == "-1") value = -1;
  106. if(value.ToString() == "[]") value = "";
  107. propertyInfos[i].SetValue(entry, value, null);
  108. break;
  109. }
  110. }
  111. }
  112. if(context.ActionArguments.ContainsKey(parameterName))
  113. {
  114. context.ActionArguments[parameterName] = entry;
  115. }
  116. else
  117. {
  118. context.ActionArguments.Add(parameterName, entry);
  119. }
  120. }
  121. }
  122. }
  123. }
  124. else
  125. {
  126. string ParamName = context.ActionDescriptor.Parameters[0].Name;
  127. if(context.ActionArguments.ContainsKey(ParamName))
  128. {
  129. context.ActionArguments[ParamName] = Convert.ToInt32(content);
  130. }
  131. else
  132. {
  133. context.ActionArguments.Add(ParamName, Convert.ToInt32(content));
  134. }
  135. }
  136. }
  137. else
  138. {
  139. if(context.ActionDescriptor.Parameters.Count > 0)
  140. {
  141. string ParamName = context.ActionArguments.Keys.First();
  142. object ParamValue = context.ActionArguments.Values.First();
  143. // ParamValue = DesDecrypt(ParamValue.ToString());
  144. if(ParamValue.GetType() == typeof(int))
  145. {
  146. ParamValue = (int)ParamValue;
  147. }
  148. if(context.ActionArguments.ContainsKey(ParamName))
  149. {
  150. context.ActionArguments[ParamName] = ParamValue;
  151. }
  152. else
  153. {
  154. context.ActionArguments.Add(ParamName, ParamValue);
  155. }
  156. }
  157. }
  158. }
  159. string msg = string.Empty;
  160. var values = context.ModelState.Values;
  161. foreach (var item in values)
  162. {
  163. foreach (var err in item.Errors)
  164. {
  165. if (!string.IsNullOrEmpty(msg))
  166. {
  167. msg += " | ";
  168. }
  169. msg += err.ErrorMessage;
  170. }
  171. }
  172. if (!string.IsNullOrEmpty(msg))
  173. {
  174. ApiResult response = new((int)ResultCode.PARAM_ERROR, msg);
  175. context.Result = new JsonResult(response);
  176. }
  177. return base.OnActionExecutionAsync(context, next);
  178. }
  179. /// <summary>
  180. /// OnActionExecuted是在Action中的代码执行之后运行的方法。
  181. /// </summary>
  182. /// <param name="context"></param>
  183. public override void OnResultExecuted(ResultExecutedContext context)
  184. {
  185. if (context.ActionDescriptor is not ControllerActionDescriptor controllerActionDescriptor) return;
  186. //获得注解信息
  187. LogAttribute logAttribute = GetLogAttribute(controllerActionDescriptor);
  188. if (logAttribute == null) return;
  189. try
  190. {
  191. string method = context.HttpContext.Request.Method.ToUpper();
  192. // 获取当前的用户
  193. string userName = context.HttpContext.GetName() ?? context.HttpContext.Request.Headers["userName"];
  194. string jsonResult = string.Empty;
  195. if (context.Result is ContentResult result && result.ContentType == "application/json")
  196. {
  197. jsonResult = result.Content.Replace("\r\n", "").Trim();
  198. }
  199. if (context.Result is JsonResult result2)
  200. {
  201. jsonResult = result2.Value?.ToString();
  202. }
  203. //获取当前执行方法的类名
  204. //string className = System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.Name;
  205. //获取当前成员的名称
  206. //string methodName = System.Reflection.MethodBase.GetCurrentMethod().Name;
  207. string controller = context.RouteData.Values["Controller"].ToString();
  208. string action = context.RouteData.Values["Action"].ToString();
  209. string ip = HttpContextExtension.GetClientUserIp(context.HttpContext);
  210. var ip_info = IpTool.Search(ip);
  211. // SysOperLog sysOperLog = new()
  212. // {
  213. // Status = 0,
  214. // OperName = userName,
  215. // OperIp = ip,
  216. // OperUrl = HttpContextExtension.GetRequestUrl(context.HttpContext),
  217. // RequestMethod = method,
  218. // JsonResult = jsonResult,
  219. // OperLocation = HttpContextExtension.GetIpInfo(ip),
  220. // Method = controller + "." + action + "()",
  221. // //Elapsed = _stopwatch.ElapsedMilliseconds,
  222. // OperTime = DateTime.Now,
  223. // OperParam = HttpContextExtension.GetRequestValue(context.HttpContext, method)
  224. // };
  225. if (logAttribute != null)
  226. {
  227. // sysOperLog.Title = logAttribute?.Title;
  228. // sysOperLog.BusinessType = (int)logAttribute.BusinessType;
  229. // sysOperLog.OperParam = logAttribute.IsSaveRequestData ? sysOperLog.OperParam : "";
  230. // sysOperLog.JsonResult = logAttribute.IsSaveResponseData ? sysOperLog.JsonResult : "";
  231. }
  232. LogEventInfo ei = new(NLog.LogLevel.Info, "GlobalActionMonitor", "");
  233. ei.Properties["jsonResult"] = !HttpMethods.IsGet(method) ? jsonResult : "";
  234. // ei.Properties["requestParam"] = sysOperLog.OperParam;
  235. ei.Properties["user"] = userName;
  236. logger.Log(ei);
  237. // OperLogService.InsertOperlog(sysOperLog);
  238. }
  239. catch (Exception ex)
  240. {
  241. logger.Error(ex, $"记录操作日志出错了#{ex.Message}");
  242. }
  243. }
  244. private LogAttribute GetLogAttribute(ControllerActionDescriptor controllerActionDescriptor)
  245. {
  246. var attribute = controllerActionDescriptor.MethodInfo.GetCustomAttributes(inherit: true)
  247. .FirstOrDefault(a => a.GetType().Equals(typeof(LogAttribute)));
  248. return attribute as LogAttribute;
  249. }
  250. private string DesDecrypt(string content)
  251. {
  252. content = HttpUtility.UrlDecode(content);
  253. return Dbconn.DesDecrypt(content, AppSettings.GetConfig("ApiKey"));
  254. }
  255. }
  256. }