_logger.LogInformation("Authentication request for {UserName} has been denied because this account is currently disabled (IP: {IP}).",username,remoteEndPoint);
thrownewAuthenticationException(
string.Format(
CultureInfo.InvariantCulture,
"The {0} account is currently disabled. Please consult with your administrator.",
user.Name));
thrownewSecurityException($"The {user.Name} account is currently disabled. Please consult with your administrator.");
_logger.LogInformation("Authentication request for {UserName} forbidden: remote access disabled and user not in local network (IP: {IP}).",username,remoteEndPoint);
thrownewAuthenticationException("Forbidden.");
thrownewSecurityException("Forbidden.");
}
if(!user.IsParentalScheduleAllowed())
{
_logger.LogInformation("Authentication request for {UserName} is not allowed at this time due parental restrictions (IP: {IP}).",username,remoteEndPoint);
thrownewAuthenticationException("User is not allowed access at this time.");
thrownewSecurityException("User is not allowed access at this time.");
}
// Update LastActivityDate and LastLoginDate, then save
/// Initializes a new instance of the <see cref="AuthenticationException"/> class.
/// </summary>
/// <param name="message">The message that describes the error.</param>
/// <param name="innerException">The exception that is the cause of the current exception, or a null reference if no inner exception is specified.</param>
/// Initializes a new instance of the <see cref="SecurityException"/> class.
/// </summary>
/// <param name="message">The message that describes the error</param>
/// <param name="innerException">The exception that is the cause of the current exception, or a null reference if no inner exception is specified.</param>