UserController.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470
  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. var claims = new[]
  80. {
  81. new Claim(ClaimTypes.NameIdentifier, result.UserId.ToString()),
  82. new Claim(ClaimTypes.Role, AccountTypeConst.User.ToString())
  83. };
  84. result.Token = TokenHelper.BuildToken(_jwtOptions, claims);
  85. return result;
  86. }
  87. /// <summary>
  88. /// 绑定opendId
  89. /// </summary>
  90. /// <param name="request"></param>
  91. /// <returns></returns>
  92. [HttpPost("set-opend-Id")]
  93. [AllowAnonymous]
  94. public async Task<UserSignInResult> SetOpenId(UserSignInRequest request)
  95. {
  96. var success = await _userRepository.UpdateByOpendIdAsync(request);
  97. if (success)
  98. {
  99. var result = await _userRepository.SignInAsync(request);
  100. var claims = new[]
  101. {
  102. new Claim(ClaimTypes.NameIdentifier, result.UserId.ToString()),
  103. new Claim(ClaimTypes.Role, AccountTypeConst.User.ToString())
  104. };
  105. result.Token = TokenHelper.BuildToken(_jwtOptions, claims);
  106. return result;
  107. }
  108. return new UserSignInResult();
  109. }
  110. /// <summary>
  111. /// 查询opendId是否存在
  112. /// </summary>
  113. /// <param name="opendId"></param>
  114. /// <returns></returns>
  115. [HttpGet("find-opend-Id/{opendId}")]
  116. [AllowAnonymous]
  117. public async Task<bool> FindOpenId(string opendId)
  118. {
  119. var user = await _userRepository.GetByOpenIdAsync(opendId);
  120. if (user == null)
  121. return false;
  122. return true;
  123. }
  124. /////// <summary>
  125. /////// 登录验证码发送
  126. /////// </summary>
  127. /////// <param name="phone"></param>
  128. /////// <returns></returns>
  129. ////[HttpGet("sendSmsCode")]
  130. ////[AllowAnonymous]
  131. ////public async Task<bool> SendSmsCode([FromQuery] [Required] [Mobile] string phone)
  132. ////{
  133. //// var user = await _userRepository.GetByPhoneAsync(phone);
  134. //// //用户不存在
  135. //// if (user == null)
  136. //// {
  137. //// throw new BusinessException("该用户不存在");
  138. //// }
  139. //// //TODO 短信验证码发送
  140. //// //return await _smsService.
  141. //// //SendValidationCodeAsync(phone);
  142. //// var key = $"login:{phone}";
  143. //// if (await RedisHelper.ExistsAsync(key)) throw new BusinessException("发送太频繁");
  144. //// var code = RandomGenerator.GetNumberString(6);
  145. //// _logger.LogInformation("{phone}验证码:{code}", phone, code);
  146. //// //发送验证码阿里云
  147. //// IClientProfile profile =
  148. //// DefaultProfile.GetProfile("cn-hangzhou", "LTAI2E47R4DlcYfo", "5epQRUGRrDSoF7yukyYf4HX6dUlvF3");
  149. //// DefaultAcsClient client = new DefaultAcsClient(profile);
  150. //// CommonRequest request = new CommonRequest
  151. //// {
  152. //// Method = MethodType.POST,
  153. //// Domain = "dysmsapi.aliyuncs.com",
  154. //// Version = "2017-05-25",
  155. //// Action = "SendSms"
  156. //// };
  157. //// request.AddQueryParameters("PhoneNumbers", $"{phone}");
  158. //// request.AddQueryParameters("SignName", "泰德合众");
  159. //// request.AddQueryParameters("TemplateCode", "SMS_168126117");
  160. //// request.AddQueryParameters("TemplateParam", "{\"code\":\"" + code + "\"}");
  161. //// try
  162. //// {
  163. //// CommonResponse response = client.GetCommonResponse(request);
  164. //// _logger.LogInformation(Encoding.Default.GetString(response.HttpResponse.Content));
  165. //// }
  166. //// catch (ServerException e)
  167. //// {
  168. //// throw new BusinessException(e.Message);
  169. //// }
  170. //return await RedisHelper.SetAsync(key, code, 300);
  171. ////}
  172. /// <summary>
  173. /// 登录验证码发送
  174. /// </summary>
  175. /// <param name="phone"></param>
  176. /// <returns></returns>
  177. [HttpGet("sendSmsCode")]
  178. [AllowAnonymous]
  179. public async Task<bool> SendSmsCode([FromQuery][Required][Mobile] string phone)
  180. {
  181. var user = await _userRepository.GetByPhoneAsync(phone);
  182. //用户不存在
  183. if (user == null)
  184. {
  185. throw new BusinessException("该用户不存在");
  186. }
  187. //TODO 短信验证码发送
  188. //return await _smsService.
  189. //SendValidationCodeAsync(phone);
  190. //发送短信
  191. var key = $"login:{phone}";
  192. var code = await _cache.GetStringAsync(key);
  193. if (!string.IsNullOrEmpty(code))
  194. throw new BusinessException("请求太频繁!");
  195. code = RandomGenerator.GetNumberString(6);
  196. code = "123456";
  197. if (Common.Sms.AliySms.SendSms(phone, code))
  198. {
  199. _logger.LogInformation("{phone}验证码:{code}", phone, code);
  200. var codeByte = Encoding.UTF8.GetBytes(Utilities.JsonSerialize(code));
  201. await _cache.SetAsync($"{key}", codeByte, new DistributedCacheEntryOptions
  202. {
  203. AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(60)
  204. });
  205. return true;
  206. }
  207. return false;
  208. }
  209. /// <summary>
  210. /// 更换手机号码验证码发送
  211. /// </summary>
  212. /// <param name="phone"></param>
  213. /// <returns></returns>
  214. [HttpGet("send-sms-code")]
  215. public async Task<bool> SendSmsCodeReplace([FromQuery][Required][Mobile] string phone)
  216. {
  217. var user = await _userRepository.GetByPhoneAsync(phone);
  218. if (user != null)
  219. throw new BusinessException("号码以被使用");
  220. //TODO 短信验证码发送
  221. //发送短信
  222. var key = $"login:{phone}";
  223. var code = await _cache.GetStringAsync(key);
  224. if (!string.IsNullOrEmpty(code))
  225. throw new BusinessException("请求太频繁!");
  226. code = RandomGenerator.GetNumberString(6);
  227. code = "123456";
  228. if (Common.Sms.AliySms.SendSms(phone, code))
  229. {
  230. _logger.LogInformation("{phone}验证码:{code}", phone, code);
  231. var codeByte = Encoding.UTF8.GetBytes(Utilities.JsonSerialize(code));
  232. await _cache.SetAsync($"{key}", codeByte, new DistributedCacheEntryOptions
  233. {
  234. AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(60)
  235. });
  236. return true;
  237. }
  238. return false;
  239. }
  240. /// <summary>
  241. /// app查询用户详情
  242. /// </summary>
  243. /// <returns></returns>
  244. [HttpGet("detail")]
  245. public async Task<UserDetail> GetDetail()
  246. {
  247. var id = _loginContext.AccountId;
  248. var user = await _userRepository.GetAsync(id);
  249. if (user == null)
  250. throw new BusinessException("用户id有误");
  251. return await _userRepository.GetDetailAsync(id);
  252. }
  253. /// <summary>
  254. /// app查询他人用户详情
  255. /// </summary>
  256. /// <returns></returns>
  257. [HttpGet("detail/{id}")]
  258. public async Task<UserDetail> GetDetail(int id)
  259. {
  260. if (id <= 0)
  261. throw new BusinessException("用户id有误");
  262. return await _userService.GetUserByIdAsync(_loginContext.AccountId, id);
  263. }
  264. /// <summary>
  265. /// app更新用户信息
  266. /// </summary>
  267. /// <param name="request"></param>
  268. /// <returns></returns>
  269. [HttpPut("update")]
  270. public async Task<bool> Update([FromBody] User request)
  271. {
  272. var id = _loginContext.AccountId;
  273. var result = await _userRepository.UpdateAsync(id, request);
  274. if (result == false)
  275. throw new BusinessException("更新失败");
  276. return true;
  277. }
  278. /// <summary>
  279. /// 私信
  280. /// </summary>
  281. /// <returns></returns>
  282. [HttpPost("update-user-private-letter")]
  283. public async Task<bool> UpdateUserPrivateLetter()
  284. {
  285. UserPrivateLetterRequest request = new UserPrivateLetterRequest { Id = _loginContext.AccountId };
  286. var result = await _userRepository.UpdateUserPrivateLetterAsync(request);
  287. if (result == false)
  288. throw new BusinessException("更新失败");
  289. return true;
  290. }
  291. /// <summary>
  292. /// 通知
  293. /// </summary>
  294. /// <returns></returns>
  295. [HttpPost("update-user-notice")]
  296. public async Task<bool> UpdateUserNotice()
  297. {
  298. var request = new UserNoticeRequest { Id = _loginContext.AccountId };
  299. var result = await _userRepository.UpdateUserNoticeAsync(request);
  300. if (result == false)
  301. throw new BusinessException("更新失败");
  302. return true;
  303. }
  304. /// <summary>
  305. /// 回复
  306. /// </summary>
  307. /// <returns></returns>
  308. [HttpPost("update-user-reply")]
  309. public async Task<bool> UpdateUserReply()
  310. {
  311. var request = new UserReplyRequest { Id = _loginContext.AccountId };
  312. var result = await _userRepository.UpdateUserReplyAsync(request);
  313. if (result == false)
  314. throw new BusinessException("更新失败");
  315. return true;
  316. }
  317. /// <summary>
  318. /// 静音
  319. /// </summary>
  320. /// <returns></returns>
  321. [HttpPost("update-user-mute")]
  322. public async Task<bool> UpdateUserMute()
  323. {
  324. var request = new UserMuteRequest { Id = _loginContext.AccountId };
  325. var result = await _userRepository.UpdateUserMuteAsync(request);
  326. if (result == false)
  327. throw new BusinessException("更新失败");
  328. return true;
  329. }
  330. /// <summary>
  331. /// 震动
  332. /// </summary>
  333. /// <returns></returns>
  334. [HttpPost("update-user-shake")]
  335. public async Task<bool> UpdateUserShake()
  336. {
  337. var request = new UserShakeRequest { Id = _loginContext.AccountId };
  338. var result = await _userRepository.UpdateUserShakeAsync(request);
  339. if (result == false)
  340. throw new BusinessException("更新失败");
  341. return true;
  342. }
  343. /// <summary>
  344. /// 用户修改手机号码
  345. /// </summary>
  346. /// <param name="request"></param>
  347. /// <returns></returns>
  348. [HttpPost("update-user-phone")]
  349. public async Task<bool> UpdateUserPhone(UserUpdatePhoneRequest request)
  350. {
  351. request.UserId = _loginContext.AccountId;
  352. var result = await _userRepository.UpdateUserPhoneAsync(request);
  353. if (result == false)
  354. throw new BusinessException("更新失败");
  355. return true;
  356. }
  357. /// <summary>
  358. /// 邮箱验证码
  359. /// </summary>
  360. /// <param name="request"></param>
  361. /// <returns></returns>
  362. [HttpPost("send-email-verify-code")]
  363. public async Task<bool> SendEmailVerifyCode(UserEmailVerifyCodeRequest request)
  364. {
  365. request.UserId = _loginContext.AccountId;
  366. var result = await _userRepository.SendEmailVerifyCodeAsync(request);
  367. if (result == false)
  368. throw new BusinessException("更新失败");
  369. return true;
  370. }
  371. /// <summary>
  372. /// 修改邮箱
  373. /// </summary>
  374. /// <param name="request"></param>
  375. /// <returns></returns>
  376. [HttpPost("update-user-email")]
  377. public async Task<bool> UpdateUserEmail(UserUpdateEmailRequest request)
  378. {
  379. request.UserId = _loginContext.AccountId;
  380. var result = await _userRepository.UpdateUserEmailAsync(request);
  381. if (result == false)
  382. throw new BusinessException("更新失败");
  383. return true;
  384. }
  385. /// <summary>
  386. /// 查询联系人
  387. /// </summary>
  388. /// <param name="request"></param>
  389. /// <returns></returns>
  390. [HttpPost("search")]
  391. public async Task<IEnumerable<UserInfoResult>> SearchUserName(SearchUserNameRequest request)
  392. {
  393. return await _userRepository.SearchUserNameAsync(request);
  394. }
  395. /// <summary>
  396. /// 根据部门ID获取自建ID获取用户列表
  397. /// </summary>
  398. /// <param name="request"></param>
  399. /// <returns></returns>
  400. [HttpPost("find")]
  401. public async Task<IEnumerable<UserInfoResult>> FindUser(FindUserRequest request)
  402. {
  403. request.UserId = _loginContext.AccountId;
  404. return await _userService.FindUser(request);
  405. }
  406. /// <summary>
  407. /// 根据部门ID获取自建ID获取用户列表
  408. /// </summary>
  409. /// <param name="name"></param>
  410. /// <returns></returns>
  411. [HttpGet("find-name")]
  412. public async Task<IEnumerable<UserInfoResult>> FindUserByName([FromQuery] string name)
  413. {
  414. return await _userRepository.UserByNameAsync(name);
  415. }
  416. /// <summary>
  417. /// 根据GUID查询用户
  418. /// </summary>
  419. /// <returns></returns>
  420. [HttpPost("guid")]
  421. public async Task<UserDetail> FindUserByGuid(FindUserByGuidRequest request)
  422. {
  423. var user = await _userRepository.GetGuidAsync(request.Guid);
  424. return user;
  425. }
  426. /// <summary>
  427. /// 获取用户工作模块未读数据
  428. /// </summary>
  429. /// <returns></returns>
  430. [HttpGet("user-uread-count")]
  431. public async Task<UserCountResult> GetUserCountAsync()
  432. {
  433. return await _userService.GetUserCountAsync(_loginContext.AccountId);
  434. }
  435. /// <summary>
  436. /// 根据用户名获取电脑上传的数据
  437. /// </summary>
  438. /// <returns></returns>
  439. [HttpGet("user-file-library")]
  440. public async Task<IEnumerable<FileLibraryResult>> GetFileLibraryByUserIdAsync()
  441. {
  442. return await fileLibraryRepository.GetFileLibraryByUserIdAsync(_loginContext.AccountId);
  443. }
  444. }
  445. }