ApiRequest.cs
7.53 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
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Diagnostics;
using Infrastructure;
using Microsoft.EntityFrameworkCore;
using MySql.Data.MySqlClient;
using WebRepository;
namespace WebApp
{
/// <summary>
/// Api请求
/// </summary>
public class ApiRequest
{
private string Server;
private string LoginUrl;
private string Uid;
private string Pwd;
private bool _LoginFlag = false;
private string _System;
private Stopwatch Stopwatch { get; set; }
public BaseDbContext _dBContext;
public UnitWork _unitWork;
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();
string ConnString = config.GetSection("ConnectionStrings:BaseDbContext").Value;
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;
try
{
SqlConnectionStringBuilder connectionStringBuilder = new SqlConnectionStringBuilder(ConnString);
connectionStringBuilder.Password = Encryption.Decrypt(connectionStringBuilder.Password);
ConnString = connectionStringBuilder.ConnectionString;
var optionsBuilder = new DbContextOptionsBuilder<BaseDbContext>().UseSqlServer(ConnString);
_dBContext = new BaseDbContext(optionsBuilder.Options);
_unitWork = new UnitWork(_dBContext);
}
catch
{
MySqlConnectionStringBuilder connectionStringBuilder = new MySqlConnectionStringBuilder(ConnString);
connectionStringBuilder.Password = Encryption.Decrypt(connectionStringBuilder.Password);
ConnString = connectionStringBuilder.ConnectionString;
var optionsBuilder = new DbContextOptionsBuilder<BaseDbContext>().UseMySql(ConnString);
_dBContext = new BaseDbContext(optionsBuilder.Options);
_unitWork = new UnitWork(_dBContext);
}
}
catch (Exception) { }
}
public T Post<T>(string parameter, string requestApi, string apiGroup = "") where T : IResponse, 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 = httpHelper.Post(loginEntity, LoginUrl);
result = JsonHelper.Instance.Deserialize<T>(_response);
if (result.Code != 200)
{
throw new Exception(result.Message);
}
}
_response = httpHelper.Post(parameter, requestApi);
result = JsonHelper.Instance.Deserialize<T>(_response);
Log(true);
}
catch (Exception ex)
{
result.Status = false;
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, new()
{
T result = new 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 = httpHelper.Post(loginEntity, LoginUrl);
result = JsonHelper.Instance.Deserialize<T>(_response);
if (result.Code != 200)
{
throw new Exception(result.Message);
}
}
_response = httpHelper.Get(parameter, requestApi);
result = JsonHelper.Instance.Deserialize<T>(_response);
Log(true);
}
catch (Exception ex)
{
result.Status = false;
result.Code = 500;
result.Message = ex.Message;
Log(false);
}
return result;
}
private void Log(bool bresult)
{
Stopwatch.Stop();
try
{
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;
DateTime logTime = DateTime.Now;
string name = "WMS";
string ip = "";
string browser = "";
string result = bresult ? "成功" : "失败";
int flag = 1;
DateTime createTime = DateTime.Now;
string createBy = "WMS";
SysInterfaceLog sysInterfaceLog = new SysInterfaceLog();
sysInterfaceLog.Type = type;
sysInterfaceLog.System = system;
sysInterfaceLog.Method = method;
sysInterfaceLog.Server = server;
sysInterfaceLog.Path = path;
sysInterfaceLog.ActionName = actionName;
sysInterfaceLog.QueryString = queryString;
sysInterfaceLog.ApiGroup = apiGroup;
sysInterfaceLog.Request = request;
sysInterfaceLog.Response = response;
sysInterfaceLog.TotalMilliseconds = totalMilliseconds;
sysInterfaceLog.LogTime = logTime;
sysInterfaceLog.Name = name;
sysInterfaceLog.Ip = ip;
sysInterfaceLog.Browser = browser;
sysInterfaceLog.Result = result;
sysInterfaceLog.Flag = flag;
sysInterfaceLog.CreateTime = createTime;
sysInterfaceLog.CreateBy = createBy;
_unitWork.Add(sysInterfaceLog);
}
catch (Exception ex)
{
throw ex;
}
}
}
}