UserController.cs 18 KB

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