BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
f1896575
Commit
f1896575
authored
Nov 10, 2017
by
Francisco Lopez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some more comments
parent
2d5397d9
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
14 deletions
+13
-14
api_guard.rb
lib/api/api_guard.rb
+8
-7
request_authenticator.rb
lib/gitlab/auth/request_authenticator.rb
+1
-1
user_auth_finders.rb
lib/gitlab/auth/user_auth_finders.rb
+3
-5
request_authenticator_spec.rb
spec/lib/gitlab/auth/request_authenticator_spec.rb
+1
-1
No files found.
lib/api/api_guard.rb
View file @
f1896575
...
@@ -139,13 +139,14 @@ module API
...
@@ -139,13 +139,14 @@ module API
# Exceptions
# Exceptions
#
#
MissingTokenError
=
Class
.
new
(
StandardError
)
AuthenticationException
=
Class
.
new
(
StandardError
)
TokenNotFoundError
=
Class
.
new
(
StandardError
)
MissingTokenError
=
Class
.
new
(
AuthenticationException
)
ExpiredError
=
Class
.
new
(
StandardError
)
TokenNotFoundError
=
Class
.
new
(
AuthenticationException
)
RevokedError
=
Class
.
new
(
StandardError
)
ExpiredError
=
Class
.
new
(
AuthenticationException
)
UnauthorizedError
=
Class
.
new
(
StandardError
)
RevokedError
=
Class
.
new
(
AuthenticationException
)
UnauthorizedError
=
Class
.
new
(
AuthenticationException
)
class
InsufficientScopeError
<
StandardError
class
InsufficientScopeError
<
AuthenticationException
attr_reader
:scopes
attr_reader
:scopes
def
initialize
(
scopes
)
def
initialize
(
scopes
)
@scopes
=
scopes
.
map
{
|
s
|
s
.
try
(
:name
)
||
s
}
@scopes
=
scopes
.
map
{
|
s
|
s
.
try
(
:name
)
||
s
}
...
...
lib/gitlab/auth/request_authenticator.rb
View file @
f1896575
...
@@ -17,7 +17,7 @@ module Gitlab
...
@@ -17,7 +17,7 @@ module Gitlab
def
find_sessionless_user
def
find_sessionless_user
find_user_from_access_token
||
find_user_from_rss_token
find_user_from_access_token
||
find_user_from_rss_token
rescue
StandardError
rescue
API
::
APIGuard
::
AuthenticationException
nil
nil
end
end
end
end
...
...
lib/gitlab/auth/user_auth_finders.rb
View file @
f1896575
...
@@ -47,13 +47,11 @@ module Gitlab
...
@@ -47,13 +47,11 @@ module Gitlab
@access_token
=
find_oauth_access_token
||
find_personal_access_token
@access_token
=
find_oauth_access_token
||
find_personal_access_token
end
end
def
private_token
def
find_personal_access_token
token
=
current_request
.
params
[
PRIVATE_TOKEN_PARAM
].
presence
||
current_request
.
params
[
PRIVATE_TOKEN_PARAM
].
presence
||
current_request
.
env
[
PRIVATE_TOKEN_HEADER
].
presence
current_request
.
env
[
PRIVATE_TOKEN_HEADER
].
presence
end
def
find_personal_access_token
token
=
private_token
return
unless
token
return
unless
token
# Expiration, revocation and scopes are verified in `validate_access_token!`
# Expiration, revocation and scopes are verified in `validate_access_token!`
...
@@ -66,7 +64,7 @@ module Gitlab
...
@@ -66,7 +64,7 @@ module Gitlab
# Expiration, revocation and scopes are verified in `validate_access_token!`
# Expiration, revocation and scopes are verified in `validate_access_token!`
oauth_token
=
OauthAccessToken
.
by_token
(
token
)
oauth_token
=
OauthAccessToken
.
by_token
(
token
)
raise
(
API
::
APIGuard
::
UnauthorizedError
)
unless
oauth_token
raise
API
::
APIGuard
::
UnauthorizedError
unless
oauth_token
oauth_token
.
revoke_previous_refresh_token!
oauth_token
.
revoke_previous_refresh_token!
oauth_token
oauth_token
...
...
spec/lib/gitlab/auth/request_authenticator_spec.rb
View file @
f1896575
...
@@ -58,7 +58,7 @@ describe Gitlab::Auth::RequestAuthenticator do
...
@@ -58,7 +58,7 @@ describe Gitlab::Auth::RequestAuthenticator do
expect
(
subject
.
find_sessionless_user
).
to
be_blank
expect
(
subject
.
find_sessionless_user
).
to
be_blank
end
end
it
'rescue
StandardError
exceptions'
do
it
'rescue
API::APIGuard::AuthenticationException
exceptions'
do
allow_any_instance_of
(
described_class
).
to
receive
(
:find_user_from_access_token
).
and_raise
(
API
::
APIGuard
::
UnauthorizedError
)
allow_any_instance_of
(
described_class
).
to
receive
(
:find_user_from_access_token
).
and_raise
(
API
::
APIGuard
::
UnauthorizedError
)
expect
(
subject
.
find_sessionless_user
).
to
be_blank
expect
(
subject
.
find_sessionless_user
).
to
be_blank
...
...
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