You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

64 lines
2.1 KiB

using System;
using System.Linq;
using Znyc.Cloudcar.Admin.Commons.Cache;
using Znyc.Cloudcar.Admin.Commons.Json;
using Znyc.Cloudcar.Admin.Security.Dtos;
namespace Znyc.Cloudcar.Admin.AspNetCore.Common
{
/// <summary>
/// 权限控制
/// </summary>
public static class Permission
{
/// <summary>
/// 判断当前用户是否拥有某功能点的权限
/// </summary>
/// <param name="functionCode">功能编码code</param>
/// <param name="userId">用户id</param>
/// <returns></returns>
public static bool HasFunction(string functionCode, int userId)
{
bool hasFunction = false;
if (!string.IsNullOrEmpty(userId.ToString()))
{
if (string.IsNullOrEmpty(functionCode))
{
hasFunction = true;
}
else
{
System.Collections.Generic.List<MenuOutputDto> listFunction = new CacheHelper().Get("User_Function_" + userId).ToJson()
.ToList<MenuOutputDto>();
if (listFunction != null && listFunction.Count(t => t.EnCode == functionCode) > 0)
{
hasFunction = true;
}
}
}
return hasFunction;
}
/// <summary>
/// 判断是否为系统管理员或超级管理员
/// </summary>
/// <returns>true:系统管理员或超级管理员,false:不是系统管理员或超级管理员</returns>
/// <param name="AdminCurrentUser"></param>
/// <returns></returns>
public static bool IsAdmin(AdminCurrentUser AdminCurrentUser)
{
bool blnIsAdmin = false;
if (AdminCurrentUser != null)
{
if (AdminCurrentUser.Account == "admin" ||
AdminCurrentUser.Role.Contains("administrators", StringComparison.Ordinal))
{
return true;
}
}
return blnIsAdmin;
}
}
}