|
@@ -0,0 +1,63 @@
|
|
|
+/*
|
|
|
+ * Copyright (c) 2018-2025, lengleng All rights reserved.
|
|
|
+ *
|
|
|
+ * Redistribution and use in source and binary forms, with or without
|
|
|
+ * modification, are permitted provided that the following conditions are met:
|
|
|
+ *
|
|
|
+ * Redistributions of source code must retain the above copyright notice,
|
|
|
+ * this list of conditions and the following disclaimer.
|
|
|
+ * Redistributions in binary form must reproduce the above copyright
|
|
|
+ * notice, this list of conditions and the following disclaimer in the
|
|
|
+ * documentation and/or other materials provided with the distribution.
|
|
|
+ * Neither the name of the pig4cloud.com developer nor the names of its
|
|
|
+ * contributors may be used to endorse or promote products derived from
|
|
|
+ * this software without specific prior written permission.
|
|
|
+ * Author: lengleng (wangiegie@gmail.com)
|
|
|
+ */
|
|
|
+
|
|
|
+package com.pig4cloud.pigx.common.security.component;
|
|
|
+
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+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;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author lengleng
|
|
|
+ * @date 2019-01-02
|
|
|
+ */
|
|
|
+@Slf4j
|
|
|
+public class PigxPreAuthenticationChecks implements UserDetailsChecker {
|
|
|
+ private MessageSourceAccessor messages = SpringSecurityMessageSource.getAccessor();
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void check(UserDetails user) {
|
|
|
+ if (!user.isAccountNonLocked()) {
|
|
|
+ log.debug("User account is locked");
|
|
|
+
|
|
|
+ throw new LockedException(messages.getMessage(
|
|
|
+ "AbstractUserDetailsAuthenticationProvider.locked",
|
|
|
+ "User account is locked"));
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!user.isEnabled()) {
|
|
|
+ log.debug("User account is disabled");
|
|
|
+
|
|
|
+ throw new DisabledException(messages.getMessage(
|
|
|
+ "AbstractUserDetailsAuthenticationProvider.disabled",
|
|
|
+ "User is disabled"));
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!user.isAccountNonExpired()) {
|
|
|
+ log.debug("User account is expired");
|
|
|
+
|
|
|
+ throw new AccountExpiredException(messages.getMessage(
|
|
|
+ "AbstractUserDetailsAuthenticationProvider.expired",
|
|
|
+ "User account has expired"));
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|