UserController.cs 18 KB

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