using IdentityModel; using Microsoft.IdentityModel.Tokens; using System; using System.Collections.Generic; using System.IdentityModel.Tokens.Jwt; using System.Security.Claims; using System.Text; using Znyc.Recruitment.Admin.AspNetCore.Common; using Znyc.Recruitment.Admin.AspNetCore.Entitys; using Znyc.Recruitment.Admin.Commons.Core.App; using Znyc.Recruitment.Admin.Commons.Entitys; using Znyc.Recruitment.Admin.Commons.Log; using Znyc.Recruitment.Admin.Commons.Options; using Znyc.Recruitment.Admin.Security.Entitys; using Znyc.Recruitment.Admin.Security.IServices; namespace Znyc.Recruitment.Admin.AspNetCore.Mvc { /// /// Token令牌提供类 /// public class TokenProvider { private readonly JwtOption _jwtModel = App.GetService(); private readonly IRoleService _roleService = App.GetService(); /// /// 构造函数 /// public TokenProvider() { } /// /// 构造函数,初花jwtmodel /// /// public TokenProvider(JwtOption jwtModel) { _jwtModel = jwtModel; } /// /// 直接通过appid和加密字符串获取访问令牌接口 /// /// 获取access_token填写client_credential /// 用户唯一凭证AppId /// 用户唯一凭证密钥,即appsecret /// public TokenResult GenerateToken(string granttype, string appid, string secret) { byte[] keyByteArray = Encoding.UTF8.GetBytes(secret); SymmetricSecurityKey signingKey = new SymmetricSecurityKey(keyByteArray); DateTime expires = DateTime.UtcNow.Add(TimeSpan.FromMinutes(_jwtModel.Expiration)); SigningCredentials signingCredentials = new SigningCredentials(signingKey, SecurityAlgorithms.HmacSha256); SecurityTokenDescriptor tokenDescripor = new SecurityTokenDescriptor { Subject = new ClaimsIdentity(new[] { new(JwtClaimTypes.Audience, appid), new Claim(JwtClaimTypes.Issuer, _jwtModel.Issuer), new Claim(JwtClaimTypes.Subject, GrantType.ClientCredentials) }, granttype), Expires = expires, //对称秘钥SymmetricSecurityKey //签名证书(秘钥,加密算法)SecurityAlgorithms SigningCredentials = new SigningCredentials(new SymmetricSecurityKey(keyByteArray), SecurityAlgorithms.HmacSha256Signature) }; JwtSecurityTokenHandler tokenHandler = new JwtSecurityTokenHandler(); SecurityToken token = tokenHandler.CreateToken(tokenDescripor); string tokenString = tokenHandler.WriteToken(token); TokenResult result = new TokenResult { AccessToken = tokenString, ExpiresIn = (int)TimeSpan.FromMinutes(_jwtModel.Expiration).TotalMinutes }; return result; } /// /// 检查用户的Token有效性 /// /// token令牌 /// public CommonResult ValidateToken(string token) { //返回的结果对象 CommonResult result = new CommonResult(); if (!string.IsNullOrEmpty(token)) { try { JwtSecurityToken jwtToken = new JwtSecurityTokenHandler().ReadJwtToken(token); if (jwtToken != null) { #region 检查令牌对象内容 DateTime now = DateTime.UtcNow; DateTime refreshTime = jwtToken.ValidFrom; refreshTime = refreshTime.Add(TimeSpan.FromMinutes(_jwtModel.refreshJwtTime)); if (now > refreshTime && jwtToken.Issuer == _jwtModel.Issuer) { result.ErrMsg = ErrCode.err40005; result.ErrCode = "40005"; } else { if (jwtToken.Subject == GrantType.Password) { List claimlist = jwtToken?.Payload.Claims as List; result.ResData = claimlist; } result.ErrMsg = ErrCode.err0; result.ErrCode = ErrCode.successCode; } #endregion 检查令牌对象内容 } else { result.ErrMsg = ErrCode.err40004; result.ErrCode = "40004"; } } catch (Exception ex) { Log4NetHelper.Error("验证token异常", ex); throw new MyApiException(ErrCode.err40004, "40004"); } } else { result.ErrMsg = ErrCode.err40004; result.ErrCode = "40004"; } return result; } /// /// 根据用户获取token /// /// 用户信息 /// 应用Id /// public TokenResult LoginToken(AdminUserEntity userInfo, string appid) { JwtSecurityTokenHandler tokenHandler = new JwtSecurityTokenHandler(); byte[] key = Encoding.UTF8.GetBytes(_jwtModel.Secret); DateTime authTime = DateTime.UtcNow; //授权时间 DateTime expires = authTime.Add(TimeSpan.FromMinutes(_jwtModel.Expiration)); //过期时间 SecurityTokenDescriptor tokenDescripor = new SecurityTokenDescriptor { Subject = new ClaimsIdentity(new[] { new(JwtClaimTypes.Audience, appid), new Claim(JwtClaimTypes.Issuer, _jwtModel.Issuer), new Claim(JwtClaimTypes.Name, userInfo.Account), new Claim(JwtClaimTypes.Id, userInfo.Id.ToString()), new Claim(JwtClaimTypes.Role, _roleService.GetRoleEnCode(userInfo.RoleId.ToString())), new Claim(JwtClaimTypes.Subject, GrantType.Password) }), Expires = expires, //对称秘钥SymmetricSecurityKey //签名证书(秘钥,加密算法)SecurityAlgorithms SigningCredentials = new SigningCredentials(new SymmetricSecurityKey(key), SecurityAlgorithms.HmacSha256Signature) }; SecurityToken token = tokenHandler.CreateToken(tokenDescripor); string tokenString = tokenHandler.WriteToken(token); TokenResult result = new TokenResult { AccessToken = tokenString, ExpiresIn = (int)TimeSpan.FromMinutes(_jwtModel.Expiration).TotalMinutes }; return result; } /// /// 根据登录用户获取token /// /// 用户信息 /// 应用Id /// public TokenResult GetUserToken(AdminUserEntity userInfo, string appid) { JwtSecurityTokenHandler tokenHandler = new JwtSecurityTokenHandler(); byte[] key = Encoding.UTF8.GetBytes(_jwtModel.Secret); DateTime authTime = DateTime.UtcNow; //授权时间 DateTime expires = authTime.Add(TimeSpan.FromMinutes(_jwtModel.Expiration)); //过期时间 SecurityTokenDescriptor tokenDescripor = new SecurityTokenDescriptor { Subject = new ClaimsIdentity(new[] { new(JwtClaimTypes.Audience, appid), new Claim(JwtClaimTypes.Issuer, _jwtModel.Issuer), new Claim(JwtClaimTypes.Name, userInfo.Account), new Claim(JwtClaimTypes.Id, userInfo.Id.ToString()), new Claim(JwtClaimTypes.Role, userInfo.RoleId.ToString()), new Claim(JwtClaimTypes.Subject, GrantType.Password) }), Expires = expires, //对称秘钥SymmetricSecurityKey //签名证书(秘钥,加密算法)SecurityAlgorithms SigningCredentials = new SigningCredentials(new SymmetricSecurityKey(key), SecurityAlgorithms.HmacSha256Signature) }; SecurityToken token = tokenHandler.CreateToken(tokenDescripor); string tokenString = tokenHandler.WriteToken(token); TokenResult result = new TokenResult { AccessToken = tokenString, ExpiresIn = (int)TimeSpan.FromMinutes(_jwtModel.Expiration).TotalMinutes }; return result; } } }