Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
My_csdo
JustAuth
提交
72bb1d82
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看板
提交
72bb1d82
编写于
7月 04, 2020
作者:
智布道
👁
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
🎨
完成 qq 的自定义 scope
上级
a85d9797
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
64 addition
and
2 deletion
+64
-2
src/main/java/me/zhyd/oauth/enums/scope/AuthQqScope.java
src/main/java/me/zhyd/oauth/enums/scope/AuthQqScope.java
+54
-0
src/main/java/me/zhyd/oauth/request/AuthQqRequest.java
src/main/java/me/zhyd/oauth/request/AuthQqRequest.java
+10
-2
未找到文件。
src/main/java/me/zhyd/oauth/enums/scope/AuthQqScope.java
0 → 100644
浏览文件 @
72bb1d82
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
;
/**
* QQ 平台 OAuth 授权范围
*
* @author yadong.zhang (yadong.zhang0415(a)gmail.com)
* @version 1.0.0
* @since 1.0.0
*/
@Getter
@AllArgsConstructor
public
enum
AuthQqScope
implements
AuthScope
{
/**
* {@code scope} 含义,以{@code description} 为准
*/
GET_USER_INFO
(
"get_user_info"
,
"获取登录用户的昵称、头像、性别"
,
true
),
/**
* 以下 scope 需要申请:http://wiki.connect.qq.com/openapi%e6%9d%83%e9%99%90%e7%94%b3%e8%af%b7
*/
GET_VIP_INFO
(
"get_vip_info"
,
"获取QQ会员的基本信息"
,
false
),
GET_VIP_RICH_INFO
(
"get_vip_rich_info"
,
"获取QQ会员的高级信息"
,
false
),
LIST_ALBUM
(
"list_album"
,
"获取用户QQ空间相册列表"
,
false
),
UPLOAD_PIC
(
"upload_pic"
,
"上传一张照片到QQ空间相册"
,
false
),
ADD_ALBUM
(
"add_album"
,
"在用户的空间相册里,创建一个新的个人相册"
,
false
),
LIST_PHOTO
(
"list_photo"
,
"获取用户QQ空间相册中的照片列表"
,
false
);
private
String
scope
;
private
String
description
;
private
boolean
isDefault
;
public
static
List
<
AuthScope
>
getDefaultScopes
()
{
AuthQqScope
[]
scopes
=
AuthQqScope
.
values
();
List
<
AuthScope
>
defaultScopes
=
new
ArrayList
<>();
for
(
AuthQqScope
scope
:
scopes
)
{
if
(
scope
.
isDefault
())
{
defaultScopes
.
add
(
scope
);
}
}
return
defaultScopes
;
}
public
static
List
<
String
>
listScope
()
{
return
Arrays
.
stream
(
AuthQqScope
.
values
()).
map
(
AuthQqScope:
:
getScope
).
collect
(
Collectors
.
toList
());
}
}
src/main/java/me/zhyd/oauth/request/AuthQqRequest.java
浏览文件 @
72bb1d82
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.AuthUserGender
;
import
me.zhyd.oauth.enums.scope.AuthQqScope
;
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.GlobalAuthUtils
;
import
me.zhyd.oauth.utils.HttpUtils
;
import
me.zhyd.oauth.utils.StringUtils
;
import
me.zhyd.oauth.utils.UrlBuilder
;
...
...
@@ -121,8 +122,15 @@ public class AuthQqRequest extends AuthDefaultRequest {
}
return
AuthToken
.
builder
()
.
accessToken
(
accessTokenObject
.
get
(
"access_token"
))
.
expireIn
(
Integer
.
valueOf
(
accessTokenObject
.
get
(
"expires_in
"
)))
.
expireIn
(
Integer
.
parseInt
(
accessTokenObject
.
getOrDefault
(
"expires_in"
,
"0
"
)))
.
refreshToken
(
accessTokenObject
.
get
(
"refresh_token"
))
.
build
();
}
@Override
public
String
authorize
(
String
state
)
{
return
UrlBuilder
.
fromBaseUrl
(
super
.
authorize
(
state
))
.
queryParam
(
"scope"
,
this
.
getScopes
(
","
,
false
,
AuthQqScope
.
getDefaultScopes
()))
.
build
();
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录