JuHeApiService.cs 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459
  1. using OASystem.Domain.Dtos.SmallFun;
  2. using OASystem.Domain.ViewModels.JuHeExchangeRate;
  3. using OASystem.Domain.ViewModels.SmallFun;
  4. using System.Text.Json;
  5. namespace OASystem.API.OAMethodLib.JuHeAPI
  6. {
  7. /// <summary>
  8. /// 聚合Api 服务
  9. /// </summary>
  10. public class JuHeApiService : IJuHeApiService
  11. {
  12. private readonly HttpClient _httpClient;
  13. private readonly HttpClient _httpClientTranslate;
  14. private readonly string _appKey = "0f5429e9fbb8637c0ff3f14bbb42c732"; //配置您申请的appkey
  15. private readonly string _appkey_textTranslate = "59db9edbac297e30695973aa1d856391"; //文本翻译 appkey
  16. /// <summary>
  17. /// 初始化
  18. /// </summary>
  19. /// <param name="clientFactory"></param>
  20. public JuHeApiService(IHttpClientFactory clientFactory)
  21. {
  22. _httpClient = clientFactory.CreateClient("PublicJuHeApi");
  23. _httpClientTranslate = clientFactory.CreateClient("PublicJuHeTranslateApi");
  24. }
  25. #region 汇率
  26. /// <summary>
  27. /// 获取汇率
  28. /// </summary>
  29. /// <returns></returns>
  30. public async Task<JuHeAPIResult> GetExchangeRateAsync()
  31. {
  32. var result = new JuHeAPIResult() { Resultcode = "-2", Reason = "未知错误" };
  33. string rateDataString = await RedisRepository.RedisFactory
  34. .CreateRedisRepository()
  35. .StringGetAsync<string>("JuHeApiExchangeRate");//string 取
  36. if (string.IsNullOrEmpty(rateDataString))
  37. {
  38. #region 请求接口并存入缓存
  39. string url = string.Format("/finance/exchange/rmbquot");
  40. try
  41. {
  42. var exchangeReq = await _httpClient.PostAsync(url,
  43. new FormUrlEncodedContent(new List<KeyValuePair<string, string>>()
  44. {
  45. new KeyValuePair<string, string>("key",_appKey),// key
  46. new KeyValuePair<string, string>("type","0"), // 两种格式(0或者1,默认为0)
  47. new KeyValuePair<string, string>("bank","3") // (0:工商银行,1:招商银行,2:建设银行,3:中国银行,4:交通银行,5:农业银行,默认为:0)
  48. }));
  49. if (exchangeReq.IsSuccessStatusCode)
  50. {
  51. var stringResponse = await exchangeReq.Content.ReadAsStringAsync();
  52. result = System.Text.Json.JsonSerializer.Deserialize<JuHeAPIResult>(stringResponse,
  53. new JsonSerializerOptions() { PropertyNamingPolicy = JsonNamingPolicy.CamelCase });
  54. if (result.Resultcode == "200")
  55. {
  56. List<ExchangeRateModel> rateList = new List<ExchangeRateModel>();
  57. #region 处理数据类型
  58. JArray jar = JArray.Parse(result.Result.ToJson());
  59. for (int i = 0; i < jar.Count; i++)
  60. {
  61. JObject j = JObject.Parse(jar[i].ToString());
  62. for (int x = 1; x < j.Count + 1; x++)
  63. {
  64. string rateName = "data" + x;
  65. string rateDataStr = j[rateName].ToString();
  66. if (!string.IsNullOrEmpty(rateDataStr))
  67. {
  68. ExchangeRateModel exchangeRate = JsonConvert.DeserializeObject<ExchangeRateModel>(rateDataStr);
  69. exchangeRate.FBuyPri = HandleMinusValue(exchangeRate.FBuyPri);
  70. exchangeRate.FSellPri = HandleMinusValue(exchangeRate.FSellPri);
  71. exchangeRate.MBuyPri = HandleMinusValue(exchangeRate.MBuyPri);
  72. exchangeRate.MSellPri = HandleMinusValue(exchangeRate.MSellPri);
  73. exchangeRate.BankConversionPri = HandleMinusValue(exchangeRate.BankConversionPri);
  74. rateList.Add(exchangeRate);
  75. }
  76. }
  77. }
  78. #endregion
  79. TimeSpan ts = DateTime.Now.AddMinutes(120) - DateTime.Now; //设置redis 过期时间 120分钟
  80. await RedisRepository
  81. .RedisFactory
  82. .CreateRedisRepository()
  83. .StringSetAsync<string>("JuHeApiExchangeRate", rateList.ToJson(), ts);//string 存
  84. result.Result = rateList;
  85. }
  86. else
  87. {
  88. result.Reason = string.Format("聚合APIError[Error_Code:{0} Resultcode:{1} Msg:{2}]",
  89. result.Error_code, result.Resultcode, result.Result);
  90. }
  91. }
  92. else
  93. {
  94. result.Reason = "汇率接口请求失败!";
  95. }
  96. }
  97. catch (Exception ex)
  98. {
  99. result.Reason = ex.Message;
  100. }
  101. #endregion
  102. }
  103. else
  104. {
  105. result.Resultcode = "200";
  106. result.Result = JsonConvert.DeserializeObject<List<ExchangeRateModel>>(rateDataString);
  107. }
  108. return result;
  109. }
  110. /// <summary>
  111. /// 处理金额带“-”的币种汇率信息
  112. /// </summary>
  113. /// <param name="input"></param>
  114. /// <returns></returns>
  115. private static string HandleMinusValue(string? input)
  116. {
  117. return string.IsNullOrEmpty(input) || input.Contains("-") ? "1.00" : input;
  118. }
  119. /// <summary>
  120. /// 获取汇率 Single
  121. /// </summary>
  122. /// <param name="currencyCode">币种code</param>
  123. /// <returns></returns>
  124. public async Task<Result> GetSingleRateAsync(string currencyCode)
  125. {
  126. var result = new Result();
  127. if (currencyCode.ToUpper() == "CNY")
  128. {
  129. return result;
  130. }
  131. var resultData = await GetExchangeRateAsync();
  132. var rateCurrencyData = AppSettingsHelper.Get<RateCurrencyModel>("RateCurrency");
  133. var currencyModel = rateCurrencyData.Where(a => a.CurrencyCode == currencyCode).FirstOrDefault();
  134. if (currencyModel != null)
  135. {
  136. if (resultData.Resultcode == "200")
  137. {
  138. if (resultData.Result != null)
  139. {
  140. result.Code = 0;
  141. result.Data = ((List<ExchangeRateModel>)resultData.Result).Where(a => a.Name == currencyModel.CurrencyName).FirstOrDefault();
  142. }
  143. }
  144. else
  145. {
  146. result.Msg = resultData.Reason;
  147. }
  148. }
  149. return result;
  150. }
  151. /// <summary>
  152. /// 获取汇率 Single
  153. /// </summary>
  154. /// <param name="currencyCodes">币种codes</param>
  155. /// <returns></returns>
  156. public async Task<List<ExchangeRateModel>> PostItemRateAsync(string[] currencyCodes)
  157. {
  158. List<ExchangeRateModel> result = new List<ExchangeRateModel>();
  159. //if (currencyCodes.Length <= 0)
  160. //{
  161. // return result;
  162. //}
  163. var resultData = await GetExchangeRateAsync();
  164. var rateCurrencyData = AppSettingsHelper.Get<RateCurrencyModel>("RateCurrency");
  165. var currencyModel = rateCurrencyData.WhereIF(currencyCodes.Length >0,a => currencyCodes.Any(b => a.CurrencyCode == b)).ToList();
  166. if (currencyModel.Count > 0)
  167. {
  168. if (resultData.Resultcode == "200")
  169. {
  170. if (resultData.Result != null)
  171. {
  172. var data = (List<ExchangeRateModel>)resultData.Result;
  173. foreach (var item in currencyModel)
  174. {
  175. ExchangeRateModel exchangeRateModel = data.Where(it => it.Name.Equals(item.CurrencyName)).FirstOrDefault();
  176. if (exchangeRateModel != null)
  177. {
  178. result.Add(exchangeRateModel);
  179. }
  180. }
  181. //result = ((List<ExchangeRateModel>)resultData.Result).Where(a => a.Name == currencyModel.CurrencyName).ToList();
  182. }
  183. }
  184. }
  185. return result;
  186. }
  187. /// <summary>
  188. /// 获取汇率转换结果
  189. /// </summary>
  190. /// <returns></returns>
  191. public async Task<Result> GetExchangeRateAsync(ExchangeRateDto dto)
  192. {
  193. var result = new Result() { Code = -2, Msg = "未知错误" };
  194. var rateCurrencyData = AppSettingsHelper.Get<RateCurrencyModel>("RateCurrency");
  195. if (dto.CurrencyCodePer.ToUpper() == "CNY")
  196. {
  197. var currencyModelSuf = rateCurrencyData.Where(a => a.CurrencyCode == dto.CurrencyCodeSuf).FirstOrDefault();
  198. if (currencyModelSuf == null)
  199. {
  200. result.Msg = "转换后币种未找到!";
  201. return result;
  202. }
  203. var rateModelSuf = await GetSingleRateAsync(currencyModelSuf.CurrencyCode);
  204. if (rateModelSuf.Code != 0)
  205. {
  206. result.Msg = rateModelSuf.Msg;
  207. return result;
  208. }
  209. if (string.IsNullOrEmpty(rateModelSuf.Data.FSellPri))
  210. {
  211. result.Msg = string.Format("{0}({1})暂无汇率!", currencyModelSuf.CurrencyName, currencyModelSuf.CurrencyCode);
  212. return result;
  213. }
  214. decimal moneySuf = Convert.ToDecimal(rateModelSuf.Data.FSellPri) / 100; //fSellPri
  215. decimal settlementMoney = dto.Money / moneySuf;
  216. var rateView = new ExchangeRateView
  217. {
  218. CurrencyCodePre = dto.CurrencyCodePer,
  219. CurrencyNamePre = "人民币",
  220. MoneyPre = dto.Money,
  221. CurrencyCodeSuf = dto.CurrencyCodeSuf,
  222. CurrencyNameSuf = currencyModelSuf.CurrencyName,
  223. MoneySuf = CommonFun.CutDecimalWithN(settlementMoney, 4),
  224. UpdateTime = string.Format("{0} {1}", rateModelSuf.Data.Date, rateModelSuf.Data.Time)
  225. };
  226. result.Code = 0;
  227. result.Msg = "成功!";
  228. result.Data = rateView;
  229. return result;
  230. }
  231. else
  232. {
  233. var currencyModelPre = rateCurrencyData.Where(a => a.CurrencyCode == dto.CurrencyCodePer).FirstOrDefault();
  234. if (currencyModelPre == null)
  235. {
  236. result.Msg = "转换前币种未找到!";
  237. return result;
  238. }
  239. var rateModelPre = await GetSingleRateAsync(currencyModelPre.CurrencyCode);
  240. if (rateModelPre.Code != 0)
  241. {
  242. result.Msg = rateModelPre.Msg;
  243. return result;
  244. }
  245. if (string.IsNullOrEmpty(rateModelPre.Data.FSellPri))
  246. {
  247. result.Msg = string.Format("{0}({1})暂无汇率!", currencyModelPre.CurrencyName, currencyModelPre.CurrencyCode);
  248. return result;
  249. }
  250. decimal moneyPre = (Convert.ToDecimal(rateModelPre.Data.FSellPri) / 100) * dto.Money; //fSellPri
  251. if (dto.CurrencyCodeSuf.ToUpper() == "CNY")
  252. {
  253. var rateView = new ExchangeRateView
  254. {
  255. CurrencyCodePre = dto.CurrencyCodePer,
  256. CurrencyNamePre = currencyModelPre.CurrencyName,
  257. MoneyPre = dto.Money,
  258. CurrencyCodeSuf = "CNY",
  259. CurrencyNameSuf = "人民币",
  260. MoneySuf = CommonFun.CutDecimalWithN(moneyPre, 4),
  261. UpdateTime = string.Format("{0} {1}", rateModelPre.Data.Date, rateModelPre.Data.Time)
  262. };
  263. result.Code = 0;
  264. result.Msg = "成功!";
  265. result.Data = rateView;
  266. }
  267. else
  268. {
  269. var currencyModelSuf = rateCurrencyData.Where(a => a.CurrencyCode == dto.CurrencyCodeSuf).FirstOrDefault();
  270. if (currencyModelSuf == null)
  271. {
  272. result.Msg = "转换后币种未找到!";
  273. return result;
  274. }
  275. var rateModelSuf = await GetSingleRateAsync(currencyModelSuf.CurrencyCode);
  276. if (rateModelSuf.Code != 0)
  277. {
  278. result.Msg = rateModelSuf.Msg;
  279. return result;
  280. }
  281. if (string.IsNullOrEmpty(rateModelSuf.Data.FSellPri))
  282. {
  283. result.Msg = string.Format("{0}({1})暂无汇率!", currencyModelSuf.CurrencyName, currencyModelSuf.CurrencyCode);
  284. return result;
  285. }
  286. decimal moneySuf = Convert.ToDecimal(rateModelSuf.Data.FSellPri) / 100; //fSellPri
  287. decimal settlementMoney = moneyPre / moneySuf;
  288. var rateView = new ExchangeRateView
  289. {
  290. CurrencyCodePre = dto.CurrencyCodePer,
  291. CurrencyNamePre = currencyModelPre.CurrencyName,
  292. MoneyPre = dto.Money,
  293. CurrencyCodeSuf = dto.CurrencyCodeSuf,
  294. CurrencyNameSuf = currencyModelSuf.CurrencyName,
  295. MoneySuf = CommonFun.CutDecimalWithN(settlementMoney, 4),
  296. UpdateTime = string.Format("{0} {1}", rateModelSuf.Data.Date, rateModelSuf.Data.Time)
  297. };
  298. result.Code = 0;
  299. result.Msg = "成功!";
  300. result.Data = rateView;
  301. }
  302. }
  303. return result;
  304. }
  305. #endregion
  306. #region 文本翻译
  307. /// <summary>
  308. /// 文本翻译
  309. /// </summary>
  310. /// <param name="source">原文,数据类型为字符串,也可为数组(元素必须为字符串类型);每次请求的字符串长度之和尽量不要超过 </param>
  311. /// <param name="trans_type">翻译方向:en2zh(英文-中文),zh2en(中文-英文),ja2zh(日文-中文),zh2ja(中文-日文),ko2zh(韩文-中文),zh2ko(中文-韩文)</param>
  312. /// <returns></returns>
  313. public async Task<string> GetTextTranslateAsync(string source, string trans_type = "zh2en")
  314. {
  315. string res = "";
  316. var result = new JuHeAPIResult() { Resultcode = "10020", Reason = "接口维护" };
  317. #region 请求接口
  318. string url = string.Format($"/translate/query");
  319. var exchangeReq = await _httpClientTranslate
  320. .PostAsync(url,
  321. new FormUrlEncodedContent(new List<KeyValuePair<string, string>>()
  322. {
  323. new KeyValuePair<string, string>("key",_appkey_textTranslate),//你申请的key
  324. new KeyValuePair<string, string>("source",source),
  325. new KeyValuePair<string, string>("trans_type",trans_type)
  326. }));
  327. if (exchangeReq.IsSuccessStatusCode)
  328. {
  329. var stringResponse = await exchangeReq.Content.ReadAsStringAsync();
  330. JuHeTransResult result1 = System.Text.Json.JsonSerializer.Deserialize<JuHeTransResult>(stringResponse,
  331. new JsonSerializerOptions() { PropertyNamingPolicy = JsonNamingPolicy.CamelCase });
  332. if (result1.error_code == 0)
  333. {
  334. res = result1.result.data.res;
  335. }
  336. else
  337. {
  338. res = string.Format("聚合APIError[Error_Code:{0} Resultcode:{1} Msg:{2}]",
  339. result1.error_code, result1.reason, result1.result);
  340. }
  341. }
  342. else
  343. {
  344. result.Reason = "汇率接口请求失败!";
  345. }
  346. #endregion
  347. return res;
  348. }
  349. #endregion
  350. #region 洲 当前时间
  351. /// <summary>
  352. /// 获取全球当前时间
  353. /// </summary>
  354. /// <param name="continent">
  355. /// 洲际:非洲、美洲、南极洲、北极、亚洲、大西洋、 欧洲、太平洋
  356. /// </param>
  357. /// <returns></returns>
  358. public async Task<JuHeAPIResult> GetContinentTimezoneAsync(string continent)
  359. {
  360. var continentEn = string.Empty;
  361. if (string.IsNullOrEmpty(continent)) return new JuHeAPIResult(-1, "请输入州");
  362. if (continent.Equals("非洲")) continent = $"africa";
  363. else if (continent.Equals("非洲")) continent = $"africa";
  364. else if (continent.Equals("美洲")) continent = $"america";
  365. else if (continent.Equals("南极洲")) continent = $"antarctica";
  366. else if (continent.Equals("北极")) continent = $"arctic";
  367. else if (continent.Equals("亚洲")) continent = $"asia";
  368. else if (continent.Equals("大西洋")) continent = $"atlantic";
  369. else if (continent.Equals("欧洲")) continent = $"europe";
  370. else if (continent.Equals("太平洋")) continent = $"pacific";
  371. else return new JuHeAPIResult(-1, "请输入正确的州");
  372. #region 请求接口
  373. string url = string.Format($"/fapig/timezone/show");
  374. var exchangeReq = await _httpClientTranslate.PostAsync(url,
  375. new FormUrlEncodedContent(new List<KeyValuePair<string, string>>()
  376. {
  377. //new KeyValuePair<string, string>("key",_appkey_textTranslate),//你申请的key
  378. new KeyValuePair<string, string>("key","f3d6b2272d46e0ca9d1c9aca38d8a92c"),//你申请的key
  379. new KeyValuePair<string, string>("c",continent)
  380. }));
  381. if (exchangeReq.IsSuccessStatusCode)
  382. {
  383. var stringResponse = await exchangeReq.Content.ReadAsStringAsync();
  384. var result = System.Text.Json.JsonSerializer.Deserialize<JuHeAPIResult>(stringResponse,
  385. new JsonSerializerOptions() { PropertyNamingPolicy = JsonNamingPolicy.CamelCase });
  386. return result;
  387. }
  388. #endregion
  389. return new JuHeAPIResult(-1, "世界时间接口请求失败!");
  390. }
  391. #endregion
  392. }
  393. }