UserController.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  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("signin")]
  64. [AllowAnonymous]
  65. public async Task<UserSignInResult> SignIn(UserSignInRequest request)
  66. {
  67. var result = await _userRepository.SignInAsync(request);
  68. var claims = new[]
  69. {
  70. new Claim(ClaimTypes.NameIdentifier, result.UserId.ToString()),
  71. new Claim(ClaimTypes.Role, AccountTypeConst.User.ToString())
  72. };
  73. result.Token = TokenHelper.BuildToken(_jwtOptions, claims);
  74. return result;
  75. }
  76. /// <summary>
  77. /// 绑定opendId
  78. /// </summary>
  79. /// <param name="request"></param>
  80. /// <returns></returns>
  81. [HttpPost("set-opend-Id")]
  82. [AllowAnonymous]
  83. public async Task<UserSignInResult> SetOpenId(UserSignInRequest request)
  84. {
  85. var success = await _userRepository.UpdateByOpendIdAsync(request);
  86. if (success)
  87. {
  88. var result = await _userRepository.SignInAsync(request);
  89. var claims = new[]
  90. {
  91. new Claim(ClaimTypes.NameIdentifier, result.UserId.ToString()),
  92. new Claim(ClaimTypes.Role, AccountTypeConst.User.ToString())
  93. };
  94. result.Token = TokenHelper.BuildToken(_jwtOptions, claims);
  95. return result;
  96. }
  97. return new UserSignInResult();
  98. }
  99. /// <summary>
  100. /// 查询opendId是否存在
  101. /// </summary>
  102. /// <param name="opendId"></param>
  103. /// <returns></returns>
  104. [HttpGet("find-opend-Id/{opendId}")]
  105. [AllowAnonymous]
  106. public async Task<bool> FindOpenId(string opendId)
  107. {
  108. var user = await _userRepository.GetByOpenIdAsync(opendId);
  109. if (user == null)
  110. return false;
  111. return true;
  112. }
  113. /// <summary>
  114. /// 登录验证码发送
  115. /// </summary>
  116. /// <param name="phone"></param>
  117. /// <returns></returns>
  118. [HttpGet("sendSmsCode")]
  119. [AllowAnonymous]
  120. public async Task<bool> SendSmsCode([FromQuery] [Required] [Mobile] string phone)
  121. {
  122. var user = await _userRepository.GetByPhoneAsync(phone);
  123. //用户不存在
  124. if (user == null)
  125. throw new BusinessException("该用户不存在");
  126. //发送短信
  127. var key = $"login:{phone}";
  128. var code = await _cache.GetStringAsync(key);
  129. if (!string.IsNullOrEmpty(code))
  130. throw new BusinessException("请求太频繁!");
  131. code = RandomGenerator.GetNumberString(6);
  132. if (Common.Sms.AliySms.SendSms(phone, code))
  133. {
  134. _logger.LogInformation("{phone}验证码:{code}", phone, code);
  135. var codeByte = Encoding.UTF8.GetBytes(Utilities.JsonSerialize(code));
  136. await _cache.SetAsync($"{key}", codeByte, new DistributedCacheEntryOptions
  137. {
  138. AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(60)
  139. });
  140. return true;
  141. }
  142. return false;
  143. }
  144. /// <summary>
  145. /// 更换手机号码验证码发送
  146. /// </summary>
  147. /// <param name="phone"></param>
  148. /// <returns></returns>
  149. [HttpGet("send-sms-code")]
  150. public async Task<bool> SendSmsCodeReplace([FromQuery] [Required] [Mobile] string phone)
  151. {
  152. var user = await _userRepository.GetByPhoneAsync(phone);
  153. if (user != null)
  154. throw new BusinessException("号码以被使用");
  155. //发送短信
  156. var key = $"login:{phone}";
  157. var code = await _cache.GetStringAsync(key);
  158. if (!string.IsNullOrEmpty(code))
  159. throw new BusinessException("请求太频繁!");
  160. code = RandomGenerator.GetNumberString(6);
  161. if (Common.Sms.AliySms.SendSms(phone, code))
  162. {
  163. _logger.LogInformation("{phone}验证码:{code}", phone, code);
  164. var codeByte = Encoding.UTF8.GetBytes(Utilities.JsonSerialize(code));
  165. await _cache.SetAsync($"{key}", codeByte, new DistributedCacheEntryOptions
  166. {
  167. AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(60)
  168. });
  169. return true;
  170. }
  171. return false;
  172. }
  173. /// <summary>
  174. /// app查询用户详情
  175. /// </summary>
  176. /// <returns></returns>
  177. [HttpGet("detail")]
  178. public async Task<UserDetail> GetDetail()
  179. {
  180. var id = _loginContext.AccountId;
  181. var user = await _userRepository.GetAsync(id);
  182. if (user == null)
  183. throw new BusinessException("用户id有误");
  184. return await _userRepository.GetDetailAsync(id);
  185. }
  186. /// <summary>
  187. /// app查询他人用户详情
  188. /// </summary>
  189. /// <returns></returns>
  190. [HttpGet("detail/{id}")]
  191. public async Task<UserDetail> GetDetail(int id)
  192. {
  193. if (id <= 0)
  194. throw new BusinessException("用户id有误");
  195. return await _userService.GetUserByIdAsync(_loginContext.AccountId, id);
  196. }
  197. /// <summary>
  198. /// app更新用户信息
  199. /// </summary>
  200. /// <param name="request"></param>
  201. /// <returns></returns>
  202. [HttpPut("update")]
  203. public async Task<bool> Update([FromBody] User request)
  204. {
  205. var id = _loginContext.AccountId;
  206. var result = await _userRepository.UpdateAsync(id, request);
  207. if (result == false)
  208. throw new BusinessException("更新失败");
  209. return true;
  210. }
  211. /// <summary>
  212. /// 私信
  213. /// </summary>
  214. /// <returns></returns>
  215. [HttpPost("update-user-private-letter")]
  216. public async Task<bool> UpdateUserPrivateLetter()
  217. {
  218. UserPrivateLetterRequest request = new UserPrivateLetterRequest { Id = _loginContext.AccountId };
  219. var result = await _userRepository.UpdateUserPrivateLetterAsync(request);
  220. if (result == false)
  221. throw new BusinessException("更新失败");
  222. return true;
  223. }
  224. /// <summary>
  225. /// 通知
  226. /// </summary>
  227. /// <returns></returns>
  228. [HttpPost("update-user-notice")]
  229. public async Task<bool> UpdateUserNotice()
  230. {
  231. var request = new UserNoticeRequest { Id = _loginContext.AccountId };
  232. var result = await _userRepository.UpdateUserNoticeAsync(request);
  233. if (result == false)
  234. throw new BusinessException("更新失败");
  235. return true;
  236. }
  237. /// <summary>
  238. /// 回复
  239. /// </summary>
  240. /// <returns></returns>
  241. [HttpPost("update-user-reply")]
  242. public async Task<bool> UpdateUserReply()
  243. {
  244. var request = new UserReplyRequest { Id = _loginContext.AccountId };
  245. var result = await _userRepository.UpdateUserReplyAsync(request);
  246. if (result == false)
  247. throw new BusinessException("更新失败");
  248. return true;
  249. }
  250. /// <summary>
  251. /// 静音
  252. /// </summary>
  253. /// <returns></returns>
  254. [HttpPost("update-user-mute")]
  255. public async Task<bool> UpdateUserMute()
  256. {
  257. var request = new UserMuteRequest { Id = _loginContext.AccountId };
  258. var result = await _userRepository.UpdateUserMuteAsync(request);
  259. if (result == false)
  260. throw new BusinessException("更新失败");
  261. return true;
  262. }
  263. /// <summary>
  264. /// 震动
  265. /// </summary>
  266. /// <returns></returns>
  267. [HttpPost("update-user-shake")]
  268. public async Task<bool> UpdateUserShake()
  269. {
  270. var request = new UserShakeRequest { Id = _loginContext.AccountId };
  271. var result = await _userRepository.UpdateUserShakeAsync(request);
  272. if (result == false)
  273. throw new BusinessException("更新失败");
  274. return true;
  275. }
  276. /// <summary>
  277. /// 用户修改手机号码
  278. /// </summary>
  279. /// <param name="request"></param>
  280. /// <returns></returns>
  281. [HttpPost("update-user-phone")]
  282. public async Task<bool> UpdateUserPhone(UserUpdatePhoneRequest request)
  283. {
  284. request.UserId = _loginContext.AccountId;
  285. var result = await _userRepository.UpdateUserPhoneAsync(request);
  286. if (result == false)
  287. throw new BusinessException("更新失败");
  288. return true;
  289. }
  290. /// <summary>
  291. /// 邮箱验证码
  292. /// </summary>
  293. /// <param name="request"></param>
  294. /// <returns></returns>
  295. [HttpPost("send-email-verify-code")]
  296. public async Task<bool> SendEmailVerifyCode(UserEmailVerifyCodeRequest request)
  297. {
  298. request.UserId = _loginContext.AccountId;
  299. var result = await _userRepository.SendEmailVerifyCodeAsync(request);
  300. if (result == false)
  301. throw new BusinessException("更新失败");
  302. return true;
  303. }
  304. /// <summary>
  305. /// 修改邮箱
  306. /// </summary>
  307. /// <param name="request"></param>
  308. /// <returns></returns>
  309. [HttpPost("update-user-email")]
  310. public async Task<bool> UpdateUserEmail(UserUpdateEmailRequest request)
  311. {
  312. request.UserId = _loginContext.AccountId;
  313. var result = await _userRepository.UpdateUserEmailAsync(request);
  314. if (result == false)
  315. throw new BusinessException("更新失败");
  316. return true;
  317. }
  318. /// <summary>
  319. /// 查询联系人
  320. /// </summary>
  321. /// <param name="request"></param>
  322. /// <returns></returns>
  323. [HttpPost("search")]
  324. public async Task<IEnumerable<UserInfoResult>> SearchUserName(SearchUserNameRequest request)
  325. {
  326. return await _userRepository.SearchUserNameAsync(request);
  327. }
  328. /// <summary>
  329. /// 根据部门ID获取自建ID获取用户列表
  330. /// </summary>
  331. /// <param name="request"></param>
  332. /// <returns></returns>
  333. [HttpPost("find")]
  334. public async Task<IEnumerable<UserInfoResult>> FindUser(FindUserRequest request)
  335. {
  336. request.UserId = _loginContext.AccountId;
  337. return await _userService.FindUser(request);
  338. }
  339. /// <summary>
  340. /// 根据部门ID获取自建ID获取用户列表
  341. /// </summary>
  342. /// <param name="name"></param>
  343. /// <returns></returns>
  344. [HttpGet("find-name")]
  345. public async Task<IEnumerable<UserInfoResult>> FindUserByName([FromQuery] string name)
  346. {
  347. return await _userRepository.UserByNameAsync(name);
  348. }
  349. /// <summary>
  350. /// 根据GUID查询用户
  351. /// </summary>
  352. /// <returns></returns>
  353. [HttpPost("guid")]
  354. public async Task<UserDetail> FindUserByGuid(FindUserByGuidRequest request)
  355. {
  356. var user = await _userRepository.GetGuidAsync(request.Guid);
  357. return user;
  358. }
  359. /// <summary>
  360. /// 获取用户工作模块未读数据
  361. /// </summary>
  362. /// <returns></returns>
  363. [HttpGet("user-uread-count")]
  364. public async Task<UserCountResult> GetUserCountAsync()
  365. {
  366. return await _userService.GetUserCountAsync(_loginContext.AccountId);
  367. }
  368. /// <summary>
  369. /// 根据用户名获取电脑上传的数据
  370. /// </summary>
  371. /// <returns></returns>
  372. [HttpGet("user-file-library")]
  373. public async Task<IEnumerable<FileLibraryResult>> GetFileLibraryByUserIdAsync()
  374. {
  375. return await fileLibraryRepository.GetFileLibraryByUserIdAsync(_loginContext.AccountId);
  376. }
  377. }
  378. }