UserController.cs 20 KB

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