Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
S
sso
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
曲欣亮
sso
Commits
53ab7f56
Commit
53ab7f56
authored
Jul 24, 2019
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
parent
886e8e16
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
OAuthApi.java
src/main/java/com/egolm/sso/api/OAuthApi.java
+5
-5
No files found.
src/main/java/com/egolm/sso/api/OAuthApi.java
View file @
53ab7f56
...
@@ -36,7 +36,7 @@ public interface OAuthApi {
...
@@ -36,7 +36,7 @@ public interface OAuthApi {
return
token
!=
null
;
return
token
!=
null
;
}
}
default
void
sendOAuthLoginRedirect
()
{
default
void
toLogin
()
{
try
{
try
{
HttpServletResponse
response
=
this
.
getHttpServletResponse
();
HttpServletResponse
response
=
this
.
getHttpServletResponse
();
OAuthConfig
config
=
this
.
getOAuthConfig
();
OAuthConfig
config
=
this
.
getOAuthConfig
();
...
@@ -51,7 +51,7 @@ public interface OAuthApi {
...
@@ -51,7 +51,7 @@ public interface OAuthApi {
}
}
}
}
default
OAuthToken
doLogin
()
{
default
void
doLogin
()
{
try
{
try
{
HttpServletRequest
request
=
this
.
getHttpServletRequest
();
HttpServletRequest
request
=
this
.
getHttpServletRequest
();
HttpSession
session
=
request
.
getSession
();
HttpSession
session
=
request
.
getSession
();
...
@@ -76,8 +76,9 @@ public interface OAuthApi {
...
@@ -76,8 +76,9 @@ public interface OAuthApi {
String
tokenType
=
oAuthResponse
.
getTokenType
();
String
tokenType
=
oAuthResponse
.
getTokenType
();
token
=
new
OAuthToken
(
accessToken
,
refreshToken
,
idToken
,
tokenType
,
expiresIn
);
token
=
new
OAuthToken
(
accessToken
,
refreshToken
,
idToken
,
tokenType
,
expiresIn
);
session
.
setAttribute
(
OAUTH_TOKEN_SESSION
,
token
);
session
.
setAttribute
(
OAUTH_TOKEN_SESSION
,
token
);
}
else
{
throw
new
OAuthApiException
(
"OAuthToken already exists"
);
}
}
return
token
;
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
throw
new
OAuthApiException
(
e
.
getMessage
(),
e
);
throw
new
OAuthApiException
(
e
.
getMessage
(),
e
);
}
}
...
@@ -90,7 +91,7 @@ public interface OAuthApi {
...
@@ -90,7 +91,7 @@ public interface OAuthApi {
session
.
invalidate
();
session
.
invalidate
();
}
}
default
OAuthToken
refresh
()
{
default
void
refresh
()
{
try
{
try
{
HttpServletRequest
request
=
this
.
getHttpServletRequest
();
HttpServletRequest
request
=
this
.
getHttpServletRequest
();
HttpSession
session
=
request
.
getSession
();
HttpSession
session
=
request
.
getSession
();
...
@@ -111,7 +112,6 @@ public interface OAuthApi {
...
@@ -111,7 +112,6 @@ public interface OAuthApi {
String
tokenType
=
oAuthResponse
.
getTokenType
();
String
tokenType
=
oAuthResponse
.
getTokenType
();
OAuthToken
newToken
=
new
OAuthToken
(
accessToken
,
refreshToken
,
idToken
,
tokenType
,
expiresIn
);
OAuthToken
newToken
=
new
OAuthToken
(
accessToken
,
refreshToken
,
idToken
,
tokenType
,
expiresIn
);
session
.
setAttribute
(
OAUTH_TOKEN_SESSION
,
newToken
);
session
.
setAttribute
(
OAUTH_TOKEN_SESSION
,
newToken
);
return
newToken
;
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
throw
new
OAuthApiException
(
e
.
getMessage
(),
e
);
throw
new
OAuthApiException
(
e
.
getMessage
(),
e
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment