UserController.cs 19 KB

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