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
Kazuhiko Shiozaki
gitlab-ce
Commits
d2cec126
Commit
d2cec126
authored
Mar 07, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
block user should not be able to push
parent
9c2a6e20
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
52 additions
and
28 deletions
+52
-28
lib/api/internal.rb
lib/api/internal.rb
+3
-0
spec/requests/api/internal_spec.rb
spec/requests/api/internal_spec.rb
+49
-28
No files found.
lib/api/internal.rb
View file @
d2cec126
...
...
@@ -20,6 +20,9 @@ module Gitlab
project
==
key
.
project
&&
git_cmd
==
'git-upload-pack'
else
user
=
key
.
user
return
false
if
user
.
blocked?
action
=
case
git_cmd
when
'git-upload-pack'
then
:download_code
...
...
spec/requests/api/internal_spec.rb
View file @
d2cec126
...
...
@@ -34,13 +34,7 @@ describe Gitlab::API do
context
"git pull"
do
it
do
get
(
api
(
"/internal/allowed"
),
ref:
'master'
,
key_id:
key
.
id
,
project:
project
.
path_with_namespace
,
action:
'git-upload-pack'
)
pull
(
key
,
project
)
response
.
status
.
should
==
200
response
.
body
.
should
==
'true'
...
...
@@ -49,13 +43,7 @@ describe Gitlab::API do
context
"git push"
do
it
do
get
(
api
(
"/internal/allowed"
),
ref:
'master'
,
key_id:
key
.
id
,
project:
project
.
path_with_namespace
,
action:
'git-receive-pack'
)
push
(
key
,
project
)
response
.
status
.
should
==
200
response
.
body
.
should
==
'true'
...
...
@@ -70,13 +58,7 @@ describe Gitlab::API do
context
"git pull"
do
it
do
get
(
api
(
"/internal/allowed"
),
ref:
'master'
,
key_id:
key
.
id
,
project:
project
.
path_with_namespace
,
action:
'git-upload-pack'
)
pull
(
key
,
project
)
response
.
status
.
should
==
200
response
.
body
.
should
==
'false'
...
...
@@ -85,13 +67,7 @@ describe Gitlab::API do
context
"git push"
do
it
do
get
(
api
(
"/internal/allowed"
),
ref:
'master'
,
key_id:
key
.
id
,
project:
project
.
path_with_namespace
,
action:
'git-receive-pack'
)
push
(
key
,
project
)
response
.
status
.
should
==
200
response
.
body
.
should
==
'false'
...
...
@@ -99,5 +75,50 @@ describe Gitlab::API do
end
end
context
"blocked user"
do
let
(
:personal_project
)
{
create
(
:project
,
namespace:
user
.
namespace
)
}
before
do
user
.
block
end
context
"git pull"
do
it
do
pull
(
key
,
personal_project
)
response
.
status
.
should
==
200
response
.
body
.
should
==
'false'
end
end
context
"git push"
do
it
do
push
(
key
,
personal_project
)
response
.
status
.
should
==
200
response
.
body
.
should
==
'false'
end
end
end
end
def
pull
(
key
,
project
)
get
(
api
(
"/internal/allowed"
),
ref:
'master'
,
key_id:
key
.
id
,
project:
project
.
path_with_namespace
,
action:
'git-upload-pack'
)
end
def
push
(
key
,
project
)
get
(
api
(
"/internal/allowed"
),
ref:
'master'
,
key_id:
key
.
id
,
project:
project
.
path_with_namespace
,
action:
'git-receive-pack'
)
end
end
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