UserController.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Net;
  6. using System.Runtime.Serialization.Json;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Web;
  10. using CZFW.Core;
  11. using CZFW.Framework.Interface;
  12. using CZFW.Framework.Model;
  13. using CZKJ.GBRS2.Interface;
  14. using CZKJ.GBRS2.Model;
  15. using CZKJ.GBRS2.ViewModel;
  16. using Microsoft.AspNetCore.Http;
  17. using Microsoft.AspNetCore.Mvc;
  18. using Microsoft.Extensions.Logging;
  19. using Newtonsoft.Json;
  20. using Newtonsoft.Json.Linq;
  21. namespace CZKJ.GBRS2.WebMVC.Controllers
  22. {
  23. public class UserController : Controller
  24. {
  25. ICustomerQuery _logic;
  26. ISysConfig _sysConfigLogic;
  27. IUserInfoCustomer _clogic;
  28. public UserController(ICustomerQuery logic, ISysConfig sysConfigLogic, IUserInfoCustomer infoCustomer)
  29. {
  30. _logic = logic;
  31. _sysConfigLogic = sysConfigLogic;
  32. _clogic = infoCustomer;
  33. }
  34. /// <summary>
  35. /// 登录
  36. /// </summary>
  37. /// <param name="code"></param>
  38. /// <returns></returns>
  39. public IActionResult Index(string code = null)
  40. {
  41. string session = HttpContext.Session.GetString("GBRS2018");
  42. if (session != null)
  43. {
  44. return View(JsonConvert.DeserializeObject<UserInfoModel>(session));
  45. }
  46. //获取当前请求地址
  47. var url = HttpUtility.UrlEncode($"{ConfigHelper.GetValue<string>("Login:Scheme")}://{Request.Host}{Request.Path}").Replace("%3a", "%3A").Replace("%2f", "%2F");
  48. //判断code是否为空
  49. if (string.IsNullOrEmpty(code))
  50. {
  51. //拼接获取Code地址
  52. // var redirectUrl = $"{ConfigHelper.GetValue<string>("Login:Url")}/uai/user/passport/login?client_id={ConfigHelper.GetValue<string>("Login:ClientId")}&redirect_uri={url}&response_type=code";
  53. var redirectUrl = $"{ConfigHelper.GetValue<string>("Login:Url")}/uai/user/passport/login?client_id={ConfigHelper.GetValue<string>("Login:ClientId")}&redirect_uri={url}&response_type=code";
  54. //跳转获取Code
  55. return Redirect(redirectUrl);
  56. }
  57. // CustomerInfoViewModel customerInfoViewModel = new CustomerInfoViewModel();
  58. //拼接获取accessToken地址
  59. var getAccessToken = $"{ConfigHelper.GetValue<string>("Login:Url")}/uai/api/oauth20/accesstoken/code?code={code}&client_id={ConfigHelper.GetValue<string>("Login:ClientId")}&client_secret={ConfigHelper.GetValue<string>("Login:PassWord")}&redirect_uri={url}&grant_type=authorization_code";
  60. //通过POST调用地址获取实体
  61. var accessTokenInfo = HttpHelper.HttpPost(getAccessToken);
  62. //反序列化
  63. DataContractJsonSerializer dataContractJsonSerializer = new DataContractJsonSerializer(typeof(AccessTokenModel));
  64. MemoryStream ms = new MemoryStream(Encoding.UTF8.GetBytes(accessTokenInfo));
  65. AccessTokenModel accessTokenModel = (AccessTokenModel)dataContractJsonSerializer.ReadObject(ms);
  66. //拼接通过accessToken获取用户信息地址
  67. var getUserInfoUrl = $"{ConfigHelper.GetValue<string>("Login:Url")}/uai/api/oauth20/getuserinfo?access_token={accessTokenModel.access_token}";
  68. //通过Get请求获取用户信息
  69. var userInfo = HttpHelper.HttpGet(getUserInfoUrl);
  70. //把accessToken 写入session
  71. HttpContext.Session.SetString("token", accessTokenModel.access_token == null ? "" : accessTokenModel.access_token);
  72. //反序列化用户信息
  73. var user = JsonConvert.DeserializeObject<UserInfoModel>(userInfo);
  74. switch (user.Type)
  75. {
  76. case "1":
  77. user.Type = "客户";
  78. break;
  79. case "2":
  80. user.Type = "国宝内勤";
  81. break;
  82. case "3":
  83. user.Type = "国宝外勤";
  84. break;
  85. case "4":
  86. user.Type = "企业用户";
  87. break;
  88. case "5":
  89. user.Type = "合作伙伴内勤";
  90. break;
  91. case "6":
  92. user.Type = "合作伙伴外勤";
  93. break;
  94. }
  95. switch (user.Customer_info.Gender)
  96. {
  97. case "1":
  98. user.Customer_info.Gender = "男";
  99. break;
  100. case "2":
  101. user.Customer_info.Gender = "女";
  102. break;
  103. }
  104. switch (user.Customer_info.Id_type)
  105. {
  106. case "0":
  107. user.Customer_info.Id_type = "居民身份证";
  108. break;
  109. case "1":
  110. user.Customer_info.Id_type = "护照";
  111. break;
  112. case "2":
  113. user.Customer_info.Id_type = "军人证";
  114. break;
  115. case "3":
  116. user.Customer_info.Id_type = "居民户口薄";
  117. break;
  118. case "4":
  119. user.Customer_info.Id_type = "通行证";
  120. break;
  121. case "5":
  122. user.Customer_info.Id_type = "出生证明";
  123. break;
  124. case "8":
  125. user.Customer_info.Id_type = "其他";
  126. break;
  127. }
  128. var Id = user.Customer_info.Id_no;
  129. if (!string.IsNullOrEmpty(Id))
  130. {
  131. user.Customer_info.Id_no = Id.Substring(0, 6) + "********" + Id.Substring(14, 4);
  132. }
  133. var phone = user.Mobile;
  134. if (!string.IsNullOrEmpty(phone))
  135. {
  136. user.Mobile = phone.Substring(0, 3) + "****" + phone.Substring(7, 4);
  137. }
  138. HttpContext.Session.SetString("GBRS2018", JsonConvert.SerializeObject(user));
  139. var queryUser = _clogic.GetCuser(user.User_id);
  140. //if (queryUser == null)
  141. //{
  142. // _clogic.AddModel(user);
  143. //}
  144. //else
  145. //{
  146. // queryUser.LastLoginTime = DateTime.Now;
  147. // //_clogic.ExcuteSql($"UPDATE gbrs2_customerinfo SET LastLoginTime='{DateTime.Now.ToString()}' WHERE User_id={user.User_id}");
  148. // _clogic.EditEntity(queryUser);
  149. //}
  150. return View(user);
  151. }
  152. /// <summary>
  153. /// 登出
  154. /// </summary>
  155. /// <returns></returns>
  156. public IActionResult LogOut()
  157. {
  158. //从session获取用户信息
  159. string session = HttpContext.Session.GetString("token");
  160. //拼接登出链接
  161. var logOutUrl = $"{ConfigHelper.GetValue<string>("Login:Url")}/uai/api/oauth20/logout?access_token={session}";
  162. var res = HttpHelper.HttpGet(logOutUrl);
  163. HttpContext.Session.Remove("GBRS2018");
  164. //通过Get请求调用接口
  165. return RedirectToAction("Index", "Home");
  166. }
  167. /// <summary>
  168. /// 注册
  169. /// </summary>
  170. /// <param name="code"></param>
  171. /// <returns></returns>
  172. public IActionResult Register(string code = null, string beforeUrl = null)
  173. {
  174. //if (!string.IsNullOrEmpty(beforeUrl))
  175. //{
  176. // HttpContext.Session.SetString("before", beforeUrl);
  177. //}
  178. //获取当前请求地址
  179. var url = HttpUtility.UrlEncode($"{ConfigHelper.GetValue<string>("Login:Scheme")}://{Request.Host}{Request.Path}").Replace("%3a", "%3A").Replace("%2f", "%2F");
  180. //判断code是否为空
  181. if (string.IsNullOrEmpty(code))
  182. {
  183. //拼接获取Code地址
  184. // var redirectUrl = $"{ConfigHelper.GetValue<string>("Login:Url")}/uai/user/passport/register?client_id=201803236916747755&redirect_uri={url}&response_type=code";
  185. var redirectUrl = $"{ConfigHelper.GetValue<string>("Login:Url")}/uai/user/passport/register?client_id={ConfigHelper.GetValue<string>("Login:ClientId")}&redirect_uri={url}&response_type=code";
  186. //跳转获取Code
  187. return Redirect(redirectUrl);
  188. }
  189. //拼接获取accessToken地址
  190. var getAccessToken = $"{ConfigHelper.GetValue<string>("Login:Url")}/uai/api/oauth20/accesstoken/code?code={code}&grant_type=authorization_code&client_id={ConfigHelper.GetValue<string>("Login:ClientId")}&client_secret={ConfigHelper.GetValue<string>("Login:PassWord")}&redirect_uri={url}";
  191. //通过POST调用地址获取实体
  192. var accessTokenInfo = HttpHelper.HttpPost(getAccessToken);
  193. //反序列化
  194. DataContractJsonSerializer dataContractJsonSerializer = new DataContractJsonSerializer(typeof(AccessTokenModel));
  195. MemoryStream ms = new MemoryStream(Encoding.UTF8.GetBytes(accessTokenInfo));
  196. AccessTokenModel accessTokenModel = (AccessTokenModel)dataContractJsonSerializer.ReadObject(ms);
  197. //拼接通过accessToken获取用户信息地址
  198. var getUserInfoUrl = $"{ConfigHelper.GetValue<string>("Login:Url")}/uai/api/oauth20/getuserinfo?access_token={accessTokenModel.access_token}";
  199. //通过Get请求获取用户信息
  200. var userInfo = HttpHelper.HttpGet(getUserInfoUrl);
  201. //把accessToken 写入session
  202. //string session = HttpContext.Session.GetString("before");
  203. //if (!string.IsNullOrEmpty(beforeUrl))
  204. //{
  205. // return Redirect(beforeUrl);
  206. //}
  207. //else
  208. //{
  209. // return RedirectToAction("Index", "Home");
  210. //}
  211. HttpContext.Session.SetString("token", accessTokenModel.access_token == null ? "" : accessTokenModel.access_token);
  212. //反序列化用户信息
  213. var user = JsonConvert.DeserializeObject<UserInfoModel>(userInfo);
  214. switch (user.Type)
  215. {
  216. case "1":
  217. user.Type = "客户";
  218. break;
  219. case "2":
  220. user.Type = "国宝内勤";
  221. break;
  222. case "3":
  223. user.Type = "国宝外勤";
  224. break;
  225. case "4":
  226. user.Type = "企业用户";
  227. break;
  228. case "5":
  229. user.Type = "合作伙伴内勤";
  230. break;
  231. case "6":
  232. user.Type = "合作伙伴外勤";
  233. break;
  234. }
  235. switch (user.Customer_info.Gender)
  236. {
  237. case "1":
  238. user.Customer_info.Gender = "男";
  239. break;
  240. case "2":
  241. user.Customer_info.Gender = "女";
  242. break;
  243. }
  244. switch (user.Customer_info.Id_type)
  245. {
  246. case "0":
  247. user.Customer_info.Id_type = "居民身份证";
  248. break;
  249. case "1":
  250. user.Customer_info.Id_type = "护照";
  251. break;
  252. case "2":
  253. user.Customer_info.Id_type = "军人证";
  254. break;
  255. case "3":
  256. user.Customer_info.Id_type = "居民户口薄";
  257. break;
  258. case "4":
  259. user.Customer_info.Id_type = "通行证";
  260. break;
  261. case "5":
  262. user.Customer_info.Id_type = "出生证明";
  263. break;
  264. case "8":
  265. user.Customer_info.Id_type = "其他";
  266. break;
  267. }
  268. var Id = user.Customer_info.Id_no;
  269. if (!string.IsNullOrEmpty(Id))
  270. {
  271. user.Customer_info.Id_no = Id.Substring(0, 6) + "********" + Id.Substring(14, 4);
  272. }
  273. var phone = user.Mobile;
  274. if (!string.IsNullOrEmpty(phone))
  275. {
  276. user.Mobile = phone.Substring(0, 3) + "****" + phone.Substring(7, 4);
  277. }
  278. HttpContext.Session.SetString("GBRS2018", JsonConvert.SerializeObject(user));
  279. var queryUser = _clogic.GetCuser(user.User_id);
  280. if (queryUser == null)
  281. {
  282. _clogic.AddModel(user);
  283. }
  284. else
  285. {
  286. //_clogic.ExcuteSql($"UPDATE gbrs2_customerinfo SET LastLoginTime='{DateTime.Now.ToString()}' WHERE User_id={user.User_id}");
  287. _clogic.EditEntity(queryUser);
  288. }
  289. return RedirectToAction("Index", "User");
  290. }
  291. /// <summary>
  292. /// 根据保单号查询保单详情
  293. /// </summary>
  294. /// <param name="contNo"></param>
  295. /// <returns></returns>
  296. public IActionResult PolicyDetail(string contNo)
  297. {
  298. if (string.IsNullOrEmpty(contNo))
  299. {
  300. return Content("该保单信息不存在!");
  301. }
  302. ViewBag.PolicyPhone = _sysConfigLogic.GetEntity(x => x.Key == "PolicyPhone").Value;
  303. var result = _logic.Transformation(contNo).Result;
  304. string session = HttpContext.Session.GetString("GBRS2018");
  305. if (string.IsNullOrEmpty(session))
  306. {
  307. return RedirectToAction("Index", "User");
  308. }
  309. result.UserId = JsonConvert.DeserializeObject<UserInfoModel>(session).Core_customer_code;
  310. if (!string.IsNullOrEmpty(result.InsurancePolicyModel.CValiDate))
  311. {
  312. var backDate = Convert.ToDateTime(result.InsurancePolicyModel.CValiDate);
  313. var backDate2 = backDate.AddDays(15);
  314. if (DateTime.Now < backDate2)
  315. {
  316. result.InsurancePolicyModel.InHesitationFlag = "犹豫期内";
  317. }
  318. else
  319. {
  320. result.InsurancePolicyModel.InHesitationFlag = "犹豫期外";
  321. }
  322. }
  323. if (result.InsurancePolicyModel == null)
  324. {
  325. return Content("该保单信息不存在!");
  326. }
  327. return View(result);
  328. }
  329. /// <summary>
  330. /// 获取当前用户名下所有表单
  331. /// </summary>
  332. /// <param name="userId"></param>
  333. /// <returns></returns>
  334. public IActionResult MyPolicy(string userId, int pageIndex = 1, int pageSize = 10)
  335. {
  336. ReportListViewModel viewModel = new ReportListViewModel();
  337. string session = HttpContext.Session.GetString("GBRS2018");
  338. if (string.IsNullOrEmpty(session))
  339. {
  340. return Redirect("/User/Index");
  341. }
  342. var user1 = JsonConvert.DeserializeObject<UserInfoModel>(session);
  343. var ContNos = GetConNos(user1.Core_customer_code, "2");
  344. if (ContNos.Count > 0)
  345. {
  346. var list = _logic.GetReportNoList(ContNos).Result;
  347. viewModel.Count = list.Count;
  348. viewModel.ReportNoList = list.Skip((pageIndex - 1) * pageSize).Take(pageSize).ToList();
  349. }
  350. var user = JsonConvert.DeserializeObject<UserInfoModel>(session);
  351. viewModel.Head_Url = user.Head_url;
  352. viewModel.NickName = user.Nickname;
  353. ViewData["pageCount"] = viewModel.Count;
  354. ViewData["pageIndex"] = pageIndex;
  355. viewModel.User = user;
  356. return View(viewModel);
  357. }
  358. private List<string> GetConNos(string customerCode, string customerType)
  359. {
  360. JToken jobJect = null;
  361. var jsonString = _logic.GetListByUserId(customerCode, customerType);
  362. if (!string.IsNullOrEmpty(jsonString.Result))
  363. {
  364. jobJect = JObject.Parse(jsonString.Result)["TransData"]["ContentData"]["ContNos"];
  365. }
  366. List<string> ContNos = new List<string>();
  367. if (jobJect != null)
  368. {
  369. ContNos = JsonConvert.DeserializeObject<List<string>>(jobJect.ToString());
  370. }
  371. return ContNos;
  372. }
  373. /// <summary>
  374. /// 保单下载
  375. /// </summary>
  376. /// <returns></returns>
  377. public async Task<IActionResult> DownLoadPolicy(string contNo)
  378. {
  379. var huaWeiToken = await _logic.GetHuaWeiToken(contNo);
  380. if (string.IsNullOrEmpty(huaWeiToken))
  381. {
  382. return Content("系统错误");
  383. }
  384. HuaWeiDownLoadModel downLoadModel = JsonConvert.DeserializeObject<HuaWeiDownLoadModel>(huaWeiToken);
  385. if (downLoadModel.Code == 500)
  386. {
  387. return Content("该保单无法下载");
  388. }
  389. HttpWebRequest request;
  390. request = WebRequest.Create(downLoadModel.Data.v4TemporarySignatureResponse.signedUrl) as HttpWebRequest;
  391. request.Method = "GET";
  392. request.Accept = "*/*";
  393. request.Timeout = 15000;
  394. request.AllowAutoRedirect = false;
  395. var response = request.GetResponse();
  396. return File(response.GetResponseStream(), "application/pdf", $"{downLoadModel.Data.FileName}");
  397. }
  398. public IActionResult Notice()
  399. {
  400. return View();
  401. }
  402. }
  403. }