UserController.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  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.WebControllers
  28. {
  29. /// <summary>
  30. /// 导航
  31. /// </summary>
  32. [Route("api/web/user")]
  33. [ApiController]
  34. [Authorize]
  35. public class UserController : Controller
  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. new Claim(ClaimTypes.Actor, result.User.Name.ToString())
  77. };
  78. result.Token = TokenHelper.BuildToken(_jwtOptions, claims);
  79. return result;
  80. }
  81. /// <summary>
  82. /// 绑定opendId
  83. /// </summary>
  84. /// <param name="request"></param>
  85. /// <returns></returns>
  86. [HttpPost("set-opend-Id")]
  87. [AllowAnonymous]
  88. public async Task<UserSignInResult> SetOpenId(UserSignInRequest request)
  89. {
  90. var success = await _userRepository.UpdateByOpendIdAsync(request);
  91. if (success)
  92. {
  93. var result = await _userRepository.SignInAsync(request);
  94. var claims = new[]
  95. {
  96. new Claim(ClaimTypes.NameIdentifier, result.UserId.ToString()),
  97. new Claim(ClaimTypes.Role, AccountTypeConst.User.ToString())
  98. };
  99. result.Token = TokenHelper.BuildToken(_jwtOptions, claims);
  100. return result;
  101. }
  102. return new UserSignInResult();
  103. }
  104. /// <summary>
  105. /// 查询opendId是否存在
  106. /// </summary>
  107. /// <param name="opendId"></param>
  108. /// <returns></returns>
  109. [HttpGet("find-opend-Id/{opendId}")]
  110. [AllowAnonymous]
  111. public async Task<bool> FindOpenId(string opendId)
  112. {
  113. var user = await _userRepository.GetByOpenIdAsync(opendId);
  114. if (user == null)
  115. return false;
  116. return true;
  117. }
  118. /// <summary>
  119. /// 登录验证码发送
  120. /// </summary>
  121. /// <param name="phone"></param>
  122. /// <returns></returns>
  123. [HttpGet("sendSmsCode")]
  124. [AllowAnonymous]
  125. public async Task<bool> SendSmsCode([FromQuery][Required][Mobile] string phone)
  126. {
  127. var user = await _userRepository.GetByPhoneAsync(phone);
  128. //用户不存在
  129. if (user == null)
  130. throw new BusinessException("该用户不存在");
  131. //发送短信
  132. var key = $"login:{phone}";
  133. var code = await _cache.GetStringAsync(key);
  134. if (!string.IsNullOrEmpty(code))
  135. throw new BusinessException("请求太频繁!");
  136. code = RandomGenerator.GetNumberString(6);
  137. if (Common.Sms.AliySms.SendSms(phone, code))
  138. {
  139. _logger.LogInformation("{phone}验证码:{code}", phone, code);
  140. var codeByte = Encoding.UTF8.GetBytes(Utilities.JsonSerialize(code));
  141. await _cache.SetAsync($"{key}", codeByte, new DistributedCacheEntryOptions
  142. {
  143. AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(60)
  144. });
  145. return true;
  146. }
  147. return false;
  148. }
  149. /// <summary>
  150. /// 更换手机号码验证码发送
  151. /// </summary>
  152. /// <param name="phone"></param>
  153. /// <returns></returns>
  154. [HttpGet("send-sms-code")]
  155. public async Task<bool> SendSmsCodeReplace([FromQuery][Required][Mobile] string phone)
  156. {
  157. var user = await _userRepository.GetByPhoneAsync(phone);
  158. if (user != null)
  159. throw new BusinessException("号码以被使用");
  160. //发送短信
  161. var key = $"login:{phone}";
  162. var code = await _cache.GetStringAsync(key);
  163. if (!string.IsNullOrEmpty(code))
  164. throw new BusinessException("请求太频繁!");
  165. code = RandomGenerator.GetNumberString(6);
  166. if (Common.Sms.AliySms.SendSms(phone, code))
  167. {
  168. _logger.LogInformation("{phone}验证码:{code}", phone, code);
  169. var codeByte = Encoding.UTF8.GetBytes(Utilities.JsonSerialize(code));
  170. await _cache.SetAsync($"{key}", codeByte, new DistributedCacheEntryOptions
  171. {
  172. AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(60)
  173. });
  174. return true;
  175. }
  176. return false;
  177. }
  178. /// <summary>
  179. /// app查询用户详情
  180. /// </summary>
  181. /// <returns></returns>
  182. [HttpGet("detail")]
  183. public async Task<UserDetail> GetDetail()
  184. {
  185. var id = _loginContext.AccountId;
  186. var user = await _userRepository.GetAsync(id);
  187. if (user == null)
  188. throw new BusinessException("用户id有误");
  189. return await _userRepository.GetDetailAsync(id);
  190. }
  191. /// <summary>
  192. /// app查询他人用户详情
  193. /// </summary>
  194. /// <returns></returns>
  195. [HttpGet("detail/{id}")]
  196. public async Task<UserDetail> GetDetail(int id)
  197. {
  198. if (id <= 0)
  199. throw new BusinessException("用户id有误");
  200. return await _userService.GetUserByIdAsync(_loginContext.AccountId, id);
  201. }
  202. /// <summary>
  203. /// app更新用户信息
  204. /// </summary>
  205. /// <param name="request"></param>
  206. /// <returns></returns>
  207. [HttpPut("update")]
  208. public async Task<bool> Update([FromBody] UserInfoRequest request)
  209. {
  210. var id = _loginContext.AccountId;
  211. var result = await _userRepository.UpdateAsync(id, request);
  212. if (result == false)
  213. throw new BusinessException("更新失败");
  214. return true;
  215. }
  216. /// <summary>
  217. /// 私信
  218. /// </summary>
  219. /// <returns></returns>
  220. [HttpPost("update-user-private-letter")]
  221. public async Task<bool> UpdateUserPrivateLetter()
  222. {
  223. UserPrivateLetterRequest request = new UserPrivateLetterRequest { Id = _loginContext.AccountId };
  224. var result = await _userRepository.UpdateUserPrivateLetterAsync(request);
  225. if (result == false)
  226. throw new BusinessException("更新失败");
  227. return true;
  228. }
  229. /// <summary>
  230. /// 通知
  231. /// </summary>
  232. /// <returns></returns>
  233. [HttpPost("update-user-notice")]
  234. public async Task<bool> UpdateUserNotice()
  235. {
  236. var request = new UserNoticeRequest { Id = _loginContext.AccountId };
  237. var result = await _userRepository.UpdateUserNoticeAsync(request);
  238. if (result == false)
  239. throw new BusinessException("更新失败");
  240. return true;
  241. }
  242. /// <summary>
  243. /// 回复
  244. /// </summary>
  245. /// <returns></returns>
  246. [HttpPost("update-user-reply")]
  247. public async Task<bool> UpdateUserReply()
  248. {
  249. var request = new UserReplyRequest { Id = _loginContext.AccountId };
  250. var result = await _userRepository.UpdateUserReplyAsync(request);
  251. if (result == false)
  252. throw new BusinessException("更新失败");
  253. return true;
  254. }
  255. /// <summary>
  256. /// 静音
  257. /// </summary>
  258. /// <returns></returns>
  259. [HttpPost("update-user-mute")]
  260. public async Task<bool> UpdateUserMute()
  261. {
  262. var request = new UserMuteRequest { Id = _loginContext.AccountId };
  263. var result = await _userRepository.UpdateUserMuteAsync(request);
  264. if (result == false)
  265. throw new BusinessException("更新失败");
  266. return true;
  267. }
  268. /// <summary>
  269. /// 震动
  270. /// </summary>
  271. /// <returns></returns>
  272. [HttpPost("update-user-shake")]
  273. public async Task<bool> UpdateUserShake()
  274. {
  275. var request = new UserShakeRequest { Id = _loginContext.AccountId };
  276. var result = await _userRepository.UpdateUserShakeAsync(request);
  277. if (result == false)
  278. throw new BusinessException("更新失败");
  279. return true;
  280. }
  281. /// <summary>
  282. /// 用户修改手机号码
  283. /// </summary>
  284. /// <param name="request"></param>
  285. /// <returns></returns>
  286. [HttpPost("update-user-phone")]
  287. public async Task<bool> UpdateUserPhone(UserUpdatePhoneRequest request)
  288. {
  289. request.UserId = _loginContext.AccountId;
  290. var result = await _userRepository.UpdateUserPhoneAsync(request);
  291. if (result == false)
  292. throw new BusinessException("更新失败");
  293. return true;
  294. }
  295. /// <summary>
  296. /// 邮箱验证码
  297. /// </summary>
  298. /// <param name="request"></param>
  299. /// <returns></returns>
  300. [HttpPost("send-email-verify-code")]
  301. public async Task<bool> SendEmailVerifyCode(UserEmailVerifyCodeRequest request)
  302. {
  303. request.UserId = _loginContext.AccountId;
  304. var result = await _userRepository.SendEmailVerifyCodeAsync(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-email")]
  315. public async Task<bool> UpdateUserEmail(UserUpdateEmailRequest request)
  316. {
  317. request.UserId = _loginContext.AccountId;
  318. var result = await _userRepository.UpdateUserEmailAsync(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("search")]
  329. public async Task<IEnumerable<UserInfoResult>> SearchUserName(SearchUserNameRequest request)
  330. {
  331. return await _userRepository.SearchUserNameAsync(request);
  332. }
  333. /// <summary>
  334. /// 根据部门ID获取自建ID获取用户列表
  335. /// </summary>
  336. /// <param name="request"></param>
  337. /// <returns></returns>
  338. [HttpPost("find")]
  339. public async Task<IEnumerable<UserInfoResult>> FindUser(FindUserRequest request)
  340. {
  341. request.UserId = _loginContext.AccountId;
  342. return await _userService.FindUser(request);
  343. }
  344. /// <summary>
  345. /// 根据部门ID获取自建ID获取用户列表
  346. /// </summary>
  347. /// <param name="name"></param>
  348. /// <returns></returns>
  349. [HttpGet("find-name")]
  350. public async Task<IEnumerable<UserInfoResult>> FindUserByName([FromQuery] string name)
  351. {
  352. return await _userRepository.UserByNameAsync(name);
  353. }
  354. /// <summary>
  355. /// 根据GUID查询用户
  356. /// </summary>
  357. /// <returns></returns>
  358. [HttpPost("guid")]
  359. public async Task<UserDetail> FindUserByGuid(FindUserByGuidRequest request)
  360. {
  361. var user = await _userRepository.GetGuidAsync(request.Guid);
  362. return user;
  363. }
  364. /// <summary>
  365. /// 获取用户工作模块未读数据
  366. /// </summary>
  367. /// <returns></returns>
  368. [HttpGet("user-uread-count")]
  369. public async Task<UserCountResult> GetUserCountAsync()
  370. {
  371. return await _userService.GetUserCountAsync(_loginContext.AccountId);
  372. }
  373. /// <summary>
  374. /// 根据用户名获取电脑上传的数据
  375. /// </summary>
  376. /// <returns></returns>
  377. [HttpGet("user-file-library")]
  378. public async Task<IEnumerable<FileLibraryResult>> GetFileLibraryByUserIdAsync()
  379. {
  380. return await fileLibraryRepository.GetFileLibraryByUserIdAsync(_loginContext.AccountId);
  381. }
  382. }
  383. }