UserController.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  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.Request.App.User;
  17. using GxPress.Request.User;
  18. using GxPress.Result.App.FileLibrary;
  19. using GxPress.Result.App.User;
  20. using GxPress.Result.User;
  21. using GxPress.Service.Interface;
  22. using Microsoft.AspNetCore.Authorization;
  23. using Microsoft.AspNetCore.Mvc;
  24. using Microsoft.Extensions.Caching.Distributed;
  25. using Microsoft.Extensions.Logging;
  26. using Microsoft.Extensions.Options;
  27. namespace GxPress.Api.AppControllers
  28. {
  29. /// <summary>
  30. /// 用户
  31. /// </summary>
  32. [Route("/api/app/user")]
  33. [ApiController]
  34. [Authorize]
  35. public class UserController : ControllerBase
  36. {
  37. private readonly JwtOptions _jwtOptions;
  38. private readonly ILogger<UserController> _logger;
  39. private readonly IUserRepository _userRepository;
  40. private readonly IDepartmentRepository _departmentRepository;
  41. private readonly ILoginContext _loginContext;
  42. private readonly IUserService _userService;
  43. private readonly IFileLibraryRepository fileLibraryRepository;
  44. private readonly IDistributedCache _cache;
  45. private readonly IUserLoginRepository userLoginRepository;
  46. public UserController(IUserRepository userRepository, IOptions<JwtOptions> jwtOptions,
  47. ILogger<UserController> logger, IDepartmentRepository departmentRepository, ILoginContext loginContext,
  48. IUserService userService, IFileLibraryRepository fileLibraryRepository, IDistributedCache cache, IUserLoginRepository userLoginRepository)
  49. {
  50. _userRepository = userRepository;
  51. _departmentRepository = departmentRepository;
  52. _userService = userService;
  53. _jwtOptions = jwtOptions.Value;
  54. _logger = logger;
  55. _loginContext = loginContext;
  56. this.fileLibraryRepository = fileLibraryRepository;
  57. _cache = cache;
  58. this.userLoginRepository = userLoginRepository;
  59. }
  60. /// <summary>
  61. /// 登录
  62. /// </summary>
  63. /// <param name="request"></param>
  64. /// <returns></returns>
  65. [HttpPost("signin")]
  66. [AllowAnonymous]
  67. public async Task<UserSignInResult> SignIn(UserSignInRequest request)
  68. {
  69. var result = await _userRepository.SignInAsync(request);
  70. //记录登录
  71. await userLoginRepository.InsertAsync(new UserLogin { UserId = result.UserId });
  72. var claims = new[]
  73. {
  74. new Claim(ClaimTypes.NameIdentifier, result.UserId.ToString()),
  75. new Claim(ClaimTypes.Role, AccountTypeConst.User.ToString())
  76. };
  77. result.Token = TokenHelper.BuildToken(_jwtOptions, claims);
  78. return result;
  79. }
  80. /// <summary>
  81. /// 绑定opendId
  82. /// </summary>
  83. /// <param name="request"></param>
  84. /// <returns></returns>
  85. [HttpPost("set-opend-Id")]
  86. [AllowAnonymous]
  87. public async Task<UserSignInResult> SetOpenId(UserSignInRequest request)
  88. {
  89. var success = await _userRepository.UpdateByOpendIdAsync(request);
  90. if (success)
  91. {
  92. var result = await _userRepository.SignInAsync(request);
  93. var claims = new[]
  94. {
  95. new Claim(ClaimTypes.NameIdentifier, result.UserId.ToString()),
  96. new Claim(ClaimTypes.Role, AccountTypeConst.User.ToString())
  97. };
  98. result.Token = TokenHelper.BuildToken(_jwtOptions, claims);
  99. return result;
  100. }
  101. return new UserSignInResult();
  102. }
  103. /// <summary>
  104. /// 查询opendId是否存在
  105. /// </summary>
  106. /// <param name="opendId"></param>
  107. /// <returns></returns>
  108. [HttpGet("find-opend-Id/{opendId}")]
  109. [AllowAnonymous]
  110. public async Task<bool> FindOpenId(string opendId)
  111. {
  112. var user = await _userRepository.GetByOpenIdAsync(opendId);
  113. if (user == null)
  114. return false;
  115. return true;
  116. }
  117. /// <summary>
  118. /// 登录验证码发送
  119. /// </summary>
  120. /// <param name="phone"></param>
  121. /// <returns></returns>
  122. [HttpGet("sendSmsCode")]
  123. [AllowAnonymous]
  124. public async Task<bool> SendSmsCode([FromQuery][Required][Mobile] string phone)
  125. {
  126. var user = await _userRepository.GetByPhoneAsync(phone);
  127. //用户不存在
  128. if (user == null)
  129. throw new BusinessException("该用户不存在");
  130. //发送短信
  131. var key = $"login:{phone}";
  132. var code = await _cache.GetStringAsync(key);
  133. if (!string.IsNullOrEmpty(code))
  134. throw new BusinessException("请求太频繁!");
  135. code = RandomGenerator.GetNumberString(6);
  136. if (Common.Sms.AliySms.SendSms(phone, code))
  137. {
  138. _logger.LogInformation("{phone}验证码:{code}", phone, code);
  139. var codeByte = Encoding.UTF8.GetBytes(Utilities.JsonSerialize(code));
  140. await _cache.SetAsync($"{key}", codeByte, new DistributedCacheEntryOptions
  141. {
  142. AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(60)
  143. });
  144. return true;
  145. }
  146. return false;
  147. }
  148. /// <summary>
  149. /// 更换手机号码验证码发送
  150. /// </summary>
  151. /// <param name="phone"></param>
  152. /// <returns></returns>
  153. [HttpGet("send-sms-code")]
  154. public async Task<bool> SendSmsCodeReplace([FromQuery][Required][Mobile] string phone)
  155. {
  156. var user = await _userRepository.GetByPhoneAsync(phone);
  157. if (user != null)
  158. throw new BusinessException("号码以被使用");
  159. //发送短信
  160. var key = $"login:{phone}";
  161. var code = await _cache.GetStringAsync(key);
  162. if (!string.IsNullOrEmpty(code))
  163. throw new BusinessException("请求太频繁!");
  164. code = RandomGenerator.GetNumberString(6);
  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. /// app查询用户详情
  179. /// </summary>
  180. /// <returns></returns>
  181. [HttpGet("detail")]
  182. public async Task<UserDetail> GetDetail()
  183. {
  184. var id = _loginContext.AccountId;
  185. var user = await _userRepository.GetAsync(id);
  186. if (user == null)
  187. throw new BusinessException("用户id有误");
  188. return await _userRepository.GetDetailAsync(id);
  189. }
  190. /// <summary>
  191. /// app查询他人用户详情
  192. /// </summary>
  193. /// <returns></returns>
  194. [HttpGet("detail/{id}")]
  195. public async Task<UserDetail> GetDetail(int id)
  196. {
  197. if (id <= 0)
  198. throw new BusinessException("用户id有误");
  199. return await _userService.GetUserByIdAsync(_loginContext.AccountId, id);
  200. }
  201. /// <summary>
  202. /// app更新用户信息
  203. /// </summary>
  204. /// <param name="request"></param>
  205. /// <returns></returns>
  206. [HttpPut("update")]
  207. public async Task<bool> Update([FromBody] UserInfoRequest request)
  208. {
  209. var id = _loginContext.AccountId;
  210. var result = await _userRepository.UpdateAsync(id, request);
  211. if (result == false)
  212. throw new BusinessException("更新失败");
  213. return true;
  214. }
  215. /// <summary>
  216. /// 私信
  217. /// </summary>
  218. /// <returns></returns>
  219. [HttpPost("update-user-private-letter")]
  220. public async Task<bool> UpdateUserPrivateLetter()
  221. {
  222. UserPrivateLetterRequest request = new UserPrivateLetterRequest { Id = _loginContext.AccountId };
  223. var result = await _userRepository.UpdateUserPrivateLetterAsync(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-notice")]
  233. public async Task<bool> UpdateUserNotice()
  234. {
  235. var request = new UserNoticeRequest { Id = _loginContext.AccountId };
  236. var result = await _userRepository.UpdateUserNoticeAsync(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-reply")]
  246. public async Task<bool> UpdateUserReply()
  247. {
  248. var request = new UserReplyRequest { Id = _loginContext.AccountId };
  249. var result = await _userRepository.UpdateUserReplyAsync(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-mute")]
  259. public async Task<bool> UpdateUserMute()
  260. {
  261. var request = new UserMuteRequest { Id = _loginContext.AccountId };
  262. var result = await _userRepository.UpdateUserMuteAsync(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-shake")]
  272. public async Task<bool> UpdateUserShake()
  273. {
  274. var request = new UserShakeRequest { Id = _loginContext.AccountId };
  275. var result = await _userRepository.UpdateUserShakeAsync(request);
  276. if (result == false)
  277. throw new BusinessException("更新失败");
  278. return true;
  279. }
  280. /// <summary>
  281. /// 用户修改手机号码
  282. /// </summary>
  283. /// <param name="request"></param>
  284. /// <returns></returns>
  285. [HttpPost("update-user-phone")]
  286. public async Task<bool> UpdateUserPhone(UserUpdatePhoneRequest request)
  287. {
  288. request.UserId = _loginContext.AccountId;
  289. var result = await _userRepository.UpdateUserPhoneAsync(request);
  290. if (result == false)
  291. throw new BusinessException("更新失败");
  292. return true;
  293. }
  294. /// <summary>
  295. /// 邮箱验证码
  296. /// </summary>
  297. /// <param name="request"></param>
  298. /// <returns></returns>
  299. [HttpPost("send-email-verify-code")]
  300. public async Task<bool> SendEmailVerifyCode(UserEmailVerifyCodeRequest request)
  301. {
  302. request.UserId = _loginContext.AccountId;
  303. var result = await _userRepository.SendEmailVerifyCodeAsync(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-email")]
  314. public async Task<bool> UpdateUserEmail(UserUpdateEmailRequest request)
  315. {
  316. request.UserId = _loginContext.AccountId;
  317. var result = await _userRepository.UpdateUserEmailAsync(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("search")]
  328. public async Task<IEnumerable<UserInfoResult>> SearchUserName(SearchUserNameRequest request)
  329. {
  330. return await _userRepository.SearchUserNameAsync(request);
  331. }
  332. /// <summary>
  333. /// 根据部门ID获取自建ID获取用户列表
  334. /// </summary>
  335. /// <param name="request"></param>
  336. /// <returns></returns>
  337. [HttpPost("find")]
  338. public async Task<IEnumerable<UserInfoResult>> FindUser(FindUserRequest request)
  339. {
  340. request.UserId = _loginContext.AccountId;
  341. return await _userService.FindUser(request);
  342. }
  343. /// <summary>
  344. /// 根据部门ID获取自建ID获取用户列表
  345. /// </summary>
  346. /// <param name="name"></param>
  347. /// <returns></returns>
  348. [HttpGet("find-name")]
  349. public async Task<IEnumerable<UserInfoResult>> FindUserByName([FromQuery] string name)
  350. {
  351. return await _userRepository.UserByNameAsync(name);
  352. }
  353. /// <summary>
  354. /// 根据GUID查询用户
  355. /// </summary>
  356. /// <returns></returns>
  357. [HttpPost("guid")]
  358. public async Task<UserDetail> FindUserByGuid(FindUserByGuidRequest request)
  359. {
  360. var user = await _userRepository.GetGuidAsync(request.Guid);
  361. return user;
  362. }
  363. /// <summary>
  364. /// 获取用户工作模块未读数据
  365. /// </summary>
  366. /// <returns></returns>
  367. [HttpGet("user-uread-count")]
  368. public async Task<UserCountResult> GetUserCountAsync()
  369. {
  370. return await _userService.GetUserCountAsync(_loginContext.AccountId);
  371. }
  372. /// <summary>
  373. /// 根据用户名获取电脑上传的数据
  374. /// </summary>
  375. /// <returns></returns>
  376. [HttpGet("user-file-library")]
  377. public async Task<IEnumerable<FileLibraryResult>> GetFileLibraryByUserIdAsync()
  378. {
  379. return await fileLibraryRepository.GetFileLibraryByUserIdAsync(_loginContext.AccountId);
  380. }
  381. /// <summary>
  382. /// 获取用户的通讯录
  383. /// </summary>
  384. /// <returns></returns>
  385. [HttpGet("user-link")]
  386. public async Task<UserLinkResult> GetUserLinkResultAsync(){
  387. return await _userService.GetUserLinkResultAsync(_loginContext.AccountId);
  388. }
  389. }
  390. }