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
8c08fb9b
Commit
8c08fb9b
authored
Jul 30, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4662 from jzi/allow_archive_for_deploy_key
allow all git-upload-* commands for deploy keys
parents
4f07a6a9
e03d01d0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
43 additions
and
3 deletions
+43
-3
lib/api/internal.rb
lib/api/internal.rb
+7
-3
spec/requests/api/internal_spec.rb
spec/requests/api/internal_spec.rb
+36
-0
No files found.
lib/api/internal.rb
View file @
8c08fb9b
module
API
module
API
# Internal access API
# Internal access API
class
Internal
<
Grape
::
API
class
Internal
<
Grape
::
API
DOWNLOAD_COMMANDS
=
%w{ git-upload-pack git-upload-archive }
PUSH_COMMANDS
=
%w{ git-receive-pack }
namespace
'internal'
do
namespace
'internal'
do
#
#
# Check if ssh key has access to project code
# Check if ssh key has access to project code
...
@@ -26,16 +30,16 @@ module API
...
@@ -26,16 +30,16 @@ module API
if
key
.
is_a?
DeployKey
if
key
.
is_a?
DeployKey
key
.
projects
.
include?
(
project
)
&&
git_cmd
==
'git-upload-pack'
key
.
projects
.
include?
(
project
)
&&
DOWNLOAD_COMMANDS
.
include?
(
git_cmd
)
else
else
user
=
key
.
user
user
=
key
.
user
return
false
if
user
.
blocked?
return
false
if
user
.
blocked?
action
=
case
git_cmd
action
=
case
git_cmd
when
'git-upload-pack'
,
'git-upload-archive'
when
*
DOWNLOAD_COMMANDS
then
:download_code
then
:download_code
when
'git-receive-pack'
when
*
PUSH_COMMANDS
then
then
if
project
.
protected_branch?
(
params
[
:ref
])
if
project
.
protected_branch?
(
params
[
:ref
])
:push_code_to_protected_branches
:push_code_to_protected_branches
...
...
spec/requests/api/internal_spec.rb
View file @
8c08fb9b
...
@@ -100,6 +100,32 @@ describe API::API do
...
@@ -100,6 +100,32 @@ describe API::API do
end
end
end
end
end
end
context
"deploy key"
do
let
(
:key
)
{
create
(
:deploy_key
)
}
context
"added to project"
do
before
do
key
.
projects
<<
project
end
it
do
archive
(
key
,
project
)
response
.
status
.
should
==
200
response
.
body
.
should
==
'true'
end
end
context
"not added to project"
do
it
do
archive
(
key
,
project
)
response
.
status
.
should
==
200
response
.
body
.
should
==
'false'
end
end
end
end
end
def
pull
(
key
,
project
)
def
pull
(
key
,
project
)
...
@@ -121,4 +147,14 @@ describe API::API do
...
@@ -121,4 +147,14 @@ describe API::API do
action:
'git-receive-pack'
action:
'git-receive-pack'
)
)
end
end
def
archive
(
key
,
project
)
get
(
api
(
"/internal/allowed"
),
ref:
'master'
,
key_id:
key
.
id
,
project:
project
.
path_with_namespace
,
action:
'git-upload-archive'
)
end
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