narsil/Tanshu.Accounts.Repository/Lifetime/Session.cs

52 lines
1.4 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Tanshu.Accounts.Contracts;
using System.Configuration;
using Tanshu.Accounts.Entities.Auth;
using Tanshu.Accounts.Repository;
namespace Tanshu.Accounts.Contracts
{
public static class Session
{
private static Dictionary<string, bool> _roles;
private static User _currentUser;
public static bool IsAuthenticated { get; private set; }
public static User User
{
get
{
return _currentUser;
}
set
{
if (value != null)
{
_currentUser = value;
IsAuthenticated = true;
}
else
{
_currentUser = null;
IsAuthenticated = false;
_roles = null;
}
}
}
public static bool IsAllowed(RoleConstants role)
{
if (_currentUser == null)
return false;
if (_roles == null)
_roles = new Dictionary<string, bool>();
if (!_roles.ContainsKey(role.Role))
_roles.Add(role.Role, MembershipBI.IsUserInRole(_currentUser.UserID, role.Role));
return _roles[role.Role];
}
}
}