UserController.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475
  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. public UserController(IUserRepository userRepository, IOptions<JwtOptions> jwtOptions,
  46. ILogger<UserController> logger, IDepartmentRepository departmentRepository, ILoginContext loginContext,
  47. IUserService userService, IFileLibraryRepository fileLibraryRepository, IDistributedCache cache)
  48. {
  49. _userRepository = userRepository;
  50. _departmentRepository = departmentRepository;
  51. _userService = userService;
  52. _jwtOptions = jwtOptions.Value;
  53. _logger = logger;
  54. _loginContext = loginContext;
  55. this.fileLibraryRepository = fileLibraryRepository;
  56. _cache = cache;
  57. }
  58. ///// <summary>
  59. ///// 添加
  60. ///// </summary>
  61. ///// <param name="request"></param>
  62. ///// <returns></returns>
  63. //[HttpPost]
  64. //public async Task<User> Add([FromBody] User request)
  65. //{
  66. // request.Id = await _userRepository.InsertAsync(request);
  67. // return request;
  68. //}
  69. /// <summary>
  70. /// 登录
  71. /// </summary>
  72. /// <param name="request"></param>
  73. /// <returns></returns>
  74. [HttpPost("signin")]
  75. [AllowAnonymous]
  76. public async Task<UserSignInResult> SignIn(UserSignInRequest request)
  77. {
  78. var result = await _userRepository.SignInAsync(request);
  79. var claims = new[]
  80. {
  81. new Claim(ClaimTypes.NameIdentifier, result.UserId.ToString()),
  82. new Claim(ClaimTypes.Role, AccountTypeConst.User.ToString()),
  83. new Claim(ClaimTypes.GroupSid,result.DepartmentId.ToString())
  84. };
  85. result.Token = TokenHelper.BuildToken(_jwtOptions, claims);
  86. return result;
  87. }
  88. /// <summary>
  89. /// 绑定opendId
  90. /// </summary>
  91. /// <param name="request"></param>
  92. /// <returns></returns>
  93. [HttpPost("set-opend-Id")]
  94. [AllowAnonymous]
  95. public async Task<UserSignInResult> SetOpenId(UserSignInRequest request)
  96. {
  97. var success = await _userRepository.UpdateByOpendIdAsync(request);
  98. if (success)
  99. {
  100. var result = await _userRepository.SignInAsync(request);
  101. if (result.IsAddUser)
  102. //添加环信
  103. await _userRepository.CreateMiUserAsync(result.UserEntity);
  104. var claims = new[]
  105. {
  106. new Claim(ClaimTypes.NameIdentifier, result.UserId.ToString()),
  107. new Claim(ClaimTypes.Role, AccountTypeConst.User.ToString()),
  108. new Claim(ClaimTypes.GroupSid,result.DepartmentId.ToString())
  109. };
  110. result.Token = TokenHelper.BuildToken(_jwtOptions, claims);
  111. return result;
  112. }
  113. return new UserSignInResult();
  114. }
  115. /// <summary>
  116. /// 查询opendId是否存在
  117. /// </summary>
  118. /// <param name="opendId"></param>
  119. /// <returns></returns>
  120. [HttpGet("find-opend-Id/{opendId}")]
  121. [AllowAnonymous]
  122. public async Task<bool> FindOpenId(string opendId)
  123. {
  124. var user = await _userRepository.GetByOpenIdAsync(opendId);
  125. if (user == null)
  126. return false;
  127. return true;
  128. }
  129. /////// <summary>
  130. /////// 登录验证码发送
  131. /////// </summary>
  132. /////// <param name="phone"></param>
  133. /////// <returns></returns>
  134. ////[HttpGet("sendSmsCode")]
  135. ////[AllowAnonymous]
  136. ////public async Task<bool> SendSmsCode([FromQuery] [Required] [Mobile] string phone)
  137. ////{
  138. //// var user = await _userRepository.GetByPhoneAsync(phone);
  139. //// //用户不存在
  140. //// if (user == null)
  141. //// {
  142. //// throw new BusinessException("该用户不存在");
  143. //// }
  144. //// //TODO 短信验证码发送
  145. //// //return await _smsService.
  146. //// //SendValidationCodeAsync(phone);
  147. //// var key = $"login:{phone}";
  148. //// if (await RedisHelper.ExistsAsync(key)) throw new BusinessException("发送太频繁");
  149. //// var code = RandomGenerator.GetNumberString(6);
  150. //// _logger.LogInformation("{phone}验证码:{code}", phone, code);
  151. //// //发送验证码阿里云
  152. //// IClientProfile profile =
  153. //// DefaultProfile.GetProfile("cn-hangzhou", "LTAI2E47R4DlcYfo", "5epQRUGRrDSoF7yukyYf4HX6dUlvF3");
  154. //// DefaultAcsClient client = new DefaultAcsClient(profile);
  155. //// CommonRequest request = new CommonRequest
  156. //// {
  157. //// Method = MethodType.POST,
  158. //// Domain = "dysmsapi.aliyuncs.com",
  159. //// Version = "2017-05-25",
  160. //// Action = "SendSms"
  161. //// };
  162. //// request.AddQueryParameters("PhoneNumbers", $"{phone}");
  163. //// request.AddQueryParameters("SignName", "泰德合众");
  164. //// request.AddQueryParameters("TemplateCode", "SMS_168126117");
  165. //// request.AddQueryParameters("TemplateParam", "{\"code\":\"" + code + "\"}");
  166. //// try
  167. //// {
  168. //// CommonResponse response = client.GetCommonResponse(request);
  169. //// _logger.LogInformation(Encoding.Default.GetString(response.HttpResponse.Content));
  170. //// }
  171. //// catch (ServerException e)
  172. //// {
  173. //// throw new BusinessException(e.Message);
  174. //// }
  175. //return await RedisHelper.SetAsync(key, code, 300);
  176. ////}
  177. /// <summary>
  178. /// 登录验证码发送
  179. /// </summary>
  180. /// <param name="phone"></param>
  181. /// <returns></returns>
  182. [HttpGet("sendSmsCode")]
  183. [AllowAnonymous]
  184. public async Task<bool> SendSmsCode([FromQuery][Required][Mobile] string phone)
  185. {
  186. var user = await _userRepository.GetByPhoneAsync(phone);
  187. //用户不存在
  188. if (user == null)
  189. {
  190. throw new BusinessException("该用户不存在");
  191. }
  192. //TODO 短信验证码发送
  193. //return await _smsService.
  194. //SendValidationCodeAsync(phone);
  195. //发送短信
  196. var key = $"login:{phone}";
  197. var code = await _cache.GetStringAsync(key);
  198. if (!string.IsNullOrEmpty(code))
  199. throw new BusinessException("请求太频繁!");
  200. code = RandomGenerator.GetNumberString(6);
  201. code = "123456";
  202. if (Common.Sms.AliySms.SendSms(phone, code))
  203. {
  204. _logger.LogInformation("{phone}验证码:{code}", phone, code);
  205. var codeByte = Encoding.UTF8.GetBytes(Utilities.JsonSerialize(code));
  206. await _cache.SetAsync($"{key}", codeByte, new DistributedCacheEntryOptions
  207. {
  208. AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(60)
  209. });
  210. return true;
  211. }
  212. return false;
  213. }
  214. /// <summary>
  215. /// 更换手机号码验证码发送
  216. /// </summary>
  217. /// <param name="phone"></param>
  218. /// <returns></returns>
  219. [HttpGet("send-sms-code")]
  220. public async Task<bool> SendSmsCodeReplace([FromQuery][Required][Mobile] string phone)
  221. {
  222. var user = await _userRepository.GetByPhoneAsync(phone);
  223. if (user != null)
  224. throw new BusinessException("号码以被使用");
  225. //TODO 短信验证码发送
  226. //发送短信
  227. var key = $"login:{phone}";
  228. var code = await _cache.GetStringAsync(key);
  229. if (!string.IsNullOrEmpty(code))
  230. throw new BusinessException("请求太频繁!");
  231. code = RandomGenerator.GetNumberString(6);
  232. code = "123456";
  233. if (Common.Sms.AliySms.SendSms(phone, code))
  234. {
  235. _logger.LogInformation("{phone}验证码:{code}", phone, code);
  236. var codeByte = Encoding.UTF8.GetBytes(Utilities.JsonSerialize(code));
  237. await _cache.SetAsync($"{key}", codeByte, new DistributedCacheEntryOptions
  238. {
  239. AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(60)
  240. });
  241. return true;
  242. }
  243. return false;
  244. }
  245. /// <summary>
  246. /// app查询用户详情
  247. /// </summary>
  248. /// <returns></returns>
  249. [HttpGet("detail")]
  250. public async Task<UserDetail> GetDetail()
  251. {
  252. var id = _loginContext.AccountId;
  253. var user = await _userRepository.GetAsync(id);
  254. if (user == null)
  255. throw new BusinessException("用户id有误");
  256. return await _userRepository.GetDetailAsync(id);
  257. }
  258. /// <summary>
  259. /// app查询他人用户详情
  260. /// </summary>
  261. /// <returns></returns>
  262. [HttpGet("detail/{id}")]
  263. public async Task<UserDetail> GetDetail(int id)
  264. {
  265. if (id <= 0)
  266. throw new BusinessException("用户id有误");
  267. return await _userService.GetUserByIdAsync(_loginContext.AccountId, id);
  268. }
  269. /// <summary>
  270. /// app更新用户信息
  271. /// </summary>
  272. /// <param name="request"></param>
  273. /// <returns></returns>
  274. [HttpPut("update")]
  275. public async Task<bool> Update([FromBody] User request)
  276. {
  277. var id = _loginContext.AccountId;
  278. var result = await _userRepository.UpdateAsync(id, 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-private-letter")]
  288. public async Task<bool> UpdateUserPrivateLetter()
  289. {
  290. UserPrivateLetterRequest request = new UserPrivateLetterRequest { Id = _loginContext.AccountId };
  291. var result = await _userRepository.UpdateUserPrivateLetterAsync(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-notice")]
  301. public async Task<bool> UpdateUserNotice()
  302. {
  303. var request = new UserNoticeRequest { Id = _loginContext.AccountId };
  304. var result = await _userRepository.UpdateUserNoticeAsync(request);
  305. if (result == false)
  306. throw new BusinessException("更新失败");
  307. return true;
  308. }
  309. /// <summary>
  310. /// 回复
  311. /// </summary>
  312. /// <returns></returns>
  313. [HttpPost("update-user-reply")]
  314. public async Task<bool> UpdateUserReply()
  315. {
  316. var request = new UserReplyRequest { Id = _loginContext.AccountId };
  317. var result = await _userRepository.UpdateUserReplyAsync(request);
  318. if (result == false)
  319. throw new BusinessException("更新失败");
  320. return true;
  321. }
  322. /// <summary>
  323. /// 静音
  324. /// </summary>
  325. /// <returns></returns>
  326. [HttpPost("update-user-mute")]
  327. public async Task<bool> UpdateUserMute()
  328. {
  329. var request = new UserMuteRequest { Id = _loginContext.AccountId };
  330. var result = await _userRepository.UpdateUserMuteAsync(request);
  331. if (result == false)
  332. throw new BusinessException("更新失败");
  333. return true;
  334. }
  335. /// <summary>
  336. /// 震动
  337. /// </summary>
  338. /// <returns></returns>
  339. [HttpPost("update-user-shake")]
  340. public async Task<bool> UpdateUserShake()
  341. {
  342. var request = new UserShakeRequest { Id = _loginContext.AccountId };
  343. var result = await _userRepository.UpdateUserShakeAsync(request);
  344. if (result == false)
  345. throw new BusinessException("更新失败");
  346. return true;
  347. }
  348. /// <summary>
  349. /// 用户修改手机号码
  350. /// </summary>
  351. /// <param name="request"></param>
  352. /// <returns></returns>
  353. [HttpPost("update-user-phone")]
  354. public async Task<bool> UpdateUserPhone(UserUpdatePhoneRequest request)
  355. {
  356. request.UserId = _loginContext.AccountId;
  357. var result = await _userRepository.UpdateUserPhoneAsync(request);
  358. if (result == false)
  359. throw new BusinessException("更新失败");
  360. return true;
  361. }
  362. /// <summary>
  363. /// 邮箱验证码
  364. /// </summary>
  365. /// <param name="request"></param>
  366. /// <returns></returns>
  367. [HttpPost("send-email-verify-code")]
  368. public async Task<bool> SendEmailVerifyCode(UserEmailVerifyCodeRequest request)
  369. {
  370. request.UserId = _loginContext.AccountId;
  371. var result = await _userRepository.SendEmailVerifyCodeAsync(request);
  372. if (result == false)
  373. throw new BusinessException("更新失败");
  374. return true;
  375. }
  376. /// <summary>
  377. /// 修改邮箱
  378. /// </summary>
  379. /// <param name="request"></param>
  380. /// <returns></returns>
  381. [HttpPost("update-user-email")]
  382. public async Task<bool> UpdateUserEmail(UserUpdateEmailRequest request)
  383. {
  384. request.UserId = _loginContext.AccountId;
  385. var result = await _userRepository.UpdateUserEmailAsync(request);
  386. if (result == false)
  387. throw new BusinessException("更新失败");
  388. return true;
  389. }
  390. /// <summary>
  391. /// 查询联系人
  392. /// </summary>
  393. /// <param name="request"></param>
  394. /// <returns></returns>
  395. [HttpPost("search")]
  396. public async Task<IEnumerable<UserInfoResult>> SearchUserName(SearchUserNameRequest request)
  397. {
  398. return await _userRepository.SearchUserNameAsync(request);
  399. }
  400. /// <summary>
  401. /// 根据部门ID获取自建ID获取用户列表
  402. /// </summary>
  403. /// <param name="request"></param>
  404. /// <returns></returns>
  405. [HttpPost("find")]
  406. public async Task<IEnumerable<UserInfoResult>> FindUser(FindUserRequest request)
  407. {
  408. request.UserId = _loginContext.AccountId;
  409. return await _userService.FindUser(request);
  410. }
  411. /// <summary>
  412. /// 根据部门ID获取自建ID获取用户列表
  413. /// </summary>
  414. /// <param name="name"></param>
  415. /// <returns></returns>
  416. [HttpGet("find-name")]
  417. public async Task<IEnumerable<UserInfoResult>> FindUserByName([FromQuery] string name)
  418. {
  419. return await _userRepository.UserByNameAsync(name);
  420. }
  421. /// <summary>
  422. /// 根据GUID查询用户
  423. /// </summary>
  424. /// <returns></returns>
  425. [HttpPost("guid")]
  426. public async Task<UserDetail> FindUserByGuid(FindUserByGuidRequest request)
  427. {
  428. var user = await _userRepository.GetGuidAsync(request.Guid);
  429. return user;
  430. }
  431. /// <summary>
  432. /// 获取用户工作模块未读数据
  433. /// </summary>
  434. /// <returns></returns>
  435. [HttpGet("user-uread-count")]
  436. public async Task<UserCountResult> GetUserCountAsync()
  437. {
  438. return await _userService.GetUserCountAsync(_loginContext.AccountId);
  439. }
  440. /// <summary>
  441. /// 根据用户名获取电脑上传的数据
  442. /// </summary>
  443. /// <returns></returns>
  444. [HttpGet("user-file-library")]
  445. public async Task<IEnumerable<FileLibraryResult>> GetFileLibraryByUserIdAsync()
  446. {
  447. return await fileLibraryRepository.GetFileLibraryByUserIdAsync(_loginContext.AccountId);
  448. }
  449. }
  450. }