UserController.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500
  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.ImId = phone;
  201. // user.Id = await _userRepository.InsertAsync(user);
  202. // if (user.Id > 0 && await _userRepository.CreateMiUserAsync(user))
  203. // {
  204. // }
  205. throw new BusinessException("账号不存在!");
  206. }
  207. //TODO 短信验证码发送
  208. //return await _smsService.
  209. //SendValidationCodeAsync(phone);
  210. //发送短信
  211. var key = $"login:{phone}";
  212. var code = await _cache.GetStringAsync(key);
  213. if (!string.IsNullOrEmpty(code))
  214. throw new BusinessException("请求太频繁!");
  215. code = RandomGenerator.GetNumberString(6);
  216. var isRegisterValue = ConfigHelper.GetValue("ServiceAddress:IsRegister");
  217. if (bool.TryParse(isRegisterValue, out bool isRegister))
  218. {
  219. if (isRegister)
  220. code = "123456";
  221. }
  222. //code = "123456";
  223. if (Common.Sms.MasSms.SendSmsTemplate(phone, code, "8b833ac6dfe54e62821bc6843279e2dd"))
  224. {
  225. _logger.LogInformation("{phone}验证码:{code}", phone, code);
  226. var codeByte = Encoding.UTF8.GetBytes(Utilities.JsonSerialize(code));
  227. await _cache.SetAsync($"{key}", codeByte, new DistributedCacheEntryOptions
  228. {
  229. AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(60)
  230. });
  231. return true;
  232. }
  233. return false;
  234. }
  235. /// <summary>
  236. /// 更换手机号码验证码发送
  237. /// </summary>
  238. /// <param name="phone"></param>
  239. /// <returns></returns>
  240. [HttpGet("send-sms-code")]
  241. public async Task<bool> SendSmsCodeReplace([FromQuery][Required][Mobile] string phone)
  242. {
  243. var user = await _userRepository.GetByPhoneAsync(phone);
  244. if (user != null)
  245. throw new BusinessException("号码以被使用");
  246. //TODO 短信验证码发送
  247. //发送短信
  248. var key = $"login:{phone}";
  249. var code = await _cache.GetStringAsync(key);
  250. if (!string.IsNullOrEmpty(code))
  251. throw new BusinessException("请求太频繁!");
  252. code = RandomGenerator.GetNumberString(6);
  253. var isRegisterValue = ConfigHelper.GetValue("ServiceAddress:IsRegister");
  254. if (bool.TryParse(isRegisterValue, out bool isRegister))
  255. {
  256. if (isRegister)
  257. code = "123456";
  258. }
  259. if (Common.Sms.MasSms.SendSmsTemplate(phone, code, "8b833ac6dfe54e62821bc6843279e2dd"))
  260. {
  261. _logger.LogInformation("{phone}验证码:{code}", phone, code);
  262. var codeByte = Encoding.UTF8.GetBytes(Utilities.JsonSerialize(code));
  263. await _cache.SetAsync($"{key}", codeByte, new DistributedCacheEntryOptions
  264. {
  265. AbsoluteExpirationRelativeToNow = TimeSpan.FromSeconds(60)
  266. });
  267. return true;
  268. }
  269. return false;
  270. }
  271. /// <summary>
  272. /// app查询用户详情
  273. /// </summary>
  274. /// <returns></returns>
  275. [HttpGet("detail")]
  276. public async Task<UserDetail> GetDetail()
  277. {
  278. var id = _loginContext.AccountId;
  279. var user = await _userRepository.GetAsync(id);
  280. if (user == null)
  281. throw new BusinessException("用户id有误");
  282. return await _userRepository.GetDetailAsync(id);
  283. }
  284. /// <summary>
  285. /// app查询他人用户详情
  286. /// </summary>
  287. /// <returns></returns>
  288. [HttpGet("detail/{id}")]
  289. public async Task<UserDetail> GetDetail(int id)
  290. {
  291. if (id <= 0)
  292. throw new BusinessException("用户id有误");
  293. return await _userService.GetUserByIdAsync(_loginContext.AccountId, id);
  294. }
  295. /// <summary>
  296. /// app更新用户信息
  297. /// </summary>
  298. /// <param name="request"></param>
  299. /// <returns></returns>
  300. [HttpPut("update")]
  301. public async Task<bool> Update([FromBody] User request)
  302. {
  303. var id = _loginContext.AccountId;
  304. var result = await _userRepository.UpdateAsync(id, 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-private-letter")]
  314. public async Task<bool> UpdateUserPrivateLetter()
  315. {
  316. UserPrivateLetterRequest request = new UserPrivateLetterRequest { Id = _loginContext.AccountId };
  317. var result = await _userRepository.UpdateUserPrivateLetterAsync(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-notice")]
  327. public async Task<bool> UpdateUserNotice()
  328. {
  329. var request = new UserNoticeRequest { Id = _loginContext.AccountId };
  330. var result = await _userRepository.UpdateUserNoticeAsync(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-reply")]
  340. public async Task<bool> UpdateUserReply()
  341. {
  342. var request = new UserReplyRequest { Id = _loginContext.AccountId };
  343. var result = await _userRepository.UpdateUserReplyAsync(request);
  344. if (result == false)
  345. throw new BusinessException("更新失败");
  346. return true;
  347. }
  348. /// <summary>
  349. /// 静音
  350. /// </summary>
  351. /// <returns></returns>
  352. [HttpPost("update-user-mute")]
  353. public async Task<bool> UpdateUserMute()
  354. {
  355. var request = new UserMuteRequest { Id = _loginContext.AccountId };
  356. var result = await _userRepository.UpdateUserMuteAsync(request);
  357. if (result == false)
  358. throw new BusinessException("更新失败");
  359. return true;
  360. }
  361. /// <summary>
  362. /// 震动
  363. /// </summary>
  364. /// <returns></returns>
  365. [HttpPost("update-user-shake")]
  366. public async Task<bool> UpdateUserShake()
  367. {
  368. var request = new UserShakeRequest { Id = _loginContext.AccountId };
  369. var result = await _userRepository.UpdateUserShakeAsync(request);
  370. if (result == false)
  371. throw new BusinessException("更新失败");
  372. return true;
  373. }
  374. /// <summary>
  375. /// 用户修改手机号码
  376. /// </summary>
  377. /// <param name="request"></param>
  378. /// <returns></returns>
  379. [HttpPost("update-user-phone")]
  380. public async Task<bool> UpdateUserPhone(UserUpdatePhoneRequest request)
  381. {
  382. request.UserId = _loginContext.AccountId;
  383. var result = await _userRepository.UpdateUserPhoneAsync(request);
  384. if (result == false)
  385. throw new BusinessException("更新失败");
  386. return true;
  387. }
  388. /// <summary>
  389. /// 邮箱验证码
  390. /// </summary>
  391. /// <param name="request"></param>
  392. /// <returns></returns>
  393. [HttpPost("send-email-verify-code")]
  394. public async Task<bool> SendEmailVerifyCode(UserEmailVerifyCodeRequest request)
  395. {
  396. request.UserId = _loginContext.AccountId;
  397. var result = await _userRepository.SendEmailVerifyCodeAsync(request);
  398. if (result == false)
  399. throw new BusinessException("更新失败");
  400. return true;
  401. }
  402. /// <summary>
  403. /// 修改邮箱
  404. /// </summary>
  405. /// <param name="request"></param>
  406. /// <returns></returns>
  407. [HttpPost("update-user-email")]
  408. public async Task<bool> UpdateUserEmail(UserUpdateEmailRequest request)
  409. {
  410. request.UserId = _loginContext.AccountId;
  411. var result = await _userRepository.UpdateUserEmailAsync(request);
  412. if (result == false)
  413. throw new BusinessException("更新失败");
  414. return true;
  415. }
  416. /// <summary>
  417. /// 查询联系人
  418. /// </summary>
  419. /// <param name="request"></param>
  420. /// <returns></returns>
  421. [HttpPost("search")]
  422. public async Task<IEnumerable<UserInfoResult>> SearchUserName(SearchUserNameRequest request)
  423. {
  424. return await _userRepository.SearchUserNameAsync(request);
  425. }
  426. /// <summary>
  427. /// 根据部门ID获取自建ID获取用户列表
  428. /// </summary>
  429. /// <param name="request"></param>
  430. /// <returns></returns>
  431. [HttpPost("find")]
  432. public async Task<IEnumerable<UserInfoResult>> FindUser(FindUserRequest request)
  433. {
  434. request.UserId = _loginContext.AccountId;
  435. return await _userService.FindUser(request);
  436. }
  437. /// <summary>
  438. /// 根据部门ID获取自建ID获取用户列表
  439. /// </summary>
  440. /// <param name="name"></param>
  441. /// <returns></returns>
  442. [HttpGet("find-name")]
  443. public async Task<IEnumerable<UserInfoResult>> FindUserByName([FromQuery] string name)
  444. {
  445. return await _userRepository.UserByNameAsync(name);
  446. }
  447. /// <summary>
  448. /// 根据GUID查询用户
  449. /// </summary>
  450. /// <returns></returns>
  451. [HttpPost("guid")]
  452. public async Task<UserDetail> FindUserByGuid(FindUserByGuidRequest request)
  453. {
  454. var user = await _userRepository.GetGuidAsync(request.Guid);
  455. return user;
  456. }
  457. /// <summary>
  458. /// 获取用户工作模块未读数据
  459. /// </summary>
  460. /// <returns></returns>
  461. [HttpGet("user-uread-count")]
  462. public async Task<UserCountResult> GetUserCountAsync()
  463. {
  464. return await _userService.GetUserCountAsync(_loginContext.AccountId);
  465. }
  466. /// <summary>
  467. /// 根据用户名获取电脑上传的数据
  468. /// </summary>
  469. /// <returns></returns>
  470. [HttpGet("user-file-library")]
  471. public async Task<IEnumerable<FileLibraryResult>> GetFileLibraryByUserIdAsync()
  472. {
  473. return await fileLibraryRepository.GetFileLibraryByUserIdAsync(_loginContext.AccountId);
  474. }
  475. }
  476. }