38 lines
1.3 KiB
Java
38 lines
1.3 KiB
Java
package me.zhyd.oauth.request;
|
|
|
|
import me.zhyd.oauth.cache.AuthStateCache;
|
|
import me.zhyd.oauth.config.AuthConfig;
|
|
import me.zhyd.oauth.config.AuthDefaultSource;
|
|
import me.zhyd.oauth.enums.AuthResponseStatus;
|
|
import me.zhyd.oauth.exception.AuthException;
|
|
import me.zhyd.oauth.utils.GlobalAuthUtils;
|
|
|
|
/**
|
|
* 微软登录
|
|
* update 2021-08-24 mroldx (xzfqq5201314@gmail.com)
|
|
*
|
|
* @author yangkai.shen (https://xkcoding.com)
|
|
* @since 1.5.0
|
|
*/
|
|
public class AuthMicrosoftRequest extends AbstractAuthMicrosoftRequest {
|
|
|
|
public AuthMicrosoftRequest(AuthConfig config) {
|
|
super(config, AuthDefaultSource.MICROSOFT);
|
|
}
|
|
|
|
public AuthMicrosoftRequest(AuthConfig config, AuthStateCache authStateCache) {
|
|
super(config, AuthDefaultSource.MICROSOFT, authStateCache);
|
|
}
|
|
|
|
@Override
|
|
protected void checkConfig(AuthConfig config) {
|
|
super.checkConfig(config);
|
|
// 微软的回调地址必须为https的链接或者localhost,不允许使用http
|
|
if (AuthDefaultSource.MICROSOFT == source && !GlobalAuthUtils.isHttpsProtocolOrLocalHost(config.getRedirectUri())) {
|
|
// Microsoft's redirect uri must use the HTTPS or localhost
|
|
throw new AuthException(AuthResponseStatus.ILLEGAL_REDIRECT_URI, source);
|
|
}
|
|
}
|
|
|
|
}
|