grails.plugin.springsecurity.userdetails.DefaultPreAuthenticationChecks.groovy Maven / Gradle / Ivy
/* Copyright 2011-2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package grails.plugin.springsecurity.userdetails
import groovy.util.logging.Slf4j
import org.slf4j.Logger
import org.slf4j.LoggerFactory
import org.springframework.context.MessageSource
import org.springframework.context.MessageSourceAware
import org.springframework.context.support.MessageSourceAccessor
import org.springframework.security.authentication.AccountExpiredException
import org.springframework.security.authentication.DisabledException
import org.springframework.security.authentication.LockedException
import org.springframework.security.core.SpringSecurityMessageSource
import org.springframework.security.core.userdetails.UserDetails
import org.springframework.security.core.userdetails.UserDetailsChecker
import groovy.transform.CompileStatic
/**
* Copy of the private class in AbstractUserDetailsAuthenticationProvider
* to make subclassing or replacement easier.
*
* @author Burt Beckwith
*/
@Slf4j
@CompileStatic
class DefaultPreAuthenticationChecks implements UserDetailsChecker, MessageSourceAware {
protected MessageSourceAccessor messages = SpringSecurityMessageSource.accessor
@Override
void setMessageSource(MessageSource messageSource) {
this.messages = new MessageSourceAccessor(messageSource)
}
void check(UserDetails user) {
if (!user.accountNonLocked) {
log.debug 'User account is locked'
throw new LockedException(messages.getMessage('AbstractUserDetailsAuthenticationProvider.locked',
'User account is locked'))
}
if (!user.enabled) {
log.debug('User account is disabled')
throw new DisabledException(messages.getMessage('AbstractUserDetailsAuthenticationProvider.disabled',
'User is disabled'))
}
if (!user.accountNonExpired) {
log.debug('User account is expired')
throw new AccountExpiredException(messages.getMessage('AbstractUserDetailsAuthenticationProvider.expired',
'User account has expired'))
}
}
}