123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Net;
- using System.Runtime.Serialization.Json;
- using System.Text;
- using System.Threading.Tasks;
- using System.Web;
- using CZFW.Core;
- using CZFW.Framework.Interface;
- using CZFW.Framework.Model;
- using CZKJ.GBRS2.Interface;
- using CZKJ.GBRS2.Model;
- using CZKJ.GBRS2.ViewModel;
- using Microsoft.AspNetCore.Http;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.Extensions.Logging;
- using Newtonsoft.Json;
- using Newtonsoft.Json.Linq;
- namespace CZKJ.GBRS2.WebMVC.Controllers
- {
- public class UserController : Controller
- {
- ICustomerQuery _logic;
- ISysConfig _sysConfigLogic;
- IUserInfoCustomer _clogic;
- public UserController(ICustomerQuery logic, ISysConfig sysConfigLogic, IUserInfoCustomer infoCustomer)
- {
- _logic = logic;
- _sysConfigLogic = sysConfigLogic;
- _clogic = infoCustomer;
- }
- /// <summary>
- /// 登录
- /// </summary>
- /// <param name="code"></param>
- /// <returns></returns>
- public IActionResult Index(string code = null)
- {
- string session = HttpContext.Session.GetString("GBRS2018");
- if (session != null)
- {
- return View(JsonConvert.DeserializeObject<UserInfoModel>(session));
- }
- //获取当前请求地址
- var url = HttpUtility.UrlEncode($"{ConfigHelper.GetValue<string>("Login:Scheme")}://{Request.Host}{Request.Path}").Replace("%3a", "%3A").Replace("%2f", "%2F");
- //判断code是否为空
- if (string.IsNullOrEmpty(code))
- {
- //拼接获取Code地址
- // var redirectUrl = $"{ConfigHelper.GetValue<string>("Login:Url")}/uai/user/passport/login?client_id={ConfigHelper.GetValue<string>("Login:ClientId")}&redirect_uri={url}&response_type=code";
- var redirectUrl = $"{ConfigHelper.GetValue<string>("Login:Url")}/uai/user/passport/login?client_id={ConfigHelper.GetValue<string>("Login:ClientId")}&redirect_uri={url}&response_type=code";
- //跳转获取Code
- return Redirect(redirectUrl);
- }
- // CustomerInfoViewModel customerInfoViewModel = new CustomerInfoViewModel();
- //拼接获取accessToken地址
- 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";
- //通过POST调用地址获取实体
- var accessTokenInfo = HttpHelper.HttpPost(getAccessToken);
- //反序列化
- DataContractJsonSerializer dataContractJsonSerializer = new DataContractJsonSerializer(typeof(AccessTokenModel));
- MemoryStream ms = new MemoryStream(Encoding.UTF8.GetBytes(accessTokenInfo));
- AccessTokenModel accessTokenModel = (AccessTokenModel)dataContractJsonSerializer.ReadObject(ms);
- //拼接通过accessToken获取用户信息地址
- var getUserInfoUrl = $"{ConfigHelper.GetValue<string>("Login:Url")}/uai/api/oauth20/getuserinfo?access_token={accessTokenModel.access_token}";
- //通过Get请求获取用户信息
- var userInfo = HttpHelper.HttpGet(getUserInfoUrl);
- //把accessToken 写入session
- HttpContext.Session.SetString("token", accessTokenModel.access_token == null ? "" : accessTokenModel.access_token);
- //反序列化用户信息
- var user = JsonConvert.DeserializeObject<UserInfoModel>(userInfo);
- switch (user.Type)
- {
- case "1":
- user.Type = "客户";
- break;
- case "2":
- user.Type = "国宝内勤";
- break;
- case "3":
- user.Type = "国宝外勤";
- break;
- case "4":
- user.Type = "企业用户";
- break;
- case "5":
- user.Type = "合作伙伴内勤";
- break;
- case "6":
- user.Type = "合作伙伴外勤";
- break;
- }
- switch (user.Customer_info.Gender)
- {
- case "1":
- user.Customer_info.Gender = "男";
- break;
- case "2":
- user.Customer_info.Gender = "女";
- break;
- }
- switch (user.Customer_info.Id_type)
- {
- case "0":
- user.Customer_info.Id_type = "居民身份证";
- break;
- case "1":
- user.Customer_info.Id_type = "护照";
- break;
- case "2":
- user.Customer_info.Id_type = "军人证";
- break;
- case "3":
- user.Customer_info.Id_type = "居民户口薄";
- break;
- case "4":
- user.Customer_info.Id_type = "通行证";
- break;
- case "5":
- user.Customer_info.Id_type = "出生证明";
- break;
- case "8":
- user.Customer_info.Id_type = "其他";
- break;
- }
- var Id = user.Customer_info.Id_no;
- if (!string.IsNullOrEmpty(Id))
- {
- user.Customer_info.Id_no = Id.Substring(0, 6) + "********" + Id.Substring(14, 4);
- }
- var phone = user.Mobile;
- if (!string.IsNullOrEmpty(phone))
- {
- user.Mobile = phone.Substring(0, 3) + "****" + phone.Substring(7, 4);
- }
- HttpContext.Session.SetString("GBRS2018", JsonConvert.SerializeObject(user));
- var queryUser = _clogic.GetCuser(user.User_id);
- //if (queryUser == null)
- //{
- // _clogic.AddModel(user);
- //}
- //else
- //{
- // queryUser.LastLoginTime = DateTime.Now;
- // //_clogic.ExcuteSql($"UPDATE gbrs2_customerinfo SET LastLoginTime='{DateTime.Now.ToString()}' WHERE User_id={user.User_id}");
- // _clogic.EditEntity(queryUser);
- //}
- return View(user);
- }
- /// <summary>
- /// 登出
- /// </summary>
- /// <returns></returns>
- public IActionResult LogOut()
- {
- //从session获取用户信息
- string session = HttpContext.Session.GetString("token");
- //拼接登出链接
- var logOutUrl = $"{ConfigHelper.GetValue<string>("Login:Url")}/uai/api/oauth20/logout?access_token={session}";
- var res = HttpHelper.HttpGet(logOutUrl);
- HttpContext.Session.Remove("GBRS2018");
- //通过Get请求调用接口
- return RedirectToAction("Index", "Home");
- }
- /// <summary>
- /// 注册
- /// </summary>
- /// <param name="code"></param>
- /// <returns></returns>
- public IActionResult Register(string code = null, string beforeUrl = null)
- {
- //if (!string.IsNullOrEmpty(beforeUrl))
- //{
- // HttpContext.Session.SetString("before", beforeUrl);
- //}
- //获取当前请求地址
- var url = HttpUtility.UrlEncode($"{ConfigHelper.GetValue<string>("Login:Scheme")}://{Request.Host}{Request.Path}").Replace("%3a", "%3A").Replace("%2f", "%2F");
- //判断code是否为空
- if (string.IsNullOrEmpty(code))
- {
- //拼接获取Code地址
- // var redirectUrl = $"{ConfigHelper.GetValue<string>("Login:Url")}/uai/user/passport/register?client_id=201803236916747755&redirect_uri={url}&response_type=code";
- var redirectUrl = $"{ConfigHelper.GetValue<string>("Login:Url")}/uai/user/passport/register?client_id={ConfigHelper.GetValue<string>("Login:ClientId")}&redirect_uri={url}&response_type=code";
- //跳转获取Code
- return Redirect(redirectUrl);
- }
- //拼接获取accessToken地址
- 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}";
- //通过POST调用地址获取实体
- var accessTokenInfo = HttpHelper.HttpPost(getAccessToken);
- //反序列化
- DataContractJsonSerializer dataContractJsonSerializer = new DataContractJsonSerializer(typeof(AccessTokenModel));
- MemoryStream ms = new MemoryStream(Encoding.UTF8.GetBytes(accessTokenInfo));
- AccessTokenModel accessTokenModel = (AccessTokenModel)dataContractJsonSerializer.ReadObject(ms);
- //拼接通过accessToken获取用户信息地址
- var getUserInfoUrl = $"{ConfigHelper.GetValue<string>("Login:Url")}/uai/api/oauth20/getuserinfo?access_token={accessTokenModel.access_token}";
- //通过Get请求获取用户信息
- var userInfo = HttpHelper.HttpGet(getUserInfoUrl);
- //把accessToken 写入session
- //string session = HttpContext.Session.GetString("before");
- //if (!string.IsNullOrEmpty(beforeUrl))
- //{
- // return Redirect(beforeUrl);
- //}
- //else
- //{
- // return RedirectToAction("Index", "Home");
- //}
- HttpContext.Session.SetString("token", accessTokenModel.access_token == null ? "" : accessTokenModel.access_token);
- //反序列化用户信息
- var user = JsonConvert.DeserializeObject<UserInfoModel>(userInfo);
- switch (user.Type)
- {
- case "1":
- user.Type = "客户";
- break;
- case "2":
- user.Type = "国宝内勤";
- break;
- case "3":
- user.Type = "国宝外勤";
- break;
- case "4":
- user.Type = "企业用户";
- break;
- case "5":
- user.Type = "合作伙伴内勤";
- break;
- case "6":
- user.Type = "合作伙伴外勤";
- break;
- }
- switch (user.Customer_info.Gender)
- {
- case "1":
- user.Customer_info.Gender = "男";
- break;
- case "2":
- user.Customer_info.Gender = "女";
- break;
- }
- switch (user.Customer_info.Id_type)
- {
- case "0":
- user.Customer_info.Id_type = "居民身份证";
- break;
- case "1":
- user.Customer_info.Id_type = "护照";
- break;
- case "2":
- user.Customer_info.Id_type = "军人证";
- break;
- case "3":
- user.Customer_info.Id_type = "居民户口薄";
- break;
- case "4":
- user.Customer_info.Id_type = "通行证";
- break;
- case "5":
- user.Customer_info.Id_type = "出生证明";
- break;
- case "8":
- user.Customer_info.Id_type = "其他";
- break;
- }
- var Id = user.Customer_info.Id_no;
- if (!string.IsNullOrEmpty(Id))
- {
- user.Customer_info.Id_no = Id.Substring(0, 6) + "********" + Id.Substring(14, 4);
- }
- var phone = user.Mobile;
- if (!string.IsNullOrEmpty(phone))
- {
- user.Mobile = phone.Substring(0, 3) + "****" + phone.Substring(7, 4);
- }
- HttpContext.Session.SetString("GBRS2018", JsonConvert.SerializeObject(user));
- var queryUser = _clogic.GetCuser(user.User_id);
- if (queryUser == null)
- {
- _clogic.AddModel(user);
- }
- else
- {
- //_clogic.ExcuteSql($"UPDATE gbrs2_customerinfo SET LastLoginTime='{DateTime.Now.ToString()}' WHERE User_id={user.User_id}");
- _clogic.EditEntity(queryUser);
- }
- return RedirectToAction("Index", "User");
- }
- /// <summary>
- /// 根据保单号查询保单详情
- /// </summary>
- /// <param name="contNo"></param>
- /// <returns></returns>
- public IActionResult PolicyDetail(string contNo)
- {
- if (string.IsNullOrEmpty(contNo))
- {
- return Content("该保单信息不存在!");
- }
- ViewBag.PolicyPhone = _sysConfigLogic.GetEntity(x => x.Key == "PolicyPhone").Value;
- var result = _logic.Transformation(contNo).Result;
- string session = HttpContext.Session.GetString("GBRS2018");
- if (string.IsNullOrEmpty(session))
- {
- return RedirectToAction("Index", "User");
- }
- result.UserId = JsonConvert.DeserializeObject<UserInfoModel>(session).Core_customer_code;
- if (!string.IsNullOrEmpty(result.InsurancePolicyModel.CValiDate))
- {
- var backDate = Convert.ToDateTime(result.InsurancePolicyModel.CValiDate);
- var backDate2 = backDate.AddDays(15);
- if (DateTime.Now < backDate2)
- {
- result.InsurancePolicyModel.InHesitationFlag = "犹豫期内";
- }
- else
- {
- result.InsurancePolicyModel.InHesitationFlag = "犹豫期外";
- }
- }
- if (result.InsurancePolicyModel == null)
- {
- return Content("该保单信息不存在!");
- }
- return View(result);
- }
- /// <summary>
- /// 获取当前用户名下所有表单
- /// </summary>
- /// <param name="userId"></param>
- /// <returns></returns>
- public IActionResult MyPolicy(string userId, int pageIndex = 1, int pageSize = 10)
- {
- ReportListViewModel viewModel = new ReportListViewModel();
- string session = HttpContext.Session.GetString("GBRS2018");
- if (string.IsNullOrEmpty(session))
- {
- return Redirect("/User/Index");
- }
- var user1 = JsonConvert.DeserializeObject<UserInfoModel>(session);
- var ContNos = GetConNos(user1.Core_customer_code, "2");
- if (ContNos.Count > 0)
- {
- var list = _logic.GetReportNoList(ContNos).Result;
- viewModel.Count = list.Count;
- viewModel.ReportNoList = list.Skip((pageIndex - 1) * pageSize).Take(pageSize).ToList();
- }
- var user = JsonConvert.DeserializeObject<UserInfoModel>(session);
- viewModel.Head_Url = user.Head_url;
- viewModel.NickName = user.Nickname;
- ViewData["pageCount"] = viewModel.Count;
- ViewData["pageIndex"] = pageIndex;
- viewModel.User = user;
- return View(viewModel);
- }
- private List<string> GetConNos(string customerCode, string customerType)
- {
- JToken jobJect = null;
- var jsonString = _logic.GetListByUserId(customerCode, customerType);
- if (!string.IsNullOrEmpty(jsonString.Result))
- {
- jobJect = JObject.Parse(jsonString.Result)["TransData"]["ContentData"]["ContNos"];
- }
- List<string> ContNos = new List<string>();
- if (jobJect != null)
- {
- ContNos = JsonConvert.DeserializeObject<List<string>>(jobJect.ToString());
- }
- return ContNos;
- }
- /// <summary>
- /// 保单下载
- /// </summary>
- /// <returns></returns>
- public async Task<IActionResult> DownLoadPolicy(string contNo)
- {
- var huaWeiToken = await _logic.GetHuaWeiToken(contNo);
- if (string.IsNullOrEmpty(huaWeiToken))
- {
- return Content("系统错误");
- }
- HuaWeiDownLoadModel downLoadModel = JsonConvert.DeserializeObject<HuaWeiDownLoadModel>(huaWeiToken);
- if (downLoadModel.Code == 500)
- {
- return Content("该保单无法下载");
- }
- HttpWebRequest request;
- request = WebRequest.Create(downLoadModel.Data.v4TemporarySignatureResponse.signedUrl) as HttpWebRequest;
- request.Method = "GET";
- request.Accept = "*/*";
- request.Timeout = 15000;
- request.AllowAutoRedirect = false;
- var response = request.GetResponse();
- return File(response.GetResponseStream(), "application/pdf", $"{downLoadModel.Data.FileName}");
- }
- public IActionResult Notice()
- {
- return View();
- }
- }
- }
|