UserController.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Security.Claims;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using Datory.Utils;
  8. using GxPress.Api.Tools;
  9. using GxPress.Auth;
  10. using GxPress.Common.Exceptions;
  11. using GxPress.Common.Tools;
  12. using GxPress.Common.Validation;
  13. using GxPress.Entity;
  14. using GxPress.EnumConst;
  15. using GxPress.Repository.Interface;
  16. using GxPress.Request.App.User;
  17. using GxPress.Request.User;
  18. using GxPress.Result.App.FileLibrary;
  19. using GxPress.Result.App.User;
  20. using GxPress.Result.User;
  21. using GxPress.Service.Interface;
  22. using Microsoft.AspNetCore.Authorization;
  23. using Microsoft.AspNetCore.Mvc;
  24. using Microsoft.Extensions.Caching.Distributed;
  25. using Microsoft.Extensions.Logging;
  26. using Microsoft.Extensions.Options;
  27. namespace GxPress.Api.AppControllers
  28. {
  29. /// <summary>
  30. /// 用户
  31. /// </summary>
  32. [Route("/api/app/user")]
  33. [ApiController]
  34. [Authorize]
  35. public class UserController : ControllerBase
  36. {
  37. private readonly JwtOptions _jwtOptions;
  38. private readonly ILogger<UserController> _logger;
  39. private readonly IUserRepository _userRepository;
  40. private readonly IDepartmentRepository _departmentRepository;
  41. private readonly ILoginContext _loginContext;
  42. private readonly IUserService _userService;
  43. private readonly IFileLibraryRepository fileLibraryRepository;
  44. private readonly IDistributedCache _cache;
  45. public UserController(IUserRepository userRepository, IOptions<JwtOptions> jwtOptions,
  46. ILogger<UserController> logger, IDepartmentRepository departmentRepository, ILoginContext loginContext,
  47. IUserService userService, IFileLibraryRepository fileLibraryRepository, IDistributedCache cache)
  48. {
  49. _userRepository = userRepository;
  50. _departmentRepository = departmentRepository;
  51. _userService = userService;
  52. _jwtOptions = jwtOptions.Value;
  53. _logger = logger;
  54. _loginContext = loginContext;
  55. this.fileLibraryRepository = fileLibraryRepository;
  56. _cache = cache;
  57. }
  58. ///// <summary>
  59. ///// 添加
  60. ///// </summary>
  61. ///// <param name="request"></param>
  62. ///// <returns></returns>
  63. //[HttpPost]
  64. //public async Task<User> Add([FromBody] User request)
  65. //{
  66. // request.Id = await _userRepository.InsertAsync(request);
  67. // return request;
  68. //}
  69. /// <summary>
  70. /// 登录
  71. /// </summary>
  72. /// <param name="request"></param>
  73. /// <returns></returns>
  74. [HttpPost("signin")]
  75. [AllowAnonymous]
  76. public async Task<UserSignInResult> SignIn(UserSignInRequest request)
  77. {
  78. var result = await _userRepository.SignInAsync(request);
  79. if (result.IsAddUser)
  80. {
  81. //添加环信
  82. await _userRepository.CreateMiUserAsync(result.UserEntity);
  83. }
  84. var claims = new[]
  85. {
  86. new Claim(ClaimTypes.NameIdentifier, result.UserId.ToString()),
  87. new Claim(ClaimTypes.Role, AccountTypeConst.User.ToString()),
  88. new Claim(ClaimTypes.GroupSid,result.DepartmentId.ToString())
  89. };
  90. result.Token = TokenHelper.BuildToken(_jwtOptions, claims);
  91. return result;
  92. }
  93. /// <summary>
  94. /// 绑定opendId
  95. /// </summary>
  96. /// <param name="request"></param>
  97. /// <returns></returns>
  98. [HttpPost("set-opend-Id")]
  99. [AllowAnonymous]
  100. public async Task<UserSignInResult> SetOpenId(UserSignInRequest request)
  101. {
  102. var success = await _userRepository.UpdateByOpendIdAsync(request);
  103. if (success)
  104. {
  105. var result = await _userRepository.SignInAsync(request);
  106. if (result.IsAddUser)
  107. {
  108. //添加环信
  109. await _userRepository.CreateMiUserAsync(result.UserEntity);
  110. }
  111. var claims = new[]
  112. {
  113. new Claim(ClaimTypes.NameIdentifier, result.UserId.ToString()),
  114. new Claim(ClaimTypes.Role, AccountTypeConst.User.ToString()),
  115. new Claim(ClaimTypes.GroupSid,result.DepartmentId.ToString())
  116. };
  117. result.Token = TokenHelper.BuildToken(_jwtOptions, claims);
  118. return result;
  119. }
  120. return new UserSignInResult();
  121. }
  122. /// <summary>
  123. /// 查询opendId是否存在
  124. /// </summary>
  125. /// <param name="opendId"></param>
  126. /// <returns></returns>
  127. [HttpGet("find-opend-Id/{opendId}")]
  128. [AllowAnonymous]
  129. public async Task<bool> FindOpenId(string opendId)
  130. {
  131. var user = await _userRepository.GetByOpenIdAsync(opendId);
  132. if (user == null)
  133. return false;
  134. return true;
  135. }
  136. /////// <summary>
  137. /////// 登录验证码发送
  138. /////// </summary>
  139. /////// <param name="phone"></param>
  140. /////// <returns></returns>
  141. ////[HttpGet("sendSmsCode")]
  142. ////[AllowAnonymous]
  143. ////public async Task<bool> SendSmsCode([FromQuery] [Required] [Mobile] string phone)
  144. ////{
  145. //// var user = await _userRepository.GetByPhoneAsync(phone);
  146. //// //用户不存在
  147. //// if (user == null)
  148. //// {
  149. //// throw new BusinessException("该用户不存在");
  150. //// }
  151. //// //TODO 短信验证码发送
  152. //// //return await _smsService.
  153. //// //SendValidationCodeAsync(phone);
  154. //// var key = $"login:{phone}";
  155. //// if (await RedisHelper.ExistsAsync(key)) throw new BusinessException("发送太频繁");
  156. //// var code = RandomGenerator.GetNumberString(6);
  157. //// _logger.LogInformation("{phone}验证码:{code}", phone, code);
  158. //// //发送验证码阿里云
  159. //// IClientProfile profile =
  160. //// DefaultProfile.GetProfile("cn-hangzhou", "LTAI2E47R4DlcYfo", "5epQRUGRrDSoF7yukyYf4HX6dUlvF3");
  161. //// DefaultAcsClient client = new DefaultAcsClient(profile);
  162. //// CommonRequest request = new CommonRequest
  163. //// {
  164. //// Method = MethodType.POST,
  165. //// Domain = "dysmsapi.aliyuncs.com",
  166. //// Version = "2017-05-25",
  167. //// Action = "SendSms"
  168. //// };
  169. //// request.AddQueryParameters("PhoneNumbers", $"{phone}");
  170. //// request.AddQueryParameters("SignName", "泰德合众");
  171. //// request.AddQueryParameters("TemplateCode", "SMS_168126117");
  172. //// request.AddQueryParameters("TemplateParam", "{\"code\":\"" + code + "\"}");
  173. //// try
  174. //// {
  175. //// CommonResponse response = client.GetCommonResponse(request);
  176. //// _logger.LogInformation(Encoding.Default.GetString(response.HttpResponse.Content));
  177. //// }
  178. //// catch (ServerException e)
  179. //// {
  180. //// throw new BusinessException(e.Message);
  181. //// }
  182. //return await RedisHelper.SetAsync(key, code, 300);
  183. ////}
  184. /// <summary>
  185. /// 登录验证码发送
  186. /// </summary>
  187. /// <param name="phone"></param>
  188. /// <returns></returns>
  189. [HttpGet("sendSmsCode")]
  190. [AllowAnonymous]
  191. public async Task<bool> SendSmsCode([FromQuery][Required][Mobile] string phone)
  192. {
  193. var user = await _userRepository.GetByPhoneAsync(phone);
  194. //用户不存在
  195. if (user == null)
  196. {
  197. user = new User();
  198. user.Name = phone;
  199. user.Phone = phone;
  200. user.ImId = phone;
  201. user.Id = await _userRepository.InsertAsync(user);
  202. if (user.Id > 0 && await _userRepository.CreateMiUserAsync(user))
  203. {
  204. }
  205. }
  206. //TODO 短信验证码发送
  207. //return await _smsService.
  208. //SendValidationCodeAsync(phone);
  209. //发送短信
  210. var key = $"login:{phone}";
  211. var code = await _cache.GetStringAsync(key);
  212. if (!string.IsNullOrEmpty(code))
  213. throw new BusinessException("请求太频繁!");
  214. code = RandomGenerator.GetNumberString(6);
  215. //code = "123456";
  216. if (Common.Sms.MasSms.SendSmsTemplate(phone, code, "8b833ac6dfe54e62821bc6843279e2dd"))
  217. {
  218. _logger.LogInformation("{phone}验证码:{code}", phone, code);
  219. var codeByte = Encoding.UTF8.GetBytes(Utilities.JsonSerialize(code));
  220. await _cache.SetAsync($"{key}", codeByte, new DistributedCacheEntryOptions
  221. {
  222. AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(60)
  223. });
  224. return true;
  225. }
  226. return false;
  227. }
  228. /// <summary>
  229. /// 更换手机号码验证码发送
  230. /// </summary>
  231. /// <param name="phone"></param>
  232. /// <returns></returns>
  233. [HttpGet("send-sms-code")]
  234. public async Task<bool> SendSmsCodeReplace([FromQuery][Required][Mobile] string phone)
  235. {
  236. var user = await _userRepository.GetByPhoneAsync(phone);
  237. if (user != null)
  238. throw new BusinessException("号码以被使用");
  239. //TODO 短信验证码发送
  240. //发送短信
  241. var key = $"login:{phone}";
  242. var code = await _cache.GetStringAsync(key);
  243. if (!string.IsNullOrEmpty(code))
  244. throw new BusinessException("请求太频繁!");
  245. code = RandomGenerator.GetNumberString(6);
  246. //code = "123456";
  247. if (Common.Sms.MasSms.SendSmsTemplate(phone, code, "8b833ac6dfe54e62821bc6843279e2dd"))
  248. {
  249. _logger.LogInformation("{phone}验证码:{code}", phone, code);
  250. var codeByte = Encoding.UTF8.GetBytes(Utilities.JsonSerialize(code));
  251. await _cache.SetAsync($"{key}", codeByte, new DistributedCacheEntryOptions
  252. {
  253. AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(60)
  254. });
  255. return true;
  256. }
  257. return false;
  258. }
  259. /// <summary>
  260. /// app查询用户详情
  261. /// </summary>
  262. /// <returns></returns>
  263. [HttpGet("detail")]
  264. public async Task<UserDetail> GetDetail()
  265. {
  266. var id = _loginContext.AccountId;
  267. var user = await _userRepository.GetAsync(id);
  268. if (user == null)
  269. throw new BusinessException("用户id有误");
  270. return await _userRepository.GetDetailAsync(id);
  271. }
  272. /// <summary>
  273. /// app查询他人用户详情
  274. /// </summary>
  275. /// <returns></returns>
  276. [HttpGet("detail/{id}")]
  277. public async Task<UserDetail> GetDetail(int id)
  278. {
  279. if (id <= 0)
  280. throw new BusinessException("用户id有误");
  281. return await _userService.GetUserByIdAsync(_loginContext.AccountId, id);
  282. }
  283. /// <summary>
  284. /// app更新用户信息
  285. /// </summary>
  286. /// <param name="request"></param>
  287. /// <returns></returns>
  288. [HttpPut("update")]
  289. public async Task<bool> Update([FromBody] User request)
  290. {
  291. var id = _loginContext.AccountId;
  292. var result = await _userRepository.UpdateAsync(id, request);
  293. if (result == false)
  294. throw new BusinessException("更新失败");
  295. return true;
  296. }
  297. /// <summary>
  298. /// 私信
  299. /// </summary>
  300. /// <returns></returns>
  301. [HttpPost("update-user-private-letter")]
  302. public async Task<bool> UpdateUserPrivateLetter()
  303. {
  304. UserPrivateLetterRequest request = new UserPrivateLetterRequest { Id = _loginContext.AccountId };
  305. var result = await _userRepository.UpdateUserPrivateLetterAsync(request);
  306. if (result == false)
  307. throw new BusinessException("更新失败");
  308. return true;
  309. }
  310. /// <summary>
  311. /// 通知
  312. /// </summary>
  313. /// <returns></returns>
  314. [HttpPost("update-user-notice")]
  315. public async Task<bool> UpdateUserNotice()
  316. {
  317. var request = new UserNoticeRequest { Id = _loginContext.AccountId };
  318. var result = await _userRepository.UpdateUserNoticeAsync(request);
  319. if (result == false)
  320. throw new BusinessException("更新失败");
  321. return true;
  322. }
  323. /// <summary>
  324. /// 回复
  325. /// </summary>
  326. /// <returns></returns>
  327. [HttpPost("update-user-reply")]
  328. public async Task<bool> UpdateUserReply()
  329. {
  330. var request = new UserReplyRequest { Id = _loginContext.AccountId };
  331. var result = await _userRepository.UpdateUserReplyAsync(request);
  332. if (result == false)
  333. throw new BusinessException("更新失败");
  334. return true;
  335. }
  336. /// <summary>
  337. /// 静音
  338. /// </summary>
  339. /// <returns></returns>
  340. [HttpPost("update-user-mute")]
  341. public async Task<bool> UpdateUserMute()
  342. {
  343. var request = new UserMuteRequest { Id = _loginContext.AccountId };
  344. var result = await _userRepository.UpdateUserMuteAsync(request);
  345. if (result == false)
  346. throw new BusinessException("更新失败");
  347. return true;
  348. }
  349. /// <summary>
  350. /// 震动
  351. /// </summary>
  352. /// <returns></returns>
  353. [HttpPost("update-user-shake")]
  354. public async Task<bool> UpdateUserShake()
  355. {
  356. var request = new UserShakeRequest { Id = _loginContext.AccountId };
  357. var result = await _userRepository.UpdateUserShakeAsync(request);
  358. if (result == false)
  359. throw new BusinessException("更新失败");
  360. return true;
  361. }
  362. /// <summary>
  363. /// 用户修改手机号码
  364. /// </summary>
  365. /// <param name="request"></param>
  366. /// <returns></returns>
  367. [HttpPost("update-user-phone")]
  368. public async Task<bool> UpdateUserPhone(UserUpdatePhoneRequest request)
  369. {
  370. request.UserId = _loginContext.AccountId;
  371. var result = await _userRepository.UpdateUserPhoneAsync(request);
  372. if (result == false)
  373. throw new BusinessException("更新失败");
  374. return true;
  375. }
  376. /// <summary>
  377. /// 邮箱验证码
  378. /// </summary>
  379. /// <param name="request"></param>
  380. /// <returns></returns>
  381. [HttpPost("send-email-verify-code")]
  382. public async Task<bool> SendEmailVerifyCode(UserEmailVerifyCodeRequest request)
  383. {
  384. request.UserId = _loginContext.AccountId;
  385. var result = await _userRepository.SendEmailVerifyCodeAsync(request);
  386. if (result == false)
  387. throw new BusinessException("更新失败");
  388. return true;
  389. }
  390. /// <summary>
  391. /// 修改邮箱
  392. /// </summary>
  393. /// <param name="request"></param>
  394. /// <returns></returns>
  395. [HttpPost("update-user-email")]
  396. public async Task<bool> UpdateUserEmail(UserUpdateEmailRequest request)
  397. {
  398. request.UserId = _loginContext.AccountId;
  399. var result = await _userRepository.UpdateUserEmailAsync(request);
  400. if (result == false)
  401. throw new BusinessException("更新失败");
  402. return true;
  403. }
  404. /// <summary>
  405. /// 查询联系人
  406. /// </summary>
  407. /// <param name="request"></param>
  408. /// <returns></returns>
  409. [HttpPost("search")]
  410. public async Task<IEnumerable<UserInfoResult>> SearchUserName(SearchUserNameRequest request)
  411. {
  412. return await _userRepository.SearchUserNameAsync(request);
  413. }
  414. /// <summary>
  415. /// 根据部门ID获取自建ID获取用户列表
  416. /// </summary>
  417. /// <param name="request"></param>
  418. /// <returns></returns>
  419. [HttpPost("find")]
  420. public async Task<IEnumerable<UserInfoResult>> FindUser(FindUserRequest request)
  421. {
  422. request.UserId = _loginContext.AccountId;
  423. return await _userService.FindUser(request);
  424. }
  425. /// <summary>
  426. /// 根据部门ID获取自建ID获取用户列表
  427. /// </summary>
  428. /// <param name="name"></param>
  429. /// <returns></returns>
  430. [HttpGet("find-name")]
  431. public async Task<IEnumerable<UserInfoResult>> FindUserByName([FromQuery] string name)
  432. {
  433. return await _userRepository.UserByNameAsync(name);
  434. }
  435. /// <summary>
  436. /// 根据GUID查询用户
  437. /// </summary>
  438. /// <returns></returns>
  439. [HttpPost("guid")]
  440. public async Task<UserDetail> FindUserByGuid(FindUserByGuidRequest request)
  441. {
  442. var user = await _userRepository.GetGuidAsync(request.Guid);
  443. return user;
  444. }
  445. /// <summary>
  446. /// 获取用户工作模块未读数据
  447. /// </summary>
  448. /// <returns></returns>
  449. [HttpGet("user-uread-count")]
  450. public async Task<UserCountResult> GetUserCountAsync()
  451. {
  452. return await _userService.GetUserCountAsync(_loginContext.AccountId);
  453. }
  454. /// <summary>
  455. /// 根据用户名获取电脑上传的数据
  456. /// </summary>
  457. /// <returns></returns>
  458. [HttpGet("user-file-library")]
  459. public async Task<IEnumerable<FileLibraryResult>> GetFileLibraryByUserIdAsync()
  460. {
  461. return await fileLibraryRepository.GetFileLibraryByUserIdAsync(_loginContext.AccountId);
  462. }
  463. }
  464. }