fix(系统设置): OAuth2用户禁用问题
--bug=1020043 --user=李玉号 【系统设置】OAuth2禁用失败 https://www.tapd.cn/55049933/s/1302563
This commit is contained in:
parent
321f793310
commit
464e397eeb
|
@ -4,6 +4,7 @@ import com.fasterxml.jackson.core.type.TypeReference;
|
|||
import io.metersphere.base.domain.AuthSource;
|
||||
import io.metersphere.base.domain.User;
|
||||
import io.metersphere.commons.constants.UserSource;
|
||||
import io.metersphere.commons.constants.UserStatus;
|
||||
import io.metersphere.commons.exception.MSException;
|
||||
import io.metersphere.commons.user.SessionUser;
|
||||
import io.metersphere.commons.utils.*;
|
||||
|
@ -307,6 +308,9 @@ public class SSOService {
|
|||
if (!StringUtils.equals(u.getSource(), UserSource.OAuth2.name())) {
|
||||
MSException.throwException("user already exist, user source type is " + u.getSource());
|
||||
}
|
||||
if (StringUtils.equals(u.getStatus(), UserStatus.DISABLED)) {
|
||||
MSException.throwException("user is disabled!");
|
||||
}
|
||||
}
|
||||
|
||||
LoginRequest loginRequest = new LoginRequest();
|
||||
|
|
Loading…
Reference in New Issue