UserController.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476
  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.Repository.Interface.Friends;
  17. using GxPress.Request;
  18. using GxPress.Request.App.User;
  19. using GxPress.Request.User;
  20. using GxPress.Request.UserMiddle;
  21. using GxPress.Result.App.FileLibrary;
  22. using GxPress.Result.App.User;
  23. using GxPress.Result.User;
  24. using GxPress.Service.Interface;
  25. using GxPress.Service.Interface.UserMiddle;
  26. using Microsoft.AspNetCore.Authorization;
  27. using Microsoft.AspNetCore.Mvc;
  28. using Microsoft.Extensions.Caching.Distributed;
  29. using Microsoft.Extensions.Logging;
  30. using Microsoft.Extensions.Options;
  31. namespace GxPress.Api.AppControllers
  32. {
  33. /// <summary>
  34. /// 用户
  35. /// </summary>
  36. [Route("/api/app/user")]
  37. [ApiController]
  38. [Authorize]
  39. public class UserController : ControllerBase
  40. {
  41. private readonly JwtOptions _jwtOptions;
  42. private readonly ILogger<UserController> _logger;
  43. private readonly IUserRepository _userRepository;
  44. private readonly IDepartmentRepository _departmentRepository;
  45. private readonly ILoginContext _loginContext;
  46. private readonly IUserService _userService;
  47. private readonly IFileLibraryRepository fileLibraryRepository;
  48. private readonly IDistributedCache _cache;
  49. private readonly IUserLoginRepository userLoginRepository;
  50. private readonly IUserMiddleService userMiddleService;
  51. private readonly IFriendsRepository friendsRepository;
  52. public UserController(IUserRepository userRepository, IOptions<JwtOptions> jwtOptions,
  53. ILogger<UserController> logger, IDepartmentRepository departmentRepository, ILoginContext loginContext,
  54. IUserService userService, IFileLibraryRepository fileLibraryRepository, IDistributedCache cache, IUserLoginRepository userLoginRepository, IUserMiddleService userMiddleService, IFriendsRepository friendsRepository)
  55. {
  56. _userRepository = userRepository;
  57. _departmentRepository = departmentRepository;
  58. _userService = userService;
  59. _jwtOptions = jwtOptions.Value;
  60. _logger = logger;
  61. _loginContext = loginContext;
  62. this.fileLibraryRepository = fileLibraryRepository;
  63. _cache = cache;
  64. this.userLoginRepository = userLoginRepository;
  65. this.userMiddleService = userMiddleService;
  66. this.friendsRepository = friendsRepository;
  67. }
  68. /// <summary>
  69. /// 登录
  70. /// </summary>
  71. /// <param name="request"></param>
  72. /// <returns></returns>
  73. [HttpPost("signin")]
  74. [AllowAnonymous]
  75. public async Task<UserSignInResult> SignIn(UserSignInRequest request)
  76. {
  77. var result = await _userRepository.SignInAsync(request);
  78. //记录登录
  79. await userLoginRepository.InsertAsync(new UserLogin { UserId = result.UserId });
  80. var claims = new[]
  81. {
  82. new Claim(ClaimTypes.NameIdentifier, result.UserId.ToString()),
  83. new Claim(ClaimTypes.Role, AccountTypeConst.User.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. };
  106. result.Token = TokenHelper.BuildToken(_jwtOptions, claims);
  107. return result;
  108. }
  109. return new UserSignInResult();
  110. }
  111. /// <summary>
  112. /// 查询opendId是否存在
  113. /// </summary>
  114. /// <param name="opendId"></param>
  115. /// <returns></returns>
  116. [HttpGet("find-opend-Id/{opendId}")]
  117. [AllowAnonymous]
  118. public async Task<bool> FindOpenId(string opendId)
  119. {
  120. var user = await _userRepository.GetByOpenIdAsync(opendId);
  121. if (user == null)
  122. return false;
  123. return true;
  124. }
  125. /// <summary>
  126. /// 登录验证码发送
  127. /// </summary>
  128. /// <param name="phone"></param>
  129. /// <returns></returns>
  130. [HttpGet("sendSmsCode")]
  131. [AllowAnonymous]
  132. public async Task<bool> SendSmsCode([FromQuery][Required][Mobile] string phone)
  133. {
  134. var user = await _userRepository.GetByPhoneAsync(phone);
  135. //用户不存在
  136. if (user == null)
  137. throw new BusinessException("该用户不存在");
  138. //发送短信
  139. var key = $"login:{phone}";
  140. var code = await _cache.GetStringAsync(key);
  141. if (!string.IsNullOrEmpty(code))
  142. throw new BusinessException("请求太频繁!");
  143. code = RandomGenerator.GetNumberString(6);
  144. code = "123456";
  145. if (Common.Sms.AliySms.SendSms(phone, code))
  146. {
  147. _logger.LogInformation("{phone}验证码:{code}", phone, code);
  148. var codeByte = Encoding.UTF8.GetBytes(Utilities.JsonSerialize(code));
  149. await _cache.SetAsync($"{key}", codeByte, new DistributedCacheEntryOptions
  150. {
  151. AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(60)
  152. });
  153. return true;
  154. }
  155. return false;
  156. }
  157. /// <summary>
  158. /// 更换手机号码验证码发送
  159. /// </summary>
  160. /// <param name="phone"></param>
  161. /// <returns></returns>
  162. [HttpGet("send-sms-code")]
  163. public async Task<bool> SendSmsCodeReplace([FromQuery][Required][Mobile] string phone)
  164. {
  165. var user = await _userRepository.GetByPhoneAsync(phone);
  166. if (user != null)
  167. throw new BusinessException("号码以被使用");
  168. //发送短信
  169. var key = $"login:{phone}";
  170. var code = await _cache.GetStringAsync(key);
  171. if (!string.IsNullOrEmpty(code))
  172. throw new BusinessException("请求太频繁!");
  173. code = RandomGenerator.GetNumberString(6);
  174. if (Common.Sms.AliySms.SendSms(phone, code))
  175. {
  176. _logger.LogInformation("{phone}验证码:{code}", phone, code);
  177. var codeByte = Encoding.UTF8.GetBytes(Utilities.JsonSerialize(code));
  178. await _cache.SetAsync($"{key}", codeByte, new DistributedCacheEntryOptions
  179. {
  180. AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(60)
  181. });
  182. return true;
  183. }
  184. return false;
  185. }
  186. /// <summary>
  187. /// app查询用户详情
  188. /// </summary>
  189. /// <returns></returns>
  190. [HttpGet("detail")]
  191. public async Task<UserDetail> GetDetail()
  192. {
  193. var id = _loginContext.AccountId;
  194. var user = await _userRepository.GetAsync(id);
  195. if (user == null)
  196. throw new BusinessException("用户id有误");
  197. return await _userRepository.GetDetailAsync(id);
  198. }
  199. /// <summary>
  200. /// app查询他人用户详情
  201. /// </summary>
  202. /// <returns></returns>
  203. [HttpGet("detail/{id}")]
  204. public async Task<UserDetail> GetDetail(int id)
  205. {
  206. if (id <= 0)
  207. throw new BusinessException("用户id有误");
  208. return await _userService.GetUserByIdAsync(_loginContext.AccountId, id);
  209. }
  210. /// <summary>
  211. /// app更新用户信息
  212. /// </summary>
  213. /// <param name="request"></param>
  214. /// <returns></returns>
  215. [HttpPut("update")]
  216. public async Task<bool> Update([FromBody] UserInfoRequest request)
  217. {
  218. var id = _loginContext.AccountId;
  219. var result = await _userService.UpdateAsync(id, 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-private-letter")]
  229. public async Task<bool> UpdateUserPrivateLetter()
  230. {
  231. UserPrivateLetterRequest request = new UserPrivateLetterRequest { Id = _loginContext.AccountId };
  232. var result = await _userRepository.UpdateUserPrivateLetterAsync(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-notice")]
  242. public async Task<bool> UpdateUserNotice()
  243. {
  244. var request = new UserNoticeRequest { Id = _loginContext.AccountId };
  245. var result = await _userRepository.UpdateUserNoticeAsync(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-reply")]
  255. public async Task<bool> UpdateUserReply()
  256. {
  257. var request = new UserReplyRequest { Id = _loginContext.AccountId };
  258. var result = await _userRepository.UpdateUserReplyAsync(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-mute")]
  268. public async Task<bool> UpdateUserMute()
  269. {
  270. var request = new UserMuteRequest { Id = _loginContext.AccountId };
  271. var result = await _userRepository.UpdateUserMuteAsync(request);
  272. if (result == false)
  273. throw new BusinessException("更新失败");
  274. return true;
  275. }
  276. /// <summary>
  277. /// 震动
  278. /// </summary>
  279. /// <returns></returns>
  280. [HttpPost("update-user-shake")]
  281. public async Task<bool> UpdateUserShake()
  282. {
  283. var request = new UserShakeRequest { Id = _loginContext.AccountId };
  284. var result = await _userRepository.UpdateUserShakeAsync(request);
  285. if (result == false)
  286. throw new BusinessException("更新失败");
  287. return true;
  288. }
  289. /// <summary>
  290. /// 用户修改手机号码
  291. /// </summary>
  292. /// <param name="request"></param>
  293. /// <returns></returns>
  294. [HttpPost("update-user-phone")]
  295. public async Task<bool> UpdateUserPhone(UserUpdatePhoneRequest request)
  296. {
  297. request.UserId = _loginContext.AccountId;
  298. var result = await _userRepository.UpdateUserPhoneAsync(request);
  299. if (result == false)
  300. throw new BusinessException("更新失败");
  301. return true;
  302. }
  303. /// <summary>
  304. /// 邮箱验证码
  305. /// </summary>
  306. /// <param name="request"></param>
  307. /// <returns></returns>
  308. [HttpPost("send-email-verify-code")]
  309. public async Task<bool> SendEmailVerifyCode(UserEmailVerifyCodeRequest request)
  310. {
  311. request.UserId = _loginContext.AccountId;
  312. var result = await _userRepository.SendEmailVerifyCodeAsync(request);
  313. if (result == false)
  314. throw new BusinessException("更新失败");
  315. return true;
  316. }
  317. /// <summary>
  318. /// 修改邮箱
  319. /// </summary>
  320. /// <param name="request"></param>
  321. /// <returns></returns>
  322. [HttpPost("update-user-email")]
  323. public async Task<bool> UpdateUserEmail(UserUpdateEmailRequest request)
  324. {
  325. request.UserId = _loginContext.AccountId;
  326. var result = await _userRepository.UpdateUserEmailAsync(request);
  327. if (result == false)
  328. throw new BusinessException("更新失败");
  329. return true;
  330. }
  331. /// <summary>
  332. /// 查询联系人
  333. /// </summary>
  334. /// <param name="request"></param>
  335. /// <returns></returns>
  336. [HttpPost("search")]
  337. public async Task<IEnumerable<UserInfoResult>> SearchUserName(SearchUserNameRequest request)
  338. {
  339. return await _userService.GetSearchUserInfoResults(_loginContext.AccountId, request.Key);
  340. }
  341. /// <summary>
  342. /// 根据部门ID获取自建ID获取用户列表
  343. /// </summary>
  344. /// <param name="request"></param>
  345. /// <returns></returns>
  346. [HttpPost("find")]
  347. public async Task<IEnumerable<UserInfoResult>> FindUser(FindUserRequest request)
  348. {
  349. request.UserId = _loginContext.AccountId;
  350. return await _userService.FindUser(request);
  351. }
  352. /// <summary>
  353. /// 根据部门ID获取自建ID获取用户列表
  354. /// </summary>
  355. /// <param name="name"></param>
  356. /// <returns></returns>
  357. [HttpGet("find-name")]
  358. public async Task<IEnumerable<UserInfoResult>> FindUserByName([FromQuery] string name)
  359. {
  360. return await _userRepository.UserByNameAsync(name);
  361. }
  362. /// <summary>
  363. /// 根据GUID查询用户
  364. /// </summary>
  365. /// <returns></returns>
  366. [HttpPost("guid")]
  367. public async Task<UserDetail> FindUserByGuid(FindUserByGuidRequest request)
  368. {
  369. var user = await _userRepository.GetGuidAsync(request.Guid);
  370. return user;
  371. }
  372. /// <summary>
  373. /// 获取用户工作模块未读数据
  374. /// </summary>
  375. /// <returns></returns>
  376. [HttpGet("user-uread-count")]
  377. public async Task<UserCountResult> GetUserCountAsync()
  378. {
  379. return await _userService.GetUserCountAsync(_loginContext.AccountId);
  380. }
  381. /// <summary>
  382. /// 根据用户名获取电脑上传的数据
  383. /// </summary>
  384. /// <returns></returns>
  385. [HttpGet("user-file-library")]
  386. public async Task<IEnumerable<FileLibraryResult>> GetFileLibraryByUserIdAsync()
  387. {
  388. return await fileLibraryRepository.GetFileLibraryByUserIdAsync(_loginContext.AccountId);
  389. }
  390. /// <summary>
  391. /// 获取用户的通讯录
  392. /// </summary>
  393. /// <returns></returns>
  394. [HttpGet("user-link")]
  395. public async Task<UserLinkResult> GetUserLinkResultAsync()
  396. {
  397. return await _userService.GetUserLinkResultAsync(_loginContext.AccountId);
  398. }
  399. /// <summary>
  400. /// 获取用户列表
  401. /// </summary>
  402. /// <param name="userMiddles">来源类型 1:通知收件人 2:通知抄送人 3:站内信收集人 4:站内信抄送人 5:话题 6:笔记共享文件夹 7:收藏共享文件夹 </param>
  403. /// <returns></returns>
  404. [HttpPost("user-middle")]
  405. public async Task<List<Entity.User>> FindUsersAsync(UserMiddles userMiddles)
  406. {
  407. return await userMiddleService.FindUsersAsync(userMiddles.Item, _loginContext.AccountId);
  408. }
  409. /// <summary>
  410. /// 查询不是好友的用户
  411. /// </summary>
  412. /// <returns></returns>
  413. [HttpGet("find-friends/{keyword}")]
  414. public async Task<IEnumerable<UserInfoResult>> FindUserInfoNoFriendsResultAsync(string keyword)
  415. {
  416. return await _userService.FindUserInfoNoFriendsResultAsync(_loginContext.AccountId, keyword);
  417. }
  418. /// <summary>
  419. /// 删除我的好友
  420. /// </summary>
  421. /// <returns></returns>
  422. [HttpDelete("friends")]
  423. public async Task<bool> DeleteAsync(FriendsDeleteRequest request)
  424. {
  425. return await friendsRepository.DeleteAsync(request.UserIds, _loginContext.AccountId);
  426. }
  427. /// <summary>
  428. /// 根据部门ID获取用户
  429. /// </summary>
  430. /// /// <param name="departentId"></param>
  431. /// <returns></returns>
  432. [HttpGet("departent/{departentId}")]
  433. public async Task<IEnumerable<UserInfoResult>> GetUserInfoByDepartentResult(int departentId)
  434. {
  435. return await _userService.GetUserInfoByDepartentResult(departentId);
  436. }
  437. /// <summary>
  438. /// 获取群聊和小组的用户
  439. /// </summary>
  440. /// <param name="request"></param>
  441. /// <returns></returns>
  442. [HttpPost("group-chat")]
  443. public async Task<IEnumerable<UserInfoResult>> GetGroupOrGroupChatUserInfosResult(UserInfoByGroupoRoGroupChatResult request)
  444. {
  445. request.UserId = _loginContext.AccountId;
  446. return await _userService.GetGroupOrGroupChatUserInfosResult(request);
  447. }
  448. /// <summary>
  449. /// 获取好友列表
  450. /// </summary>
  451. /// <param name="userId"></param>
  452. /// <param name="keyWord"></param>
  453. /// <returns></returns>
  454. [HttpGet("friends/{keyWord}")]
  455. public async Task<IEnumerable<UserInfoResult>> GetFriendUserInfoResult(int userId, string keyWord)
  456. {
  457. return await _userService.GetFriendUserInfoResult(_loginContext.AccountId, keyWord);
  458. }
  459. }
  460. }