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
Léo-Paul Géneau
gitlab-ce
Commits
8ae1d812
Commit
8ae1d812
authored
Feb 07, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
deploy keys support for gitlab-shell api
parent
48628d31
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
13 deletions
+18
-13
lib/api/internal.rb
lib/api/internal.rb
+18
-13
No files found.
lib/api/internal.rb
View file @
8ae1d812
...
@@ -7,22 +7,27 @@ module Gitlab
...
@@ -7,22 +7,27 @@ module Gitlab
#
#
get
"/allowed"
do
get
"/allowed"
do
key
=
Key
.
find
(
params
[
:key_id
])
key
=
Key
.
find
(
params
[
:key_id
])
user
=
key
.
user
project
=
Project
.
find_with_namespace
(
params
[
:project
])
project
=
Project
.
find_with_namespace
(
params
[
:project
])
action
=
case
params
[
:action
]
git_cmd
=
params
[
:action
]
when
'git-upload-pack'
then
:download_code
if
key
.
is_deploy_key
when
'git-receive-pack'
project
==
key
.
project
&&
git_cmd
==
'git-upload-pack'
then
else
if
project
.
protected_branch?
(
params
[
:ref
])
user
=
key
.
user
:push_code_to_protected_branches
action
=
case
git_cmd
else
when
'git-upload-pack'
:push_code
then
:download_code
when
'git-receive-pack'
then
if
project
.
protected_branch?
(
params
[
:ref
])
:push_code_to_protected_branches
else
:push_code
end
end
end
end
user
.
can?
(
action
,
project
)
user
.
can?
(
action
,
project
)
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