mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 17:43:26 +08:00
添加项目文件。
This commit is contained in:
75
CoreCms.Net.Auth/HttpContextUser/AspNetUser.cs
Normal file
75
CoreCms.Net.Auth/HttpContextUser/AspNetUser.cs
Normal file
@@ -0,0 +1,75 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IdentityModel.Tokens.Jwt;
|
||||
using System.Linq;
|
||||
using System.Security.Claims;
|
||||
using CoreCms.Net.Utility.Extensions;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
|
||||
namespace CoreCms.Net.Auth.HttpContextUser
|
||||
{
|
||||
public class AspNetUser : IHttpContextUser
|
||||
{
|
||||
private readonly IHttpContextAccessor _accessor;
|
||||
|
||||
public AspNetUser(IHttpContextAccessor accessor)
|
||||
{
|
||||
_accessor = accessor;
|
||||
}
|
||||
|
||||
public string Name => _accessor.HttpContext.User.Identity.Name;
|
||||
public int ID => GetClaimValueByType("jti").FirstOrDefault().ObjectToInt();
|
||||
|
||||
public bool IsAuthenticated()
|
||||
{
|
||||
return _accessor.HttpContext.User.Identity.IsAuthenticated;
|
||||
}
|
||||
|
||||
public string GetToken()
|
||||
{
|
||||
return _accessor.HttpContext.Request.Headers["Authorization"].ObjectToString().Replace("Bearer ", "");
|
||||
}
|
||||
|
||||
public List<string> GetUserInfoFromToken(string ClaimType)
|
||||
{
|
||||
|
||||
var jwtHandler = new JwtSecurityTokenHandler();
|
||||
if (!string.IsNullOrEmpty(GetToken()))
|
||||
{
|
||||
JwtSecurityToken jwtToken = jwtHandler.ReadJwtToken(GetToken());
|
||||
|
||||
return (from item in jwtToken.Claims
|
||||
where item.Type == ClaimType
|
||||
select item.Value).ToList();
|
||||
}
|
||||
else
|
||||
{
|
||||
return new List<string>() { };
|
||||
}
|
||||
}
|
||||
|
||||
public IEnumerable<Claim> GetClaimsIdentity()
|
||||
{
|
||||
return _accessor.HttpContext.User.Claims;
|
||||
}
|
||||
|
||||
public List<string> GetClaimValueByType(string ClaimType)
|
||||
{
|
||||
|
||||
return (from item in GetClaimsIdentity()
|
||||
where item.Type == ClaimType
|
||||
select item.Value).ToList();
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user