CommonService.cs
18.1 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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Hh.Mes.Common.Json;
using Hh.Mes.Pojo.System;
using HHECS.Application.ApiModel;
using HHECS.Application.Service;
using HHECS.BllModel;
using HHECS.Infrastructure.CommonHelper;
using HHECS.Infrastructure.Enums;
using HHECS.Model.Entities;
using HHECS.Model.Enums;
using Newtonsoft.Json;
using NPOI.SS.Formula.Functions;
using Ubiety.Dns.Core.Common;
namespace HHECS.BLL.Services
{
public class CommonService : BaseService
{
private readonly LogService logService = new LogService();
/// <summary>
/// 静态单例,在全生命周期中使用
/// </summary>
private static readonly HttpClient client = new HttpClient();
//public CommonService(LogService logService)
//{
// this.logService = logService;
//}
/// <summary>
/// keyvalue键值对请求,要求以json返回
/// </summary>
/// <param name="list"></param>
/// <param name="url"></param>
/// <returns></returns>
public async Task<BllResult<T>> FormPostAsync<T>(string title, string url, List<KeyValuePair<string, string>> list, int timeout = 5)
{
string poststr = string.Join("||", list.Select(t => t.Key + ":" + t.Value).ToArray());
string responseBody = "";
try
{
HttpRequestMessage httpRequestMessage = new HttpRequestMessage(HttpMethod.Post, url);
httpRequestMessage.Headers.Add("Content-Type", "application/x-www-form-urlencoded");
httpRequestMessage.Headers.Add("Origin", "https://localhost:5001");
httpRequestMessage.Headers.Add("Referer", "https://localhost:5001/Home/Index");
httpRequestMessage.Content = new FormUrlEncodedContent(list);
CancellationTokenSource cancellationTokenSource = new CancellationTokenSource(TimeSpan.FromSeconds(timeout));
var ret = await client.SendAsync(httpRequestMessage, cancellationTokenSource.Token).ConfigureAwait(false);
if (ret.IsSuccessStatusCode)
{
responseBody = await ret.Content.ReadAsStringAsync();
var b = JsonConvert.DeserializeObject<ResponseModel<T>>(responseBody);
if (b.Code == "200")
{
logService.LogInterface(title, poststr, responseBody, Level.Success, "", "");
return BllResultFactory.Success<T>(b.Data, b.Msg);
}
else
{
logService.LogInterface(title, poststr, responseBody, Level.Failure, "", "");
return BllResultFactory.Error<T>( b.Msg);
}
}
else
{
logService.LogInterface(title, poststr, "", Level.Failure, ret.ReasonPhrase, "");
return BllResultFactory.Error<T>( $"请求WMS失败,请检查网络连接,详情:{ret.ReasonPhrase}");
}
}
catch (Exception ex)
{
logService.LogInterface(title, poststr, responseBody, Level.Exception, ex.ToString(), "");
return BllResultFactory.Error<T>( $"请求WMS失败,详情:{ex.Message}");
}
}
/// <summary>
/// 根据类型T 进行Post Json 提交
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="title"></param>
/// <param name="url"></param>
/// <param name="obj"></param>
/// <returns></returns>
public async Task<BllResult<T>> PostJson<T>(string title, string url, Object obj, int timeout = 5)
{
string postJsonString = JsonConvert.SerializeObject(obj);
string responseBody = "";
try
{
StringContent content = new StringContent(postJsonString, Encoding.UTF8, "application/json");
CancellationTokenSource cancellationTokenSource = new CancellationTokenSource(TimeSpan.FromSeconds(timeout));
HttpResponseMessage response = await client.PostAsync(url, content, cancellationTokenSource.Token).ConfigureAwait(false);
if (response.IsSuccessStatusCode)
{
responseBody = await response.Content.ReadAsStringAsync();
var temp = JsonConvert.DeserializeObject<ResponseModel<T>>(responseBody);
if (temp.Code == "200")//成功
{
logService.LogInterface(title, postJsonString, responseBody, Level.Success, "", "");
return BllResultFactory.Success<T>(temp.Data);
}
else
{
logService.LogInterface(title, postJsonString, responseBody, Level.Failure, "", "");
return BllResultFactory.Error<T>(temp.Data, temp.Msg);
}
}
else
{
logService.LogInterface(title, postJsonString, "", Level.Failure, "", "");
return BllResultFactory.Error<T>($"请求失败:{response.ReasonPhrase}");
}
}
catch (Exception ex)
{
logService.LogInterface(title, postJsonString, responseBody, Level.Exception, ex.ToString(), "");
return BllResultFactory.Error<T>($"请求失败:{ex.Message}");
}
}
/// <summary>
/// 根据类型T 进行Post Json 提交
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="title"></param>
/// <param name="url"></param>
/// <param name="obj"></param>
/// <returns></returns>
public async Task<BllResult<T>> PostJsonToCut<T>(string title, string url, Object obj, int timeout = 20)
{
string postJsonString = JsonConvert.SerializeObject(obj);
string responseBody = "";
try
{
StringContent content = new StringContent(postJsonString, Encoding.UTF8, "application/json");
CancellationTokenSource cancellationTokenSource = new CancellationTokenSource(TimeSpan.FromSeconds(timeout));
HttpResponseMessage response = await client.PostAsync(url, content, cancellationTokenSource.Token).ConfigureAwait(false);
if (response.IsSuccessStatusCode)
{
responseBody = await response.Content.ReadAsStringAsync();
var temp = JsonConvert.DeserializeObject<ResponseModel1<T>>(responseBody);
if (temp.responseResult == "0")//成功
{
//logService.LogInterface(title, postJsonString, responseBody, Level.Success, "", "");
return BllResultFactory.Success<T>(temp.Data);
}
else
{
//logService.LogInterface(title, postJsonString, responseBody, Level.Failure, "", "");
return BllResultFactory.Error<T>(responseBody);
}
}
else
{
//logService.LogInterface(title, postJsonString, "", Level.Failure, "", "");
return BllResultFactory.Error<T>($"请求失败:{response.ReasonPhrase}");
}
}
catch (Exception ex)
{
//logService.LogInterface(title, postJsonString, responseBody, Level.Exception, ex.ToString(), "");
return BllResultFactory.Error<T>($"请求失败:{ex.Message}");
}
}
public async Task<BllResult<T>> PostJson<T>(string title, string url, Object obj, string Origin , string Referer ,int timeout = 5)
{
string postJsonString = JsonConvert.SerializeObject(obj);
string responseBody = "";
try
{
HttpRequestMessage httpRequestMessage = new HttpRequestMessage(HttpMethod.Post, url);
httpRequestMessage.Headers.Add("Origin", Origin);
httpRequestMessage.Headers.Add("Referer", Referer);
httpRequestMessage.Content = new StringContent(postJsonString, Encoding.UTF8, "application/json");
CancellationTokenSource cancellationTokenSource = new CancellationTokenSource(TimeSpan.FromSeconds(timeout));
HttpClient client1 = new HttpClient();
var ret = await client1.SendAsync(httpRequestMessage, cancellationTokenSource.Token).ConfigureAwait(false);
if (ret.IsSuccessStatusCode)
{
responseBody = await ret.Content.ReadAsStringAsync();
var b = JsonConvert.DeserializeObject<ResponseModel<T>>(responseBody);
if (b.Code == "200")
{
logService.LogInterface(title, postJsonString, responseBody, Level.Success, "", "");
return BllResultFactory.Success<T>(b.Data, b.Msg);
}
else
{
logService.LogInterface(title, postJsonString, responseBody, Level.Failure, "", "");
return BllResultFactory.Error<T>( b.Msg);
}
}
else
{
logService.LogInterface(title, postJsonString, "", Level.Failure, ret.ReasonPhrase, "");
return BllResultFactory.Error<T>( $"请求WMS失败,请检查网络连接,详情:{ret.ReasonPhrase}");
}
}
catch (Exception ex)
{
logService.LogInterface(title, postJsonString, responseBody, Level.Exception, ex.ToString(), "");
return BllResultFactory.Error<T>( $"请求WMS失败,详情:{ex.Message}");
}
}
/// <summary>
/// http
/// </summary>
public BllResult HttpMan(string url, dynamic requestData, string title, string method = "post", string contentType = "application/json", string token = null)
{
var stopwatch = new Stopwatch();
stopwatch.Start();
//var response = new Response(false);
dynamic postdata = requestData;
if (!(requestData is string))
{
postdata = JsonConvert.SerializeObject(requestData);
}
var httpItem = new HttpItem
{
URL = url,
Method = method,
ContentType = contentType,
Postdata = postdata,
Timeout = 80000
};
if (!string.IsNullOrEmpty(token))
{
//雷萨token key
httpItem.Header.Add("Authorization", token);
}
var httpHelper = new HttpHelper();
var httpResult = httpHelper.GetHtml(httpItem);
stopwatch.Stop();
var resultMsg = title + ",返回结果:" + httpResult.Html;
if (httpResult.StatusCode== HttpStatusCode.OK)
{
var b = JsonConvert.DeserializeObject<Response>(httpResult.Html);
if (b.Code == 200)
{
var Result = new
{
Batch = b.Result.Batch,
MaterialCode = b.Result.MaterialCode
};
logService.LogInterface(title, postdata, resultMsg, Level.Success, "", "");
return BllResultFactory.Success(Result,b.Message);
}
else
{
logService.LogInterface(title, postdata, resultMsg, Level.Failure, "", "");
return BllResultFactory.Error<T>(b.Message);
}
}
else
{
logService.LogInterface(title, postdata, "", Level.Failure, "", "");
return BllResultFactory.Error<T>($"请求WMS失败,请检查网络连接,详情:{""}");
}
}
public Response HttpMan2(string url, dynamic requestData, string title, string method = "post", string contentType = "application/json", string token = null)
{
var stopwatch = new Stopwatch();
stopwatch.Start();
var response = new Response(false);
dynamic postdata = requestData;
if (!(requestData is string))
{
postdata = JsonConvert.SerializeObject(requestData);
}
var httpItem = new HttpItem
{
URL = url,
Method = method,
ContentType = contentType,
Postdata = postdata,
Timeout = 80000
};
if (!string.IsNullOrEmpty(token))
{
//雷萨token key
httpItem.Header.Add("Authorization", token);
}
var httpHelper = new HttpHelper();
var httpResult = httpHelper.GetHtml(httpItem);
response.Result = httpResult.Html;
stopwatch.Stop();
var resultMsg = title + ",返回结果:" + httpResult.Html;
if (httpResult.StatusCode == HttpStatusCode.OK)
{
var b = JsonConvert.DeserializeObject<Response>(httpResult.Html);
if (b.Code == 200)
{
response.Result = b.Result;
logService.LogInterface(title, postdata, resultMsg, Level.Success, "", "");
return response.ResponseSuccess("请求返回成功");
}
else
{
logService.LogInterface(title, postdata, resultMsg, Level.Failure, "", "");
return response.ResponseError(resultMsg);
}
}
else
{
logService.LogInterface(title, postdata, "", Level.Failure, "", "");
return response.ResponseError($"请求WMS失败,请检查网络连接,详情:{""}");
}
}
/// <summary>
/// http
/// </summary>
public Response HttpMan1(string url, dynamic requestData, string title, string method = "post", string contentType = "application/json", string token = null)
{
var stopwatch = new Stopwatch();
stopwatch.Start();
var response = new Response(false);
dynamic postdata = requestData;
if (!(requestData is string))
{
postdata = JsonConvert.SerializeObject(requestData);
}
var httpItem = new HttpItem
{
URL = url,
Method = method,
ContentType = contentType,
Postdata = postdata,
Timeout = 80000
};
if (!string.IsNullOrEmpty(token))
{
//雷萨token key
httpItem.Header.Add("Authorization", token);
}
var httpHelper = new HttpHelper();
var httpResult = httpHelper.GetHtml(httpItem);
response.Result = httpResult.Html;
stopwatch.Stop();
var resultMsg = title + ",返回结果:" + httpResult.Html;
//var user = sysUserApi == null ? (sysWebUser == null ? "定时器" : sysWebUser.Account) : sysUserApi.Account;
//QueueInterLog.GetInstance.EnqueueInterLog(httpItem, httpResult, title, resultMsg, stopwatch.Elapsed.TotalMilliseconds, user: user, sysTitle: title);
if (httpResult.StatusCode == HttpStatusCode.OK)
{
//根据实际情况处理
var resultTemp = httpResult.Html.TrimStart('[').TrimEnd(']');
dynamic result = DynamicJson.Parse(resultTemp);
if (result == null)
{
logService.LogInterface(title, postdata, resultMsg, Level.Failure, "", "");
return response.ResponseError(resultMsg);
}
//请求返回成功
var isExtCode = result.IsDefined("code");
if (isExtCode)
{
if (result.code == 0 || result.code == 200) return response.ResponseSuccess("请求返回成功");
}
var isExtCodeGet = result.IsDefined("Code");
if (isExtCodeGet)
{
if (result.Code == 0 || result.Code == 200) return response.ResponseSuccess("请求返回成功");
}
//雷萨MOM请求返回成功
var isExtFlag = result.IsDefined("flag");
if (isExtFlag && result.flag == "1")
{
return response.ResponseSuccess("请求返回成功");
}
//agv请求返回成功
var isExtState = result.IsDefined("state");
if (isExtState && result.state)
{
return response.ResponseSuccess("请求返回成功");
}
}
if (httpResult.StatusCode == HttpStatusCode.InternalServerError)
{
response.Message = resultMsg;
logService.LogInterface(title, postdata, resultMsg, Level.Failure, "", "");
return response;
}
else if (httpResult.StatusCode == HttpStatusCode.NotFound)
{
response.Message = "url:" + httpItem.URL + "错误、请求地址未找到404" + resultMsg;
logService.LogInterface(title, postdata, resultMsg, Level.Failure, "", "");
return response;
}
logService.LogInterface(title, postdata, resultMsg, Level.Failure, "", "");
response.Message = resultMsg;
return response;
}
}
}