-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
51 changes: 51 additions & 0 deletions
51
src/main/java/me/zhyd/oauth/request/AuthWeChatEnterpriseQrcodeV2Request.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
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; | ||
import me.zhyd.oauth.utils.StringUtils; | ||
import me.zhyd.oauth.utils.UrlBuilder; | ||
|
||
/** | ||
* <p> | ||
* 新版企业微信 Web 登录,参考 <a href="https://developer.work.weixin.qq.com/document/path/98152">https://developer.work.weixin.qq.com/document/path/98152</a> | ||
* </p> | ||
* | ||
* @author yadong.zhang (yadong.zhang0415(a)gmail.com) | ||
* @since 1.16.7 | ||
*/ | ||
public class AuthWeChatEnterpriseQrcodeV2Request extends AbstractAuthWeChatEnterpriseRequest { | ||
public AuthWeChatEnterpriseQrcodeV2Request(AuthConfig config) { | ||
super(config, AuthDefaultSource.WECHAT_ENTERPRISE_V2); | ||
} | ||
|
||
public AuthWeChatEnterpriseQrcodeV2Request(AuthConfig config, AuthStateCache authStateCache) { | ||
super(config, AuthDefaultSource.WECHAT_ENTERPRISE_V2, authStateCache); | ||
} | ||
|
||
@Override | ||
public String authorize(String state) { | ||
return UrlBuilder.fromBaseUrl(source.authorize()) | ||
.queryParam("login_type", config.getLoginType()) | ||
// 登录类型为企业自建应用/服务商代开发应用时填企业 CorpID,第三方登录时填登录授权 SuiteID | ||
.queryParam("appid", config.getClientId()) | ||
// 企业自建应用/服务商代开发应用 AgentID,当login_type=CorpApp时填写 | ||
.queryParam("agentid", config.getAgentId()) | ||
.queryParam("redirect_uri", GlobalAuthUtils.urlEncode(config.getRedirectUri())) | ||
.queryParam("state", getRealState(state)) | ||
.queryParam("lang", config.getLang()) | ||
.build() | ||
.concat("#wechat_redirect"); | ||
} | ||
|
||
@Override | ||
protected void checkConfig(AuthConfig config) { | ||
super.checkConfig(config); | ||
if ("CorpApp".equals(config.getLoginType()) && StringUtils.isEmpty(config.getAgentId())) { | ||
throw new AuthException(AuthResponseStatus.ILLEGAL_WECHAT_AGENT_ID, source); | ||
} | ||
} | ||
} |