UserController.cs 21 KB

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