/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: * CreateTime: 2022/12/14 21:20:57 * Description: 暂无 ***********************************************************************/ using System; using System.ComponentModel; using System.IO; using System.Linq; using System.Linq.Expressions; using System.Threading.Tasks; using CoreCms.Net.Configuration; using CoreCms.Net.Model.Entities; using CoreCms.Net.Model.Entities.Expression; using CoreCms.Net.Model.FromBody; using CoreCms.Net.Model.ViewModels.UI; using CoreCms.Net.Filter; using CoreCms.Net.Loging; using CoreCms.Net.IServices; using CoreCms.Net.Utility.Helper; using CoreCms.Net.Utility.Extensions; using CoreCms.Net.Web.Admin.Infrastructure; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Mvc; using NPOI.HSSF.UserModel; using SqlSugar; namespace CoreCms.Net.Admin.Admin.Controllers { /// /// 微信用户交互授权 /// [Description("微信用户交互授权")] [Route("api/[controller]/[action]")] [ApiController] [RequiredErrorForAdmin] [Authorize] public class WeChatUserAccessTokenController : ControllerBase { private readonly IWebHostEnvironment _webHostEnvironment; private readonly IWeChatUserAccessTokenServices _weChatUserAccessTokenServices; /// /// 构造函数 /// public WeChatUserAccessTokenController(IWebHostEnvironment webHostEnvironment ,IWeChatUserAccessTokenServices weChatUserAccessTokenServices ) { _webHostEnvironment = webHostEnvironment; _weChatUserAccessTokenServices = weChatUserAccessTokenServices; } #region 获取列表============================================================ // POST: Api/WeChatUserAccessToken/GetPageList /// /// 获取列表 /// /// [HttpPost] [Description("获取列表")] public async Task GetPageList() { var jm = new AdminUiCallBack(); var pageCurrent = Request.Form["page"].FirstOrDefault().ObjectToInt(1); var pageSize = Request.Form["limit"].FirstOrDefault().ObjectToInt(30); var where = PredicateBuilder.True(); //获取排序字段 var orderField = Request.Form["orderField"].FirstOrDefault(); Expression> orderEx = orderField switch { "id" => p => p.id,"access_token" => p => p.access_token,"expires_in" => p => p.expires_in,"refresh_token" => p => p.refresh_token,"openid" => p => p.openid,"scope" => p => p.scope,"is_snapshotuser" => p => p.is_snapshotuser,"unionid" => p => p.unionid, _ => p => p.id }; //设置排序方式 var orderDirection = Request.Form["orderDirection"].FirstOrDefault(); var orderBy = orderDirection switch { "asc" => OrderByType.Asc, "desc" => OrderByType.Desc, _ => OrderByType.Desc }; //查询筛选 //序列 int var id = Request.Form["id"].FirstOrDefault().ObjectToInt(0); if (id > 0) { where = where.And(p => p.id == id); } //网页授权接口调用凭证 nvarchar var access_token = Request.Form["access_token"].FirstOrDefault(); if (!string.IsNullOrEmpty(access_token)) { where = where.And(p => p.access_token.Contains(access_token)); } //超时时间秒 int var expires_in = Request.Form["expires_in"].FirstOrDefault().ObjectToInt(0); if (expires_in > 0) { where = where.And(p => p.expires_in == expires_in); } //用户刷新access_token nvarchar var refresh_token = Request.Form["refresh_token"].FirstOrDefault(); if (!string.IsNullOrEmpty(refresh_token)) { where = where.And(p => p.refresh_token.Contains(refresh_token)); } //用户唯一标识 nvarchar var openid = Request.Form["openid"].FirstOrDefault(); if (!string.IsNullOrEmpty(openid)) { where = where.And(p => p.openid.Contains(openid)); } //用户授权的作用域 nvarchar var scope = Request.Form["scope"].FirstOrDefault(); if (!string.IsNullOrEmpty(scope)) { where = where.And(p => p.scope.Contains(scope)); } //是否为快照页模式虚拟账号 int var is_snapshotuser = Request.Form["is_snapshotuser"].FirstOrDefault().ObjectToInt(0); if (is_snapshotuser > 0) { where = where.And(p => p.is_snapshotuser == is_snapshotuser); } //用户统一标识 nvarchar var unionid = Request.Form["unionid"].FirstOrDefault(); if (!string.IsNullOrEmpty(unionid)) { where = where.And(p => p.unionid.Contains(unionid)); } //获取数据 var list = await _weChatUserAccessTokenServices.QueryPageAsync(where, orderEx, orderBy, pageCurrent, pageSize, true); //返回数据 jm.data = list; jm.code = 0; jm.count = list.TotalCount; jm.msg = "数据调用成功!"; return jm; } #endregion #region 首页数据============================================================ // POST: Api/WeChatUserAccessToken/GetIndex /// /// 首页数据 /// /// [HttpPost] [Description("首页数据")] public AdminUiCallBack GetIndex() { //返回数据 var jm = new AdminUiCallBack { code = 0 }; return jm; } #endregion #region 创建数据============================================================ // POST: Api/WeChatUserAccessToken/GetCreate /// /// 创建数据 /// /// [HttpPost] [Description("创建数据")] public AdminUiCallBack GetCreate() { //返回数据 var jm = new AdminUiCallBack { code = 0 }; return jm; } #endregion #region 创建提交============================================================ // POST: Api/WeChatUserAccessToken/DoCreate /// /// 创建提交 /// /// /// [HttpPost] [Description("创建提交")] public async Task DoCreate([FromBody]WeChatUserAccessToken entity) { var jm = await _weChatUserAccessTokenServices.InsertAsync(entity); return jm; } #endregion #region 编辑数据============================================================ // POST: Api/WeChatUserAccessToken/GetEdit /// /// 编辑数据 /// /// /// [HttpPost] [Description("编辑数据")] public async Task GetEdit([FromBody]FMIntId entity) { var jm = new AdminUiCallBack(); var model = await _weChatUserAccessTokenServices.QueryByIdAsync(entity.id, false); if (model == null) { jm.msg = "不存在此信息"; return jm; } jm.code = 0; jm.data = model; return jm; } #endregion #region 编辑提交============================================================ // POST: Api/WeChatUserAccessToken/Edit /// /// 编辑提交 /// /// /// [HttpPost] [Description("编辑提交")] public async Task DoEdit([FromBody]WeChatUserAccessToken entity) { var jm = await _weChatUserAccessTokenServices.UpdateAsync(entity); return jm; } #endregion #region 删除数据============================================================ // POST: Api/WeChatUserAccessToken/DoDelete/10 /// /// 单选删除 /// /// /// [HttpPost] [Description("单选删除")] public async Task DoDelete([FromBody]FMIntId entity) { var jm = new AdminUiCallBack(); var model = await _weChatUserAccessTokenServices.ExistsAsync(p => p.id == entity.id, true); if (!model) { jm.msg = GlobalConstVars.DataisNo; return jm; } jm = await _weChatUserAccessTokenServices.DeleteByIdAsync(entity.id); return jm; } #endregion #region 批量删除============================================================ // POST: Api/WeChatUserAccessToken/DoBatchDelete/10,11,20 /// /// 批量删除 /// /// /// [HttpPost] [Description("批量删除")] public async Task DoBatchDelete([FromBody]FMArrayIntIds entity) { var jm = await _weChatUserAccessTokenServices.DeleteByIdsAsync(entity.id); return jm; } #endregion #region 预览数据============================================================ // POST: Api/WeChatUserAccessToken/GetDetails/10 /// /// 预览数据 /// /// /// [HttpPost] [Description("预览数据")] public async Task GetDetails([FromBody]FMIntId entity) { var jm = new AdminUiCallBack(); var model = await _weChatUserAccessTokenServices.QueryByIdAsync(entity.id, false); if (model == null) { jm.msg = "不存在此信息"; return jm; } jm.code = 0; jm.data = model; return jm; } #endregion #region 选择导出============================================================ // POST: Api/WeChatUserAccessToken/SelectExportExcel/10 /// /// 选择导出 /// /// /// [HttpPost] [Description("选择导出")] public async Task SelectExportExcel([FromBody]FMArrayIntIds entity) { var jm = new AdminUiCallBack(); //创建Excel文件的对象 var book = new HSSFWorkbook(); //添加一个sheet var mySheet = book.CreateSheet("Sheet1"); //获取list数据 var listModel = await _weChatUserAccessTokenServices.QueryListByClauseAsync(p => entity.id.Contains(p.id), p => p.id, OrderByType.Asc, true); //给sheet1添加第一行的头部标题 var headerRow = mySheet.CreateRow(0); var headerStyle = ExcelHelper.GetHeaderStyle(book); var cell0 = headerRow.CreateCell(0); cell0.SetCellValue("序列"); cell0.CellStyle = headerStyle; mySheet.SetColumnWidth(0, 10 * 256); var cell1 = headerRow.CreateCell(1); cell1.SetCellValue("网页授权接口调用凭证"); cell1.CellStyle = headerStyle; mySheet.SetColumnWidth(1, 10 * 256); var cell2 = headerRow.CreateCell(2); cell2.SetCellValue("超时时间秒"); cell2.CellStyle = headerStyle; mySheet.SetColumnWidth(2, 10 * 256); var cell3 = headerRow.CreateCell(3); cell3.SetCellValue("用户刷新access_token"); cell3.CellStyle = headerStyle; mySheet.SetColumnWidth(3, 10 * 256); var cell4 = headerRow.CreateCell(4); cell4.SetCellValue("用户唯一标识"); cell4.CellStyle = headerStyle; mySheet.SetColumnWidth(4, 10 * 256); var cell5 = headerRow.CreateCell(5); cell5.SetCellValue("用户授权的作用域"); cell5.CellStyle = headerStyle; mySheet.SetColumnWidth(5, 10 * 256); var cell6 = headerRow.CreateCell(6); cell6.SetCellValue("是否为快照页模式虚拟账号"); cell6.CellStyle = headerStyle; mySheet.SetColumnWidth(6, 10 * 256); var cell7 = headerRow.CreateCell(7); cell7.SetCellValue("用户统一标识"); cell7.CellStyle = headerStyle; mySheet.SetColumnWidth(7, 10 * 256); headerRow.Height = 30 * 20; var commonCellStyle = ExcelHelper.GetCommonStyle(book); //将数据逐步写入sheet1各个行 for (var i = 0; i < listModel.Count; i++) { var rowTemp = mySheet.CreateRow(i + 1); var rowTemp0 = rowTemp.CreateCell(0); rowTemp0.SetCellValue(listModel[i].id.ToString()); rowTemp0.CellStyle = commonCellStyle; var rowTemp1 = rowTemp.CreateCell(1); rowTemp1.SetCellValue(listModel[i].access_token.ToString()); rowTemp1.CellStyle = commonCellStyle; var rowTemp2 = rowTemp.CreateCell(2); rowTemp2.SetCellValue(listModel[i].expires_in.ToString()); rowTemp2.CellStyle = commonCellStyle; var rowTemp3 = rowTemp.CreateCell(3); rowTemp3.SetCellValue(listModel[i].refresh_token.ToString()); rowTemp3.CellStyle = commonCellStyle; var rowTemp4 = rowTemp.CreateCell(4); rowTemp4.SetCellValue(listModel[i].openid.ToString()); rowTemp4.CellStyle = commonCellStyle; var rowTemp5 = rowTemp.CreateCell(5); rowTemp5.SetCellValue(listModel[i].scope.ToString()); rowTemp5.CellStyle = commonCellStyle; var rowTemp6 = rowTemp.CreateCell(6); rowTemp6.SetCellValue(listModel[i].is_snapshotuser.ToString()); rowTemp6.CellStyle = commonCellStyle; var rowTemp7 = rowTemp.CreateCell(7); rowTemp7.SetCellValue(listModel[i].unionid.ToString()); rowTemp7.CellStyle = commonCellStyle; } // 导出excel string webRootPath = _webHostEnvironment.WebRootPath; string tpath = "/files/" + DateTime.Now.ToString("yyyy-MM-dd") + "/"; string fileName = DateTime.Now.ToString("yyyyMMddHHmmssfff") + "-WeChatUserAccessToken导出(选择结果).xls"; string filePath = webRootPath + tpath; DirectoryInfo di = new DirectoryInfo(filePath); if (!di.Exists) { di.Create(); } FileStream fileHssf = new FileStream(filePath + fileName, FileMode.Create); book.Write(fileHssf); fileHssf.Close(); jm.code = 0; jm.msg = GlobalConstVars.ExcelExportSuccess; jm.data = tpath + fileName; return jm; } #endregion #region 查询导出============================================================ // POST: Api/WeChatUserAccessToken/QueryExportExcel/10 /// /// 查询导出 /// /// [HttpPost] [Description("查询导出")] public async Task QueryExportExcel() { var jm = new AdminUiCallBack(); var where = PredicateBuilder.True(); //查询筛选 //序列 int var id = Request.Form["id"].FirstOrDefault().ObjectToInt(0); if (id > 0) { where = where.And(p => p.id == id); } //网页授权接口调用凭证 nvarchar var access_token = Request.Form["access_token"].FirstOrDefault(); if (!string.IsNullOrEmpty(access_token)) { where = where.And(p => p.access_token.Contains(access_token)); } //超时时间秒 int var expires_in = Request.Form["expires_in"].FirstOrDefault().ObjectToInt(0); if (expires_in > 0) { where = where.And(p => p.expires_in == expires_in); } //用户刷新access_token nvarchar var refresh_token = Request.Form["refresh_token"].FirstOrDefault(); if (!string.IsNullOrEmpty(refresh_token)) { where = where.And(p => p.refresh_token.Contains(refresh_token)); } //用户唯一标识 nvarchar var openid = Request.Form["openid"].FirstOrDefault(); if (!string.IsNullOrEmpty(openid)) { where = where.And(p => p.openid.Contains(openid)); } //用户授权的作用域 nvarchar var scope = Request.Form["scope"].FirstOrDefault(); if (!string.IsNullOrEmpty(scope)) { where = where.And(p => p.scope.Contains(scope)); } //是否为快照页模式虚拟账号 int var is_snapshotuser = Request.Form["is_snapshotuser"].FirstOrDefault().ObjectToInt(0); if (is_snapshotuser > 0) { where = where.And(p => p.is_snapshotuser == is_snapshotuser); } //用户统一标识 nvarchar var unionid = Request.Form["unionid"].FirstOrDefault(); if (!string.IsNullOrEmpty(unionid)) { where = where.And(p => p.unionid.Contains(unionid)); } //获取数据 //创建Excel文件的对象 var book = new HSSFWorkbook(); //添加一个sheet var mySheet = book.CreateSheet("Sheet1"); //获取list数据 var listModel = await _weChatUserAccessTokenServices.QueryListByClauseAsync(where, p => p.id, OrderByType.Asc, true); //给sheet1添加第一行的头部标题 var headerRow = mySheet.CreateRow(0); var headerStyle = ExcelHelper.GetHeaderStyle(book); var cell0 = headerRow.CreateCell(0); cell0.SetCellValue("序列"); cell0.CellStyle = headerStyle; mySheet.SetColumnWidth(0, 10 * 256); var cell1 = headerRow.CreateCell(1); cell1.SetCellValue("网页授权接口调用凭证"); cell1.CellStyle = headerStyle; mySheet.SetColumnWidth(1, 10 * 256); var cell2 = headerRow.CreateCell(2); cell2.SetCellValue("超时时间秒"); cell2.CellStyle = headerStyle; mySheet.SetColumnWidth(2, 10 * 256); var cell3 = headerRow.CreateCell(3); cell3.SetCellValue("用户刷新access_token"); cell3.CellStyle = headerStyle; mySheet.SetColumnWidth(3, 10 * 256); var cell4 = headerRow.CreateCell(4); cell4.SetCellValue("用户唯一标识"); cell4.CellStyle = headerStyle; mySheet.SetColumnWidth(4, 10 * 256); var cell5 = headerRow.CreateCell(5); cell5.SetCellValue("用户授权的作用域"); cell5.CellStyle = headerStyle; mySheet.SetColumnWidth(5, 10 * 256); var cell6 = headerRow.CreateCell(6); cell6.SetCellValue("是否为快照页模式虚拟账号"); cell6.CellStyle = headerStyle; mySheet.SetColumnWidth(6, 10 * 256); var cell7 = headerRow.CreateCell(7); cell7.SetCellValue("用户统一标识"); cell7.CellStyle = headerStyle; mySheet.SetColumnWidth(7, 10 * 256); headerRow.Height = 30 * 20; var commonCellStyle = ExcelHelper.GetCommonStyle(book); //将数据逐步写入sheet1各个行 for (var i = 0; i < listModel.Count; i++) { var rowTemp = mySheet.CreateRow(i + 1); var rowTemp0 = rowTemp.CreateCell(0); rowTemp0.SetCellValue(listModel[i].id.ToString()); rowTemp0.CellStyle = commonCellStyle; var rowTemp1 = rowTemp.CreateCell(1); rowTemp1.SetCellValue(listModel[i].access_token.ToString()); rowTemp1.CellStyle = commonCellStyle; var rowTemp2 = rowTemp.CreateCell(2); rowTemp2.SetCellValue(listModel[i].expires_in.ToString()); rowTemp2.CellStyle = commonCellStyle; var rowTemp3 = rowTemp.CreateCell(3); rowTemp3.SetCellValue(listModel[i].refresh_token.ToString()); rowTemp3.CellStyle = commonCellStyle; var rowTemp4 = rowTemp.CreateCell(4); rowTemp4.SetCellValue(listModel[i].openid.ToString()); rowTemp4.CellStyle = commonCellStyle; var rowTemp5 = rowTemp.CreateCell(5); rowTemp5.SetCellValue(listModel[i].scope.ToString()); rowTemp5.CellStyle = commonCellStyle; var rowTemp6 = rowTemp.CreateCell(6); rowTemp6.SetCellValue(listModel[i].is_snapshotuser.ToString()); rowTemp6.CellStyle = commonCellStyle; var rowTemp7 = rowTemp.CreateCell(7); rowTemp7.SetCellValue(listModel[i].unionid.ToString()); rowTemp7.CellStyle = commonCellStyle; } // 写入到excel string webRootPath = _webHostEnvironment.WebRootPath; string tpath = "/files/" + DateTime.Now.ToString("yyyy-MM-dd") + "/"; string fileName = DateTime.Now.ToString("yyyyMMddHHmmssfff") + "-WeChatUserAccessToken导出(查询结果).xls"; string filePath = webRootPath + tpath; DirectoryInfo di = new DirectoryInfo(filePath); if (!di.Exists) { di.Create(); } FileStream fileHssf = new FileStream(filePath + fileName, FileMode.Create); book.Write(fileHssf); fileHssf.Close(); jm.code = 0; jm.msg = GlobalConstVars.ExcelExportSuccess; jm.data = tpath + fileName; return jm; } #endregion } }