InterfaceLogFilter.cs
5.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
using System;
using System.Collections.Generic;
using System.Diagnostics;
using Infrastructure;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc.Filters;
using Microsoft.Net.Http.Headers;
using WebRepository;
namespace WebApp
{
public class InterfaceLogFilter : ActionFilterAttribute
{
private string ActionArguments { get; set; }
private Stopwatch Stopwatch { get; set; }
protected readonly IRepository<SysInterfaceLog> _app;
public InterfaceLogFilter(IRepository<SysInterfaceLog> app, IAuth authUtil)
{
_app = app;
AuthStrategyContext authStrategyContext = authUtil.GetCurrentUser();
if (authStrategyContext != null)
{
_app._loginInfo = new LoginInfo
{
Id = authStrategyContext.User.Id,
Account = authStrategyContext.User.Account,
Name = authStrategyContext.User.Name,
};
}
else
{
_app._loginInfo = new LoginInfo
{
Id = 0,
Account = "Guest",
Name = "匿名",
};
}
}
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
base.OnActionExecuting(filterContext);
ActionArguments = Newtonsoft.Json.JsonConvert.SerializeObject(filterContext.ActionArguments);
Stopwatch = new Stopwatch();
Stopwatch.Start();
}
public override void OnActionExecuted(ActionExecutedContext context)
{
base.OnActionExecuted(context);
Stopwatch.Stop();
IHeaderDictionary headersDictionary = context.HttpContext.Request.Headers;
string Browser = headersDictionary[HeaderNames.UserAgent].ToString();
string Server = context.HttpContext.Request.Host.ToString();
string Path = context.HttpContext.Request.Path.ToString();
string QueryString = context.HttpContext.Request.QueryString.ToString();
var description = (Microsoft.AspNetCore.Mvc.Controllers.ControllerActionDescriptor)context.ActionDescriptor;
string ApiGroup = description.ControllerName;
string ActionName = description.ActionName;
string Method = context.HttpContext.Request.Method;
string Name = _app._loginInfo.Name;
string Ip = context.HttpContext.Connection.RemoteIpAddress.ToString();
string Request = ActionArguments.Replace("\r", "").Replace("\n", "");
dynamic dresult = (context.Result == null ? null : (context.Result.GetType().Name == "EmptyResult" ? new { Value = "无返回结果" } : context.Result as dynamic));
string Response = "在返回结果前发生了异常";
try
{
if (dresult != null)
{
Response = FormatResponse(Newtonsoft.Json.JsonConvert.SerializeObject(dresult.Value));
}
}
catch (Exception)
{
Response = "";
}
bool bResult = GetResponseResult(Response);
string Result = "成功";
int Flag = 1;
if (!bResult)
{
Result = "失败";
Flag = GetReSendFlag(ActionName);
}
_app.Add(new SysInterfaceLog()
{
Type = "接收",
System = "WMS",
Method = Method,
Server = Server,
Path = Path,
ActionName = ActionName,
QueryString = QueryString,
ApiGroup = ApiGroup,
Request = Request,
Response = Response,
TotalMilliseconds = Stopwatch.Elapsed.TotalMilliseconds,
LogTime = DateTime.Now,
Name = Name,
Ip = Ip,
Browser = Browser,
Result = Result,
Flag = Flag,
}); ;
}
private bool GetResponseResult(string response)
{
try
{
Response Res = JsonHelper.Instance.Deserialize<Response>(response);
if (Res.Code != 200)
{
return false;
}
}
catch (Exception ex)
{
return false;
}
return true;
}
private int GetReSendFlag(string actionName)
{
List<string> actionNames = new List<string>();
actionNames.Add("SetStackerStatus".ToLower());
if (actionNames.Contains(actionName.ToLower()))
{
return 0;
}
return 1;
}
private string FormatResponse(string response)
{
response = response.Replace("\r", "").Replace("\n", "");
response = response.Replace("\"\\\"{", "{").Replace("}\\\"\"", "}").Replace("\\\\\\", "");
response = response.Replace("\"{", "{").Replace("}\"", "}").Replace("\\\"", "\"");
return response;
}
}
}