UserController.cs 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545
  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. code="123456";
  165. if (Common.Sms.AliySms.SendSms(phone, code))
  166. {
  167. _logger.LogInformation("{phone}验证码:{code}", phone, code);
  168. var codeByte = Encoding.UTF8.GetBytes(Utilities.JsonSerialize(code));
  169. await _cache.SetAsync($"{key}", codeByte, new DistributedCacheEntryOptions
  170. {
  171. AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(60)
  172. });
  173. return true;
  174. }
  175. return false;
  176. }
  177. /// <summary>
  178. /// 更换手机号码验证码发送
  179. /// </summary>
  180. /// <param name="phone"></param>
  181. /// <returns></returns>
  182. [HttpGet("send-sms-code")]
  183. public async Task<bool> SendSmsCodeReplace([FromQuery][Required][Mobile] string phone)
  184. {
  185. var user = await _userRepository.GetByPhoneAsync(phone);
  186. if (user != null)
  187. throw new BusinessException("号码以被使用");
  188. //发送短信
  189. var key = $"login:{phone}";
  190. var code = await _cache.GetStringAsync(key);
  191. if (!string.IsNullOrEmpty(code))
  192. throw new BusinessException("请求太频繁!");
  193. code = RandomGenerator.GetNumberString(6);
  194. if (Common.Sms.AliySms.SendSms(phone, code))
  195. {
  196. _logger.LogInformation("{phone}验证码:{code}", phone, code);
  197. var codeByte = Encoding.UTF8.GetBytes(Utilities.JsonSerialize(code));
  198. await _cache.SetAsync($"{key}", codeByte, new DistributedCacheEntryOptions
  199. {
  200. AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(60)
  201. });
  202. return true;
  203. }
  204. return false;
  205. }
  206. /// <summary>
  207. /// app查询用户详情
  208. /// </summary>
  209. /// <returns></returns>
  210. [HttpGet("detail")]
  211. public async Task<UserDetail> GetDetail()
  212. {
  213. var id = _loginContext.AccountId;
  214. var user = await _userRepository.GetAsync(id);
  215. if (user == null)
  216. throw new BusinessException("用户id有误");
  217. return await _userRepository.GetDetailAsync(id);
  218. }
  219. /// <summary>
  220. /// app查询他人用户详情
  221. /// </summary>
  222. /// <returns></returns>
  223. [HttpGet("detail/{id}")]
  224. public async Task<UserDetail> GetDetail(int id)
  225. {
  226. if (id <= 0)
  227. throw new BusinessException("用户id有误");
  228. return await _userService.GetUserByIdAsync(_loginContext.AccountId, id);
  229. }
  230. /// <summary>
  231. /// app更新用户信息
  232. /// </summary>
  233. /// <param name="request"></param>
  234. /// <returns></returns>
  235. [HttpPut("update")]
  236. public async Task<bool> Update([FromBody] UserInfoRequest request)
  237. {
  238. var id = _loginContext.AccountId;
  239. var result = await _userService.UpdateAsync(id, 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-private-letter")]
  249. public async Task<bool> UpdateUserPrivateLetter()
  250. {
  251. UserPrivateLetterRequest request = new UserPrivateLetterRequest { Id = _loginContext.AccountId };
  252. var result = await _userRepository.UpdateUserPrivateLetterAsync(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-notice")]
  262. public async Task<bool> UpdateUserNotice()
  263. {
  264. var request = new UserNoticeRequest { Id = _loginContext.AccountId };
  265. var result = await _userRepository.UpdateUserNoticeAsync(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-reply")]
  275. public async Task<bool> UpdateUserReply()
  276. {
  277. var request = new UserReplyRequest { Id = _loginContext.AccountId };
  278. var result = await _userRepository.UpdateUserReplyAsync(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-mute")]
  288. public async Task<bool> UpdateUserMute()
  289. {
  290. var request = new UserMuteRequest { Id = _loginContext.AccountId };
  291. var result = await _userRepository.UpdateUserMuteAsync(request);
  292. if (result == false)
  293. throw new BusinessException("更新失败");
  294. return true;
  295. }
  296. /// <summary>
  297. /// 震动
  298. /// </summary>
  299. /// <returns></returns>
  300. [HttpPost("update-user-shake")]
  301. public async Task<bool> UpdateUserShake()
  302. {
  303. var request = new UserShakeRequest { Id = _loginContext.AccountId };
  304. var result = await _userRepository.UpdateUserShakeAsync(request);
  305. if (result == false)
  306. throw new BusinessException("更新失败");
  307. return true;
  308. }
  309. /// <summary>
  310. /// 用户修改手机号码
  311. /// </summary>
  312. /// <param name="request"></param>
  313. /// <returns></returns>
  314. [HttpPost("update-user-phone")]
  315. public async Task<bool> UpdateUserPhone(UserUpdatePhoneRequest request)
  316. {
  317. request.UserId = _loginContext.AccountId;
  318. var result = await _userRepository.UpdateUserPhoneAsync(request);
  319. if (result == false)
  320. throw new BusinessException("更新失败");
  321. return true;
  322. }
  323. /// <summary>
  324. /// 邮箱验证码
  325. /// </summary>
  326. /// <param name="request"></param>
  327. /// <returns></returns>
  328. [HttpPost("send-email-verify-code")]
  329. public async Task<bool> SendEmailVerifyCode(UserEmailVerifyCodeRequest request)
  330. {
  331. request.UserId = _loginContext.AccountId;
  332. var result = await _userRepository.SendEmailVerifyCodeAsync(request);
  333. if (result == false)
  334. throw new BusinessException("更新失败");
  335. return true;
  336. }
  337. /// <summary>
  338. /// 修改邮箱
  339. /// </summary>
  340. /// <param name="request"></param>
  341. /// <returns></returns>
  342. [HttpPost("update-user-email")]
  343. public async Task<bool> UpdateUserEmail(UserUpdateEmailRequest request)
  344. {
  345. request.UserId = _loginContext.AccountId;
  346. var result = await _userRepository.UpdateUserEmailAsync(request);
  347. if (result == false)
  348. throw new BusinessException("更新失败");
  349. return true;
  350. }
  351. /// <summary>
  352. /// 查询联系人
  353. /// </summary>
  354. /// <param name="request"></param>
  355. /// <returns></returns>
  356. [HttpPost("search")]
  357. public async Task<IEnumerable<UserInfoResult>> SearchUserName(SearchUserNameRequest request)
  358. {
  359. return await _userService.GetSearchUserInfoResults(_loginContext.AccountId, request.Key);
  360. }
  361. /// <summary>
  362. /// 根据部门ID获取自建ID获取用户列表
  363. /// </summary>
  364. /// <param name="request"></param>
  365. /// <returns></returns>
  366. [HttpPost("find")]
  367. public async Task<IEnumerable<UserInfoResult>> FindUser(FindUserRequest request)
  368. {
  369. request.UserId = _loginContext.AccountId;
  370. return await _userService.FindUser(request);
  371. }
  372. /// <summary>
  373. /// 根据部门ID获取自建ID获取用户列表
  374. /// </summary>
  375. /// <param name="name"></param>
  376. /// <returns></returns>
  377. [HttpGet("find-name")]
  378. public async Task<IEnumerable<UserInfoResult>> FindUserByName([FromQuery] string name)
  379. {
  380. return await _userRepository.UserByNameAsync(name);
  381. }
  382. /// <summary>
  383. /// 根据GUID查询用户
  384. /// </summary>
  385. /// <returns></returns>
  386. [HttpPost("guid")]
  387. public async Task<UserDetail> FindUserByGuid(FindUserByGuidRequest request)
  388. {
  389. var user = await _userRepository.GetGuidAsync(request.Guid);
  390. return user;
  391. }
  392. /// <summary>
  393. /// 获取用户工作模块未读数据
  394. /// </summary>
  395. /// <returns></returns>
  396. [HttpGet("user-uread-count")]
  397. public async Task<UserCountResult> GetUserCountAsync()
  398. {
  399. return await _userService.GetUserCountAsync(_loginContext.AccountId);
  400. }
  401. /// <summary>
  402. /// 根据用户名获取电脑上传的数据
  403. /// </summary>
  404. /// <returns></returns>
  405. [HttpGet("user-file-library")]
  406. public async Task<IEnumerable<FileLibraryResult>> GetFileLibraryByUserIdAsync()
  407. {
  408. return await fileLibraryRepository.GetFileLibraryByUserIdAsync(_loginContext.AccountId);
  409. }
  410. /// <summary>
  411. /// 获取用户通讯录组
  412. /// </summary>
  413. /// <returns></returns>
  414. [HttpPost("list-group")]
  415. public async Task<AddressBookListResult> GetAddressBookList()
  416. {
  417. var request = new AddressBookListRequest { UserId = _loginContext.AccountId };
  418. return await addressBookGroupRepository.GetAddressBookListAsync(request);
  419. }
  420. /// <summary>
  421. /// 获取自建用户
  422. /// </summary>
  423. /// <param name="request"></param>
  424. /// <returns></returns>
  425. [HttpPost("list")]
  426. public async Task<AddressBookGroupUserListResult> GetAddressBookGroupUserList(
  427. AddressBookGroupUserSearchRequest request)
  428. {
  429. var userId = _loginContext.AccountId;
  430. return await _addressBookGroupUserRepository.GetAddressBookGroupUserListAsync(request, userId);
  431. }
  432. /// <summary>
  433. /// 根据部门ID获取成员以及下级部门
  434. /// </summary>
  435. /// <param name="request"></param>
  436. /// <returns></returns>
  437. [HttpPost("user-list")]
  438. public async Task<DepartmentUserResult> GetDepartmentUserResult(DepartmentUserRequest request)
  439. {
  440. request.UserId = _loginContext.AccountId;
  441. return await departmentService.GetDepartmentUserResultAsync(request);
  442. }
  443. /// <summary>
  444. /// 添加意见反馈
  445. /// </summary>
  446. /// <param name="request"></param>
  447. /// /// <returns></returns>
  448. [HttpPut("add-feedback")]
  449. public async Task<bool> Add([FromBody] FeedbackInRequest request)
  450. {
  451. request.UserId = _loginContext.AccountId;
  452. var feedback = new Feedback
  453. {
  454. UserId = request.UserId,
  455. Content = request.Content,
  456. FeedbackType = request.FeedbackType
  457. };
  458. return await _feedbackRepository.InsertAsync(feedback) > 0;
  459. }
  460. /// <summary>
  461. /// 获取用户的通讯录
  462. /// </summary>
  463. /// <returns></returns>
  464. [HttpGet("user-link")]
  465. public async Task<UserLinkResult> GetUserLinkResultAsync()
  466. {
  467. return await _userService.GetUserLinkResultAsync(_loginContext.AccountId);
  468. }
  469. /// <summary>
  470. /// 查询不是好友的用户
  471. /// </summary>
  472. /// <returns></returns>
  473. [HttpGet("find-friends/{keyword}")]
  474. public async Task<IEnumerable<UserInfoResult>> FindUserInfoNoFriendsResultAsync(string keyword)
  475. {
  476. return await _userService.FindUserInfoNoFriendsResultAsync(_loginContext.AccountId, keyword);
  477. }
  478. /// <summary>
  479. /// 删除我的好友
  480. /// </summary>
  481. /// <returns></returns>
  482. [HttpDelete("friends")]
  483. public async Task<bool> DeleteAsync(IEnumerable<int> friendsIds)
  484. {
  485. return await friendsRepository.DeleteAsync(friendsIds, _loginContext.AccountId);
  486. }
  487. /// <summary>
  488. /// 根据部门ID获取用户
  489. /// </summary>
  490. /// /// <param name="departentId"></param>
  491. /// <returns></returns>
  492. [HttpGet("departent/{departentId}")]
  493. public async Task<IEnumerable<UserInfoResult>> GetUserInfoByDepartentResult(int departentId)
  494. {
  495. return await _userService.GetUserInfoByDepartentResult(departentId);
  496. }
  497. /// <summary>
  498. /// 获取群聊和小组的用户
  499. /// </summary>
  500. /// <param name="request"></param>
  501. /// <returns></returns>
  502. [HttpPost("group-chat")]
  503. public async Task<IEnumerable<UserInfoResult>> GetGroupOrGroupChatUserInfosResult(UserInfoByGroupoRoGroupChatResult request)
  504. {
  505. request.UserId = _loginContext.AccountId;
  506. return await _userService.GetGroupOrGroupChatUserInfosResult(request);
  507. }
  508. /// <summary>
  509. /// 获取用户列表
  510. /// </summary>
  511. /// <param name="userMiddles">来源类型 1:通知收件人 2:通知抄送人 3:站内信收集人 4:站内信抄送人 5:话题 6:笔记共享文件夹 7:收藏共享文件夹 </param>
  512. /// <returns></returns>
  513. [HttpPost("user-middle")]
  514. public async Task<List<UserInfoResult>> FindUsersAsync(UserMiddles userMiddles)
  515. {
  516. var model = await userMiddleService.FindUsersAsync(userMiddles.Item, _loginContext.AccountId);
  517. var result = model.Select(n => _mapper.Map<UserInfoResult>(n)).ToList();
  518. foreach (var item in result)
  519. {
  520. item.TypeId = 0;
  521. item.TypeValue = 0;
  522. }
  523. return result;
  524. }
  525. }
  526. }