ApiRequest.cs
10.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Diagnostics;
using Infrastructure;
using WebRepository;
namespace WebApp
{
/// <summary>
/// Api请求
/// </summary>
public class ApiRequest
{
private string ConnString;
private string Server;
private string LoginUrl;
private string Uid;
private string Pwd;
private bool _LoginFlag = false;
private string _System;
private Stopwatch Stopwatch { get; set; }
private string _method;
private string _requestApi;
private string _apiGroup;
private string _request;
private string _response;
public ApiRequest(string System, bool LoginFlag = false)
{
Stopwatch = new Stopwatch();
Stopwatch.Start();
_System = System;
_LoginFlag = LoginFlag;
try
{
var config = AppSettingsJson.GetAppSettings();
ConnString = config.GetSection("ConnectionStrings:BaseDBContext").Value;
SqlConnectionStringBuilder sqlConnectionStringBuilder = new SqlConnectionStringBuilder(ConnString);
sqlConnectionStringBuilder.Password = Encryption.Decrypt(sqlConnectionStringBuilder.Password);
ConnString = sqlConnectionStringBuilder.ConnectionString;
Server = config.GetSection(System + "Setting:Server").Value;
LoginUrl = config.GetSection(System + "Setting:LoginUrl").Value;
Uid = config.GetSection(System + "Setting:Uid").Value;
Pwd = config.GetSection(System + "Setting:Pwd").Value;
}
catch (Exception) { }
}
public T Post<T>(string parameter, string requestApi, string apiGroup = "") where T : IResponse
{
T result = default(T);
_method = "POST";
_requestApi = requestApi;
_apiGroup = apiGroup;
_request = parameter;
try
{
HttpHelper httpHelper = new HttpHelper(Server);
if (_LoginFlag)
{
LoginEntity loginEntity = new LoginEntity { username = Uid, password = Pwd };
_response = FormatResponse(httpHelper.Post(loginEntity, LoginUrl));
result = JsonHelper.Instance.Deserialize<T>(_response);
if (result.Code != 200)
{
throw new Exception(result.Message);
}
}
_response = FormatResponse(httpHelper.Post(parameter, requestApi));
result = JsonHelper.Instance.Deserialize<T>(_response);
Log(true);
}
catch (Exception ex)
{
result.Code = 500;
result.Message = ex.Message;
Log(false);
}
return result;
}
public T Get<T>(Dictionary<string, string> parameter, string requestApi, string apiGroup = "") where T : IResponse
{
T result = default(T);
_method = "GET";
_requestApi = requestApi;
_apiGroup = apiGroup;
_request = JsonHelper.Instance.Serialize(parameter);
try
{
HttpHelper httpHelper = new HttpHelper(Server);
if (_LoginFlag)
{
LoginEntity loginEntity = new LoginEntity { username = Uid, password = Pwd };
_response = FormatResponse(httpHelper.Post(loginEntity, LoginUrl));
result = JsonHelper.Instance.Deserialize<T>(_response);
if (result.Code != 200)
{
throw new Exception(result.Message);
}
}
_response = FormatResponse(httpHelper.Get(parameter, requestApi));
result = JsonHelper.Instance.Deserialize<T>(_response);
Log(true);
}
catch (Exception ex)
{
result.Code = 500;
result.Message = ex.Message;
Log(false);
}
return result;
}
private void Log(bool bresult)
{
Stopwatch.Stop();
try
{
if (string.IsNullOrEmpty(ConnString))
{
return;
}
string type = "发送";
string system = _System;
string method = _method;
string server = Server;
string path = _requestApi;
string[] paths = _requestApi.Split('/');
paths = paths[paths.Length - 1].Split('?');
string actionName = paths[0];
string queryString = paths.Length > 1 ? paths[1] : "";
string apiGroup = _apiGroup;
string request = _request;
string response = _response;
double totalMilliseconds = Stopwatch.Elapsed.TotalMilliseconds;
string logTime = DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss");
string name = "WMS";
string ip = "";
string browser = "";
string result = bresult ? "成功" : "失败";
int flag = 1;
string createTime = DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss");
string createBy = "WMS";
DbHelp dbHelp = new DbHelp(ConnString);
string sql = string.Format(@"INSERT INTO [dbo].[sys_interface_log]
([type]
,[system]
,[method]
,[server]
,[path]
,[actionName]
,[queryString]
,[apiGroup]
,[request]
,[response]
,[totalMilliseconds]
,[logTime]
,[name]
,[ip]
,[browser]
,[result]
,[flag]
,[createTime]
,[createBy])
VALUES
('{0}'
,'{1}'
,'{2}'
,'{3}'
,'{4}'
,'{5}'
,'{6}'
,'{7}'
,'{8}'
,'{9}'
,'{10}'
,'{11}'
,'{12}'
,'{13}'
,'{14}'
,'{15}'
,'{16}'
,'{17}'
,'{18}')",
type
,system
,method
,server
,path
,actionName
,queryString
,apiGroup
,request
,response
,totalMilliseconds
,logTime
,name
,ip
,browser
,result
,flag
,createTime
,createBy
);
dbHelp.DataOperator(sql);
}
catch (Exception ex) {
throw ex;
}
}
private string FormatResponse(string response)
{
response = response.Replace("\r", "").Replace("\n", "");
response = response.Replace("\"\\\"{", "{").Replace("}\\\"\"", "}").Replace("\\\\\\", "");
response = response.Replace("\"{", "{").Replace("}\"", "}").Replace("\\\"", "\"");
return response;
}
public T TokenPost<T>(string parameter, string requestApi, string apiGroup = "") where T : MesResponse, new()
{
T result = new T();
_method = "POST";
_requestApi = requestApi;
_apiGroup = apiGroup;
_request = parameter;
try
{
HttpHelper httpHelper = new HttpHelper(Server);
if (_LoginFlag)
{
LoginEntity loginEntity = new LoginEntity { username = Uid, password = Pwd };
_response = FormatResponse(httpHelper.Post(loginEntity, LoginUrl));
result = JsonHelper.Instance.Deserialize<T>(_response);
if (result.Status != "S")
{
throw new Exception(result.ErrorMsg);
}
}
_response = FormatResponse(httpHelper.Post(parameter, requestApi));
result = JsonHelper.Instance.Deserialize<T>(_response);
Log(true);
}
catch (Exception ex)
{
result.Status = "E";
result.ErrorMsg = ex.Message;
Log(false);
}
return result;
}
}
}