我需要永久阻止用户。我不明白为什么这段代码不起作用。
此行UserManager.IsLockedOut(user.Id);
始终返回false
而不是true
。
是否有必要将此行UserManager.UserLockoutEnabledByDefault = true;
置于用户注册阶段?
using (var _db = new ApplicationDbContext())
{
UserStore<DALApplicationUser> UserStore = new UserStore<DALApplicationUser>(_db);
UserManager<DALApplicationUser> UserManager = new UserManager<DALApplicationUser>(UserStore);
UserManager.UserLockoutEnabledByDefault = true;
DALApplicationUser user = _userService.GetUserByProfileId(id);
bool a = UserManager.IsLockedOut(user.Id);
UserManager.SetLockoutEnabled(user.Id, true);
a = UserManager.IsLockedOut(user.Id);
_db.SaveChanges();
}
答案 0 :(得分:17)
该行
UserManager.SetLockoutEnabled(user.Id, true);
未锁定或解锁帐户。此方法用于永久启用或禁用锁定给定用户帐户的进程。就目前而言,您正在进行的呼叫基本上是将此用户帐户设置为受帐户锁定规则的约束。使用第二个参数调用false
即:
UserManager.SetLockoutEnabled(user.Id, false);
允许您设置一个免于锁定规则的用户帐户 - 这可能对管理员帐户有用。
以下是UserManager.IsLockedOutAsync
的代码:
/// <summary>
/// Returns true if the user is locked out
/// </summary>
/// <param name="userId"></param>
/// <returns></returns>
public virtual async Task<bool> IsLockedOutAsync(TKey userId)
{
ThrowIfDisposed();
var store = GetUserLockoutStore();
var user = await FindByIdAsync(userId).WithCurrentCulture();
if (user == null)
{
throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, Resources.UserIdNotFound,
userId));
}
if (!await store.GetLockoutEnabledAsync(user).WithCurrentCulture())
{
return false;
}
var lockoutTime = await store.GetLockoutEndDateAsync(user).WithCurrentCulture();
return lockoutTime >= DateTimeOffset.UtcNow;
}
如您所见,对于被归类为已锁定的用户,必须按上述方式启用锁定,并且用户必须具有大于或等于当前日期的LockoutEndDateUtc
值。
所以,永久地&#34;锁定帐户,您可以执行以下操作:
using (var _db = new ApplicationDbContext())
{
UserStore<DALApplicationUser> UserStore = new UserStore<DALApplicationUser>(_db);
UserManager<DALApplicationUser> UserManager = new UserManager<DALApplicationUser>(UserStore);
UserManager.UserLockoutEnabledByDefault = true;
DALApplicationUser user = _userService.GetUserByProfileId(id);
bool a = UserManager.IsLockedOut(user.Id);
//user.LockoutEndDateUtc = DateTime.MaxValue; //.NET 4.5+
user.LockoutEndDateUtc = new DateTime(9999, 12, 30);
_db.SaveChanges();
a = UserManager.IsLockedOut(user.Id);
}
答案 1 :(得分:9)
功能SetLockoutEnabled
不会锁定用户,为用户启用锁定功能
你需要
UserManager.DefaultAccountLockoutTimeSpan = TimeSpan.FromHours(1); // lockout for 1 hour
UserManager.MaxFailedAccessAttemptsBeforeLockout = 5; // max fail attemps
await UserManager.AccessFailedAsync(user.Id); // Register failed access
它将记录失败,并在启用锁定并达到失败计数时锁定用户。
答案 2 :(得分:7)
在Login操作中将shouldLockout值设置为true(默认情况下为false)
// To enable password failures to trigger account lockout, change to shouldLockout: true
var result = await SignInManager.PasswordSignInAsync(vm.Email, vm.Password, vm.RememberMe, shouldLockout: true);