如果他们的电子邮件地址尚未经过验证,我正在尝试将用户重定向到不同的操作。问题是,我不希望他们被注销,我只想重定向他们。当我在控制器的 OnAuthorization 中执行此操作时,它会按预期重定向,但用户未经过身份验证。我不确定这是为什么。我的代码如下所示:
protected override void OnAuthorization(AuthorizationContext filterContext)
{
base.OnAuthorization(filterContext);
//_applicationService.CurrentUser is populated correctly at this point
// from Controller.User
if (_applicationService.CurrentUser != null)
{
if (_applicationService.CurrentUser.EmailVerified != true)
{
var url = new UrlHelper(filterContext.RequestContext);
var verifyEmailUrl = url.Action("EmailVerificationRequired", "Account", null);
filterContext.Result = new RedirectResult(verifyEmailUrl);
}
}
}
注意:我删除了不必要的代码以使其更清晰。_applicationService.CurrentUser 填充了当前用户 - 并且用户在到达该点时已正确验证。但是在重定向之后,用户不再经过身份验证。
如何在不影响内置用户授权的情况下实现此重定向?
我已经尝试将我的代码放入 OnActionExecuting,并且我也尝试在自定义 ActionFilterAttribute 中实现它,但是无论我把这个重定向放在哪里都会阻止“用户”(即:System.Security.Principal.IPrincipal Controller。用户)从获得身份验证。
我在这里想念什么?希望这是有道理的。非常感谢任何帮助。
响应达林对我的登录操作的请求:
[HttpPost]
[AllowAnonymous]
public ActionResult Login(LoginViewModel model, string returnUrl)
{
string errorMessage = "The username or password is incorrect";
if (ModelState.IsValid)
{
if (_contextExecutor.ExecuteContextForModel<LoginContextModel, bool>(new LoginContextModel(){
LoginViewModel = model
}))
{
ViewBag.CurrentUser = _applicationService.CurrentUser;
_formsAuthenticationService.SetAuthCookie(model.LoginEmailAddress, model.RememberMe);
if (_applicationService.IsLocalUrl(returnUrl))
{
return Redirect(returnUrl);
}
return RedirectToAction("Index", "Home").Success("Thank you for logging in.");
}
else
{
errorMessage = "Email address not found or invalid password.";
}
}
return View(model).Error(errorMessage);
}