TokenHelper.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.IdentityModel.Tokens.Jwt;
  3. using System.Security.Claims;
  4. using System.Text;
  5. using GxPress.Auth;
  6. using GxPress.Result;
  7. using Microsoft.IdentityModel.Tokens;
  8. namespace GxPress.Api.Tools
  9. {
  10. public static class TokenHelper
  11. {
  12. /// <summary>
  13. /// 生成token
  14. /// </summary>
  15. /// <param name="jwtOptions"></param>
  16. /// <param name="claims"></param>
  17. /// <returns></returns>
  18. public static TokenResult BuildToken(JwtOptions jwtOptions, Claim[] claims)
  19. {
  20. var key = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(jwtOptions.Key));
  21. var credentials = new SigningCredentials(key, SecurityAlgorithms.HmacSha256);
  22. var expires = DateTime.Now.Add(jwtOptions.Expires);
  23. var token = new JwtSecurityToken(
  24. jwtOptions.Issuer,
  25. jwtOptions.Audience,
  26. claims,
  27. expires: expires,
  28. signingCredentials: credentials);
  29. var tokenStr = new JwtSecurityTokenHandler().WriteToken(token);
  30. return new TokenResult
  31. {
  32. Type = "Bearer",
  33. Token = tokenStr,
  34. Expires = expires
  35. };
  36. }
  37. }
  38. }