Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
My_csdo
JustAuth
提交
d787ba73
J
JustAuth
项目概览
My_csdo
/
JustAuth
与 Fork 源项目一致
Fork自
justauth / JustAuth
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
J
JustAuth
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
d787ba73
编写于
7月 03, 2020
作者:
智布道
👁
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
🎨
完成酷家乐的自定义 scope
上级
2d52e010
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
53 addition
and
23 deletion
+53
-23
src/main/java/me/zhyd/oauth/enums/scope/AuthKujialeScope.java
...main/java/me/zhyd/oauth/enums/scope/AuthKujialeScope.java
+47
-0
src/main/java/me/zhyd/oauth/request/AuthKujialeRequest.java
src/main/java/me/zhyd/oauth/request/AuthKujialeRequest.java
+6
-23
未找到文件。
src/main/java/me/zhyd/oauth/enums/scope/AuthKujialeScope.java
0 → 100644
浏览文件 @
d787ba73
package
me.zhyd.oauth.enums.scope
;
import
lombok.AllArgsConstructor
;
import
lombok.Getter
;
import
java.util.ArrayList
;
import
java.util.Arrays
;
import
java.util.List
;
import
java.util.stream.Collectors
;
/**
* 酷家乐平台 OAuth 授权范围
*
* @author yadong.zhang (yadong.zhang0415(a)gmail.com)
* @version 1.0.0
* @since 1.0.0
*/
@Getter
@AllArgsConstructor
public
enum
AuthKujialeScope
implements
AuthScope
{
/**
* {@code scope} 含义,以{@code description} 为准
*/
GET_USER_INFO
(
"get_user_info"
,
"获取用户的基本信息"
,
true
),
GET_DESIGN
(
"get_design"
,
"获取指定方案详情"
,
false
),
GET_BUDGET_LIST
(
"get_budget_list"
,
"获取清单预算概览数据"
,
false
);
private
String
scope
;
private
String
description
;
private
boolean
isDefault
;
public
static
List
<
AuthScope
>
getDefaultScopes
()
{
AuthKujialeScope
[]
scopes
=
AuthKujialeScope
.
values
();
List
<
AuthScope
>
defaultScopes
=
new
ArrayList
<>();
for
(
AuthKujialeScope
scope
:
scopes
)
{
if
(
scope
.
isDefault
())
{
defaultScopes
.
add
(
scope
);
}
}
return
defaultScopes
;
}
public
static
List
<
String
>
listScope
()
{
return
Arrays
.
stream
(
AuthKujialeScope
.
values
()).
map
(
AuthKujialeScope:
:
getScope
).
collect
(
Collectors
.
toList
());
}
}
src/main/java/me/zhyd/oauth/request/AuthKujialeRequest.java
浏览文件 @
d787ba73
package
me.zhyd.oauth.request
;
import
com.alibaba.fastjson.JSONObject
;
import
me.zhyd.oauth.utils.HttpUtils
;
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.enums.scope.AuthKujialeScope
;
import
me.zhyd.oauth.exception.AuthException
;
import
me.zhyd.oauth.model.AuthCallback
;
import
me.zhyd.oauth.model.AuthResponse
;
import
me.zhyd.oauth.model.AuthToken
;
import
me.zhyd.oauth.model.AuthUser
;
import
me.zhyd.oauth.utils.
String
Utils
;
import
me.zhyd.oauth.utils.
Http
Utils
;
import
me.zhyd.oauth.utils.UrlBuilder
;
/**
...
...
@@ -40,27 +40,10 @@ public class AuthKujialeRequest extends AuthDefaultRequest {
*/
@Override
public
String
authorize
(
String
state
)
{
return
authorize
(
state
,
"get_user_info"
);
}
/**
* 请求授权url
*
* @param state state 验证授权流程的参数,可以防止csrf
* @param scopeStr 请求用户授权时向用户显示的可进行授权的列表。如果要填写多个接口名称,请用逗号隔开
* 参考https://open.kujiale.com/open/apps/2/docs?doc_id=95#Step1%EF%BC%9A%E8%8E%B7%E5%8F%96Authorization%20Code参数表内的scope字段
* @return authorize url
*/
public
String
authorize
(
String
state
,
String
scopeStr
)
{
UrlBuilder
urlBuilder
=
UrlBuilder
.
fromBaseUrl
(
source
.
authorize
())
.
queryParam
(
"response_type"
,
"code"
)
.
queryParam
(
"client_id"
,
config
.
getClientId
())
.
queryParam
(
"redirect_uri"
,
config
.
getRedirectUri
())
.
queryParam
(
"state"
,
getRealState
(
state
));
if
(
StringUtils
.
isNotEmpty
(
scopeStr
))
{
urlBuilder
.
queryParam
(
"scope"
,
scopeStr
);
}
return
urlBuilder
.
build
();
String
authorizeUrl
=
super
.
authorize
(
state
);
return
UrlBuilder
.
fromBaseUrl
(
authorizeUrl
)
.
queryParam
(
"scope"
,
this
.
getScopes
(
","
,
false
,
AuthKujialeScope
.
getDefaultScopes
()))
.
build
();
}
@Override
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录