移动系统liao
2024-09-23 78028cee453a5878835a27f884ae36c0900fe8f7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
/***********************************************************************
 *            Project: baifenBinfa
 *        ProjectName: 百分兵法管理系统                               
 *                Web: http://chuanyin.com                     
 *             Author:                                        
 *              Email:                               
 *         CreateTime: 2021/7/15 14:44:18
 *        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;
using static CoreCms.Net.Configuration.GlobalEnumVars;
 
namespace CoreCms.Net.Web.Admin.Controllers
{
    /// <summary>
    /// 微信用户列表
    ///</summary>
    [Description("微信用户列表")]
    [Route("api/[controller]/[action]")]
    [ApiController]
    [RequiredErrorForAdmin]
    [Authorize(Permissions.Name)]
    public class CoreCmsUserWeChatInfoController : ControllerBase
    {
        private readonly IWebHostEnvironment _webHostEnvironment;
        private readonly ICoreCmsUserWeChatInfoServices _coreCmsUserWeChatInfoServices;
 
        /// <summary>
        /// 构造函数
        ///</summary>
        public CoreCmsUserWeChatInfoController(IWebHostEnvironment webHostEnvironment
            , ICoreCmsUserWeChatInfoServices coreCmsUserWeChatInfoServices
            )
        {
            _webHostEnvironment = webHostEnvironment;
            _coreCmsUserWeChatInfoServices = coreCmsUserWeChatInfoServices;
        }
 
        #region 获取列表============================================================
        // POST: Api/CoreCmsUserWeChatInfo/GetPageList
        /// <summary>
        /// 获取列表
        /// </summary>
        /// <returns></returns>
        [HttpPost]
        [Description("获取列表")]
        public async Task<AdminUiCallBack> 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<CoreCmsUserWeChatInfo>();
            //获取排序字段
            var orderField = Request.Form["orderField"].FirstOrDefault();
 
            Expression<Func<CoreCmsUserWeChatInfo, object>> orderEx = orderField switch
            {
                "id" => p => p.id,
                "type" => p => p.type,
                "userId" => p => p.userId,
                "openid" => p => p.openid,
                "sessionKey" => p => p.sessionKey,
                "unionId" => p => p.unionId,
                "avatar" => p => p.avatar,
                "nickName" => p => p.nickName,
                "gender" => p => p.gender,
                "language" => p => p.language,
                "city" => p => p.city,
                "province" => p => p.province,
                "country" => p => p.country,
                "countryCode" => p => p.countryCode,
                "mobile" => p => p.mobile,
                "createTime" => p => p.createTime,
                "updateTime" => p => p.updateTime,
                _ => p => p.id
            };
 
            //设置排序方式
            var orderDirection = Request.Form["orderDirection"].FirstOrDefault();
            var orderBy = orderDirection switch
            {
                "asc" => OrderByType.Asc,
                "desc" => OrderByType.Desc,
                _ => OrderByType.Desc
            };
            //查询筛选
 
            //用户ID int
            var id = Request.Form["id"].FirstOrDefault().ObjectToInt(0);
            if (id > 0)
            {
                where = where.And(p => p.id == id);
            }
            //第三方登录类型 int
            var type = Request.Form["type"].FirstOrDefault().ObjectToInt(0);
            if (type > 0)
            {
                where = where.And(p => p.type == type);
            }
            //关联用户表 int
            var userId = Request.Form["userId"].FirstOrDefault().ObjectToInt(0);
            if (userId > 0)
            {
                where = where.And(p => p.userId == userId);
            }
            //openId nvarchar
            var openid = Request.Form["openid"].FirstOrDefault();
            if (!string.IsNullOrEmpty(openid))
            {
                where = where.And(p => p.openid.Contains(openid));
            }
            //缓存key nvarchar
            var sessionKey = Request.Form["sessionKey"].FirstOrDefault();
            if (!string.IsNullOrEmpty(sessionKey))
            {
                where = where.And(p => p.sessionKey.Contains(sessionKey));
            }
            //unionid nvarchar
            var unionId = Request.Form["unionId"].FirstOrDefault();
            if (!string.IsNullOrEmpty(unionId))
            {
                where = where.And(p => p.unionId.Contains(unionId));
            }
            //头像 nvarchar
            var avatar = Request.Form["avatar"].FirstOrDefault();
            if (!string.IsNullOrEmpty(avatar))
            {
                where = where.And(p => p.avatar.Contains(avatar));
            }
            //昵称 nvarchar
            var nickName = Request.Form["nickName"].FirstOrDefault();
            if (!string.IsNullOrEmpty(nickName))
            {
                where = where.And(p => p.nickName.Contains(nickName));
            }
            //性别 int
            var gender = Request.Form["gender"].FirstOrDefault().ObjectToInt(0);
            if (gender > 0)
            {
                where = where.And(p => p.gender == gender);
            }
            //语言 nvarchar
            var language = Request.Form["language"].FirstOrDefault();
            if (!string.IsNullOrEmpty(language))
            {
                where = where.And(p => p.language.Contains(language));
            }
            //城市 nvarchar
            var city = Request.Form["city"].FirstOrDefault();
            if (!string.IsNullOrEmpty(city))
            {
                where = where.And(p => p.city.Contains(city));
            }
            //省 nvarchar
            var province = Request.Form["province"].FirstOrDefault();
            if (!string.IsNullOrEmpty(province))
            {
                where = where.And(p => p.province.Contains(province));
            }
            //国家 nvarchar
            var country = Request.Form["country"].FirstOrDefault();
            if (!string.IsNullOrEmpty(country))
            {
                where = where.And(p => p.country.Contains(country));
            }
            //手机号码国家编码 nvarchar
            var countryCode = Request.Form["countryCode"].FirstOrDefault();
            if (!string.IsNullOrEmpty(countryCode))
            {
                where = where.And(p => p.countryCode.Contains(countryCode));
            }
            //手机号码 nvarchar
            var mobile = Request.Form["mobile"].FirstOrDefault();
            if (!string.IsNullOrEmpty(mobile))
            {
                where = where.And(p => p.mobile.Contains(mobile));
            }
            //创建时间 datetime
            var createTime = Request.Form["createTime"].FirstOrDefault();
            if (!string.IsNullOrEmpty(createTime))
            {
                if (createTime.Contains("到"))
                {
                    var dts = createTime.Split("到");
                    var dtStart = dts[0].Trim().ObjectToDate();
                    where = where.And(p => p.createTime > dtStart);
                    var dtEnd = dts[1].Trim().ObjectToDate();
                    where = where.And(p => p.createTime < dtEnd);
                }
                else
                {
                    var dt = createTime.ObjectToDate();
                    where = where.And(p => p.createTime > dt);
                }
            }
            //更新时间 datetime
            var updateTime = Request.Form["updateTime"].FirstOrDefault();
            if (!string.IsNullOrEmpty(updateTime))
            {
                if (updateTime.Contains("到"))
                {
                    var dts = updateTime.Split("到");
                    var dtStart = dts[0].Trim().ObjectToDate();
                    where = where.And(p => p.updateTime > dtStart);
                    var dtEnd = dts[1].Trim().ObjectToDate();
                    where = where.And(p => p.updateTime < dtEnd);
                }
                else
                {
                    var dt = updateTime.ObjectToDate();
                    where = where.And(p => p.updateTime > dt);
                }
            }
            //获取数据
            var list = await _coreCmsUserWeChatInfoServices.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/CoreCmsUserWeChatInfo/GetIndex
        /// <summary>
        /// 首页数据
        /// </summary>
        /// <returns></returns>
        [HttpPost]
        [Description("首页数据")]
        public AdminUiCallBack GetIndex()
        {
            //返回数据
            var jm = new AdminUiCallBack { code = 0 };
 
            var userAccountTypes = EnumHelper.EnumToList<GlobalEnumVars.UserAccountTypes>();
            jm.data = new
            {
                userAccountTypes
            };
 
            return jm;
        }
        #endregion
 
        #region 预览数据============================================================
        // POST: Api/CoreCmsUserWeChatInfo/GetDetails/10
        /// <summary>
        /// 预览数据
        /// </summary>
        /// <param name="entity"></param>
        /// <returns></returns>
        [HttpPost]
        [Description("预览数据")]
        public async Task<AdminUiCallBack> GetDetails([FromBody] FMIntId entity)
        {
            var jm = new AdminUiCallBack();
 
            var model = await _coreCmsUserWeChatInfoServices.QueryByIdAsync(entity.id, false);
            if (model == null)
            {
                jm.msg = "不存在此信息";
                return jm;
            }
            jm.code = 0;
            jm.data = model;
 
            return jm;
        }
        #endregion
 
    }
}