Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
My_csdo
JustAuth
提交
cc04c1b6
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看板
提交
cc04c1b6
编写于
7月 03, 2020
作者:
智布道
👁
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
🎨
完成 gitee 的自定义 scope
上级
e02fcf89
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
72 addition
and
0 deletion
+72
-0
src/main/java/me/zhyd/oauth/enums/scope/AuthGiteeScope.java
src/main/java/me/zhyd/oauth/enums/scope/AuthGiteeScope.java
+55
-0
src/main/java/me/zhyd/oauth/request/AuthGiteeRequest.java
src/main/java/me/zhyd/oauth/request/AuthGiteeRequest.java
+17
-0
未找到文件。
src/main/java/me/zhyd/oauth/enums/scope/AuthGiteeScope.java
0 → 100644
浏览文件 @
cc04c1b6
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
;
/**
* Gitee 平台 OAuth 授权范围
*
* @author yadong.zhang (yadong.zhang0415(a)gmail.com)
* @version 1.0.0
* @since 1.0.0
*/
@Getter
@AllArgsConstructor
public
enum
AuthGiteeScope
implements
AuthScope
{
/**
* {@code scope} 含义,以{@code description} 为准
*/
USER_INFO
(
"user_info"
,
"访问用户的个人信息、最新动态等"
,
true
),
PROJECTS
(
"projects"
,
"查看、创建、更新用户的项目"
,
false
),
PULL_REQUESTS
(
"pull_requests"
,
"查看、发布、更新用户的 Pull Request"
,
false
),
ISSUES
(
"issues"
,
"查看、发布、更新用户的 Issue"
,
false
),
NOTES
(
"notes"
,
"查看、发布、管理用户在项目、代码片段中的评论"
,
false
),
KEYS
(
"keys"
,
"查看、部署、删除用户的公钥"
,
false
),
HOOK
(
"hook"
,
"查看、部署、更新用户的 Webhook"
,
false
),
GROUPS
(
"groups"
,
"查看、管理用户的组织以及成员"
,
false
),
GISTS
(
"gists"
,
"查看、删除、更新用户的代码片段"
,
false
),
ENTERPRISES
(
"enterprises"
,
"查看、管理用户的企业以及成员"
,
false
),
EMAILS
(
"emails"
,
"查看用户的个人邮箱信息"
,
false
);
private
String
scope
;
private
String
description
;
private
boolean
isDefault
;
public
static
List
<
AuthScope
>
getDefaultScopes
()
{
AuthGiteeScope
[]
scopes
=
AuthGiteeScope
.
values
();
List
<
AuthScope
>
defaultScopes
=
new
ArrayList
<>();
for
(
AuthGiteeScope
scope
:
scopes
)
{
if
(
scope
.
isDefault
())
{
defaultScopes
.
add
(
scope
);
}
}
return
defaultScopes
;
}
public
static
List
<
String
>
listScope
()
{
return
Arrays
.
stream
(
AuthGiteeScope
.
values
()).
map
(
AuthGiteeScope:
:
getScope
).
collect
(
Collectors
.
toList
());
}
}
src/main/java/me/zhyd/oauth/request/AuthGiteeRequest.java
浏览文件 @
cc04c1b6
...
...
@@ -5,10 +5,13 @@ import me.zhyd.oauth.cache.AuthStateCache;
import
me.zhyd.oauth.config.AuthConfig
;
import
me.zhyd.oauth.config.AuthDefaultSource
;
import
me.zhyd.oauth.enums.AuthUserGender
;
import
me.zhyd.oauth.enums.scope.AuthFacebookScope
;
import
me.zhyd.oauth.enums.scope.AuthGiteeScope
;
import
me.zhyd.oauth.exception.AuthException
;
import
me.zhyd.oauth.model.AuthCallback
;
import
me.zhyd.oauth.model.AuthToken
;
import
me.zhyd.oauth.model.AuthUser
;
import
me.zhyd.oauth.utils.UrlBuilder
;
/**
* Gitee登录
...
...
@@ -72,4 +75,18 @@ public class AuthGiteeRequest extends AuthDefaultRequest {
throw
new
AuthException
(
object
.
getString
(
"error_description"
));
}
}
/**
* 返回带{@code state}参数的授权url,授权回调时会带上这个{@code state}
*
* @param state state 验证授权流程的参数,可以防止csrf
* @return 返回授权地址
*/
@Override
public
String
authorize
(
String
state
)
{
String
authorizeUrl
=
super
.
authorize
(
state
);
return
UrlBuilder
.
fromBaseUrl
(
authorizeUrl
)
.
queryParam
(
"scope"
,
this
.
getScopes
(
" "
,
true
,
AuthGiteeScope
.
getDefaultScopes
()))
.
build
();
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录