Password encryption, Claim groups
This commit is contained in:
38
FoodsharingSiegen.Contracts/Helper/EntityExtensions.cs
Normal file
38
FoodsharingSiegen.Contracts/Helper/EntityExtensions.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
using FoodsharingSiegen.Contracts.Entity;
|
||||
|
||||
namespace FoodsharingSiegen.Contracts.Helper
|
||||
{
|
||||
/// <summary>
|
||||
/// The entity extensions class (a. beging, 08.04.2022)
|
||||
/// </summary>
|
||||
public static class EntityExtensions
|
||||
{
|
||||
#region Public Method IsAdmin
|
||||
|
||||
/// <summary>
|
||||
/// Describes whether is admin
|
||||
/// </summary>
|
||||
/// <param name="user">The user</param>
|
||||
/// <returns>The bool</returns>
|
||||
public static bool IsAdmin(this User user) => user.Type == UserType.Admin;
|
||||
|
||||
#endregion
|
||||
|
||||
#region Public Method IsInGroup
|
||||
|
||||
/// <summary>
|
||||
/// Describes whether is in group
|
||||
/// </summary>
|
||||
/// <param name="user">The user</param>
|
||||
/// <param name="groups">The groups</param>
|
||||
/// <returns>The bool</returns>
|
||||
public static bool IsInGroup(this User user, params UserGroup[] groups)
|
||||
{
|
||||
if (user.Type == UserType.Admin) return true;
|
||||
if (groups.Any(x => user.GroupsList.Contains(x))) return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user