UserController.cs 19 KB

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