UserController.cs 17 KB

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