Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-shell
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-shell
Commits
44e7804d
Commit
44e7804d
authored
Jun 20, 2016
by
Patricio Cano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow GitLab Shell to check for allowed access based on the used Git protocol.
parent
5afdd3f1
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
6 deletions
+11
-6
hooks/pre-receive
hooks/pre-receive
+4
-1
lib/gitlab_access.rb
lib/gitlab_access.rb
+4
-3
lib/gitlab_net.rb
lib/gitlab_net.rb
+2
-1
lib/gitlab_shell.rb
lib/gitlab_shell.rb
+1
-1
No files found.
hooks/pre-receive
View file @
44e7804d
...
...
@@ -5,12 +5,15 @@
refs
=
$stdin
.
read
key_id
=
ENV
[
'GL_ID'
]
protocol
=
ENV
[
'PROTOCOL'
]
repo_path
=
Dir
.
pwd
require_relative
'../lib/gitlab_custom_hook'
require_relative
'../lib/gitlab_access'
if
GitlabAccess
.
new
(
repo_path
,
key_id
,
refs
).
exec
&&
protocol
||=
'http'
if
GitlabAccess
.
new
(
repo_path
,
key_id
,
refs
,
protocol
).
exec
&&
GitlabCustomHook
.
new
.
pre_receive
(
refs
,
repo_path
)
exit
0
else
...
...
lib/gitlab_access.rb
View file @
44e7804d
...
...
@@ -9,18 +9,19 @@ class GitlabAccess
include
NamesHelper
attr_reader
:config
,
:repo_path
,
:repo_name
,
:changes
attr_reader
:config
,
:repo_path
,
:repo_name
,
:changes
,
:protocol
def
initialize
(
repo_path
,
actor
,
changes
)
def
initialize
(
repo_path
,
actor
,
changes
,
protocol
=
nil
)
@config
=
GitlabConfig
.
new
@repo_path
=
repo_path
.
strip
@actor
=
actor
@repo_name
=
extract_repo_name
(
@repo_path
.
dup
)
@changes
=
changes
.
lines
@protocol
=
protocol
end
def
exec
status
=
api
.
check_access
(
'git-receive-pack'
,
@repo_name
,
@actor
,
@changes
)
status
=
api
.
check_access
(
'git-receive-pack'
,
@repo_name
,
@actor
,
@changes
,
@protocol
)
raise
AccessDeniedError
,
status
.
message
unless
status
.
allowed?
...
...
lib/gitlab_net.rb
View file @
44e7804d
...
...
@@ -14,7 +14,7 @@ class GitlabNet
CHECK_TIMEOUT
=
5
READ_TIMEOUT
=
300
def
check_access
(
cmd
,
repo
,
actor
,
changes
)
def
check_access
(
cmd
,
repo
,
actor
,
changes
,
protocol
=
nil
)
project_name
=
repo
.
gsub
(
"'"
,
""
)
project_name
=
project_name
.
gsub
(
/\.git\Z/
,
""
)
project_name
=
project_name
.
gsub
(
/\A\//
,
""
)
...
...
@@ -24,6 +24,7 @@ class GitlabNet
action:
cmd
,
changes:
changes
,
project:
project_name
,
protocol:
protocol
}
if
actor
=~
/\Akey\-\d+\Z/
...
...
lib/gitlab_shell.rb
View file @
44e7804d
...
...
@@ -85,7 +85,7 @@ class GitlabShell
end
def
verify_access
status
=
api
.
check_access
(
@git_access
,
@repo_name
,
@key_id
,
'_any'
)
status
=
api
.
check_access
(
@git_access
,
@repo_name
,
@key_id
,
'_any'
,
'ssh'
)
raise
AccessDeniedError
,
status
.
message
unless
status
.
allowed?
...
...
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