Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
8c1a01e0
Commit
8c1a01e0
authored
Nov 18, 2016
by
Lin Jen-Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
We never check user privilege if it's a deploy key
parent
24893322
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
34 deletions
+28
-34
app/models/user.rb
app/models/user.rb
+0
-4
lib/gitlab/checks/change_access.rb
lib/gitlab/checks/change_access.rb
+9
-2
lib/gitlab/git_access.rb
lib/gitlab/git_access.rb
+19
-10
spec/lib/gitlab/git_access_spec.rb
spec/lib/gitlab/git_access_spec.rb
+0
-18
No files found.
app/models/user.rb
View file @
8c1a01e0
...
...
@@ -501,10 +501,6 @@ class User < ActiveRecord::Base
several_namespaces?
||
admin
end
def
has_access_to?
(
project
)
can?
(
:read_project
,
project
)
end
def
can?
(
action
,
subject
)
Ability
.
allowed?
(
self
,
action
,
subject
)
end
...
...
lib/gitlab/checks/change_access.rb
View file @
8c1a01e0
module
Gitlab
module
Checks
class
ChangeAccess
attr_reader
:user_access
,
:project
attr_reader
:user_access
,
:project
,
:skip_authorization
def
initialize
(
change
,
user_access
:,
project
:)
def
initialize
(
change
,
user_access
:,
project
:,
skip_authorization:
false
)
@oldrev
,
@newrev
,
@ref
=
change
.
values_at
(
:oldrev
,
:newrev
,
:ref
)
@branch_name
=
Gitlab
::
Git
.
branch_name
(
@ref
)
@user_access
=
user_access
@project
=
project
@skip_authorization
=
skip_authorization
end
def
exec
...
...
@@ -23,6 +25,7 @@ module Gitlab
protected
def
protected_branch_checks
return
if
skip_authorization
return
unless
@branch_name
return
unless
project
.
protected_branch?
(
@branch_name
)
...
...
@@ -48,6 +51,8 @@ module Gitlab
end
def
tag_checks
return
if
skip_authorization
tag_ref
=
Gitlab
::
Git
.
tag_name
(
@ref
)
if
tag_ref
&&
protected_tag?
(
tag_ref
)
&&
user_access
.
cannot_do_action?
(
:admin_project
)
...
...
@@ -56,6 +61,8 @@ module Gitlab
end
def
push_checks
return
if
skip_authorization
if
user_access
.
cannot_do_action?
(
:push_code
)
"You are not allowed to push code to this project."
end
...
...
lib/gitlab/git_access.rb
View file @
8c1a01e0
...
...
@@ -27,7 +27,7 @@ module Gitlab
def
check
(
cmd
,
changes
)
check_protocol!
check_active_user!
check_active_user!
unless
deploy_key?
check_project_accessibility!
check_command_existence!
(
cmd
)
...
...
@@ -44,9 +44,13 @@ module Gitlab
end
def
download_access_check
if
user
if
deploy_key
true
elsif
user
user_download_access_check
elsif
deploy_key
.
nil?
&&
!
Guest
.
can?
(
:download_code
,
project
)
elsif
Guest
.
can?
(
:download_code
,
project
)
true
else
raise
UnauthorizedError
,
ERROR_MESSAGES
[
:download
]
end
end
...
...
@@ -148,7 +152,10 @@ module Gitlab
def
check_single_change_access
(
change
)
Checks
::
ChangeAccess
.
new
(
change
,
user_access:
user_access
,
project:
project
).
exec
change
,
user_access:
user_access
,
project:
project
,
skip_authorization:
deploy_key?
).
exec
end
def
matching_merge_request?
(
newrev
,
branch_name
)
...
...
@@ -156,17 +163,19 @@ module Gitlab
end
def
deploy_key
actor
if
actor
.
is_a?
(
DeployKey
)
actor
if
deploy_key?
end
def
deploy_key?
actor
.
is_a?
(
DeployKey
)
end
def
can_read_project?
if
deploy_key
project
.
public?
||
deploy_key
.
has_access_to?
(
project
)
deploy_key
.
has_access_to?
(
project
)
elsif
user
user_access
.
can_read_project?
else
Guest
.
can?
(
:read_project
,
project
)
end
user
.
can?
(
:read_project
,
project
)
end
||
Guest
.
can?
(
:read_project
,
project
)
end
protected
...
...
spec/lib/gitlab/git_access_spec.rb
View file @
8c1a01e0
...
...
@@ -115,10 +115,6 @@ describe Gitlab::GitAccess, lib: true do
let
(
:key
)
{
create
(
:deploy_key
,
user:
user
)
}
let
(
:actor
)
{
key
}
before
do
project
.
team
<<
[
user
,
:master
]
end
context
'pull code'
do
context
'when project is authorized'
do
before
{
key
.
projects
<<
project
}
...
...
@@ -387,16 +383,6 @@ describe Gitlab::GitAccess, lib: true do
end
end
describe
'full authentication abilities'
do
let
(
:authentication_abilities
)
{
full_authentication_abilities
}
it_behaves_like
'pushing code'
,
:to
do
def
authorize
project
.
team
<<
[
user
,
:developer
]
end
end
end
describe
'build authentication abilities'
do
let
(
:authentication_abilities
)
{
build_authentication_abilities
}
...
...
@@ -411,10 +397,6 @@ describe Gitlab::GitAccess, lib: true do
let
(
:key
)
{
create
(
:deploy_key
,
user:
user
,
can_push:
can_push
)
}
let
(
:actor
)
{
key
}
before
do
project
.
team
<<
[
user
,
:master
]
end
context
'when deploy_key can push'
do
let
(
:can_push
)
{
true
}
...
...
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