QueryController.cs 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Globalization;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. using CZFW.Core;
  7. using CZFW.Core.Security;
  8. using CZKJ.GBRS2.Model;
  9. using CZKJ.GBRS2.ViewModel;
  10. using Microsoft.AspNetCore.Mvc;
  11. using Microsoft.Extensions.Configuration;
  12. using Newtonsoft.Json;
  13. using Newtonsoft.Json.Linq;
  14. using System.Reflection;
  15. using Microsoft.AspNetCore.Mvc.Filters;
  16. using Microsoft.AspNetCore.Http;
  17. using CZKJ.GBRS2.Interface;
  18. using System.Net;
  19. namespace CZKJ.GBRS2.WebMVC.Controllers
  20. {
  21. public class QueryController : Controller
  22. {
  23. ICustomerQuery _logic;
  24. public QueryController(ICustomerQuery logic)
  25. {
  26. _logic = logic;
  27. }
  28. public IActionResult HuaWeiToekn()
  29. {
  30. string str = _logic.GetHuaWeiToken("1010100005153469999").Result;
  31. HuaWeiDownLoadModel downLoadModel = JsonConvert.DeserializeObject<HuaWeiDownLoadModel>(str);
  32. if (downLoadModel.Code == 500)
  33. {
  34. return Content("该保单无法下载");
  35. }
  36. HttpWebRequest request;
  37. request = WebRequest.Create(downLoadModel.Data.v4TemporarySignatureResponse.signedUrl) as HttpWebRequest;
  38. request.Method = "GET";
  39. //request.ContentType = "application/x-www-form-urlencoded";
  40. request.Accept = "*/*";
  41. request.Timeout = 15000;
  42. request.AllowAutoRedirect = false;
  43. var response = request.GetResponse();
  44. return File(response.GetResponseStream(), "application/x-jpg", "保单详情.jpg");
  45. }
  46. public IActionResult HuaWei()
  47. {
  48. string getToeknUrl = $"{ConfigHelper.GetValue<string>("HuaWei:Url")}/cloud/api/apply/token?appId={ConfigHelper.GetValue<string>("HuaWei:AppId")}&appKey={ConfigHelper.GetValue<string>("HuaWei:AppKey")}";
  49. var responseString = HttpHelper.HttpPostAsync(getToeknUrl).Result;
  50. return Content(responseString);
  51. }
  52. public IActionResult PolicyDetail(string contNo)
  53. {
  54. return View( _logic.QueryReprot(ConfigHelper.GetValue<string>("CoreQuery:ConNo")));
  55. }
  56. //public IActionResult MyPolicy(string userId = "0000000706")
  57. //{
  58. // var jobJect = JObject.Parse(_logic.GetListByUserId(userId))["TransData"]["ContentData"];
  59. // List<string> ContNos = new List<string>();
  60. // List<ReportNoList> ReportList = new List<ReportNoList>();
  61. // if (jobJect != null)
  62. // {
  63. // ContNos = JsonConvert.DeserializeObject<UserInfoModel>(jobJect.ToString()).ContNos;
  64. // }
  65. // if (ContNos.Count > 0)
  66. // {
  67. // ReportList = _logic.GetReportNoList(ContNos);
  68. // }
  69. // return View(ContNos);
  70. //}
  71. public IActionResult Comprehensive(string ContNo)
  72. {
  73. SentParams para = new SentParams();
  74. TransData model = new TransData();
  75. model.ContentData = new ContentData { BusinessNo= "1010100005153469999", BusinessType="1",PrintType="1" };
  76. model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY033", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
  77. para.TransData = model;
  78. string sign = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
  79. string url = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
  80. var res = HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para)).Result;
  81. return Content(res);
  82. }
  83. #region
  84. /// <summary>
  85. /// 保单号查询保单信息
  86. /// </summary>
  87. /// <param name="ConNo"></param>
  88. /// <returns></returns>
  89. //public IActionResult GetInfoByConNo(string ContNo)
  90. //{
  91. // //if (string.IsNullOrWhiteSpace(ContNo))
  92. // //{
  93. // // return Content("保单号不可为空!");
  94. // //}
  95. // SentParams para = new SentParams();
  96. // TransData model = new TransData();
  97. // model.ContentData = new ContentData { ContNo = ConfigHelper.GetValue<string>("CoreQuery:ConNo") };
  98. // model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY004", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
  99. // para.TransData = model;
  100. // string sign = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
  101. // string url = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
  102. // var res = HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
  103. // var res2 = JObject.Parse(res)["TransData"]["ContentData"];
  104. // var res1 = JObject.Parse(res)["TransData"]["ContentData"].ToString();
  105. // InsurancePolicyModel viewModel = JsonConvert.DeserializeObject<InsurancePolicyModel>(JObject.Parse(res)["TransData"]["ContentData"].ToString());
  106. // return Content(res);
  107. //}
  108. ///// <summary>
  109. ///// 查询客户名下保单列表
  110. ///// </summary>
  111. ///// <param name="userId"></param>
  112. ///// <returns></returns>
  113. //public IActionResult GetListbyUserId(string userId)
  114. //{
  115. // //if (string.IsNullOrWhiteSpace(userId))
  116. // //{
  117. // // return Content("用户Id不可为空!");
  118. // //}
  119. // SentParams para = new SentParams();
  120. // TransData model = new TransData();
  121. // model.ContentData = new ContentData { CustomerNo = ConfigHelper.GetValue<string>("CoreQuery:CustomerNo"), CustomerType = ConfigHelper.GetValue<string>("CoreQuery:CustomerType") };
  122. // model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY003", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
  123. // para.TransData = model;
  124. // string sign = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
  125. // string url = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
  126. // var res = HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
  127. // return Content(res);
  128. //}
  129. //public IActionResult Comprehensive(string ContNo)
  130. //{
  131. // SentParams para = new SentParams();
  132. // TransData model = new TransData();
  133. // model.ContentData = new ContentData { ContNo = ConfigHelper.GetValue<string>("CoreQuery:CustomerNo"), CustomerType = ConfigHelper.GetValue<string>("CoreQuery:CustomerType") };
  134. // model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY008", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
  135. // para.TransData = model;
  136. // string sign = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
  137. // string url = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
  138. // var res = HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
  139. // return Content(res);
  140. //}
  141. //public IActionResult GetPolNo()
  142. //{
  143. // SentParams para = new SentParams();
  144. // TransData model = new TransData();
  145. // model.ContentData = new ContentData { ContNo = ConfigHelper.GetValue<string>("CoreQuery:CustomerNo") };
  146. // model.HeadData = new HeadData { REQ_APP_ID = "2", RESP_APP_ID = "1", ID = Utility.GetUnixTimeTick().ToString() /*configuration.GetValue<string>("TransId")*/, TRANS_ID = "QRY005", TRANS_DATE = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss:fff", new CultureInfo("en-US")) };
  147. // para.TransData = model;
  148. // string sign = DesEncrypt.JavaMD5(JsonConvert.SerializeObject(para) + ConfigHelper.GetValue<string>("CoreQuery:Key"));
  149. // string url = $"http://{ConfigHelper.GetValue<string>("CoreQuery:IP")}/officialWebsiteHttpServer?sign=" + sign;
  150. // var res = HttpHelper.HttpPost2(url, JsonConvert.SerializeObject(para));
  151. // return Content(res);
  152. //}
  153. //public IActionResult Test()
  154. //{
  155. // var res= _logic.QueryReprot("201000000001500");
  156. // return Json(res);
  157. //}
  158. #endregion
  159. }
  160. }