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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
41c87b9a
Commit
41c87b9a
authored
Jun 23, 2016
by
Patricio Cano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Return :forbidden if HTTP protocol access is not allowed
parent
ace309d7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
app/controllers/projects/git_http_controller.rb
app/controllers/projects/git_http_controller.rb
+6
-0
No files found.
app/controllers/projects/git_http_controller.rb
View file @
41c87b9a
...
@@ -19,6 +19,8 @@ class Projects::GitHttpController < Projects::ApplicationController
...
@@ -19,6 +19,8 @@ class Projects::GitHttpController < Projects::ApplicationController
render_ok
render_ok
elsif
receive_pack?
&&
receive_pack_allowed?
elsif
receive_pack?
&&
receive_pack_allowed?
render_ok
render_ok
elsif
!
upload_pack_allowed?
render_not_allowed
else
else
render_not_found
render_not_found
end
end
...
@@ -154,6 +156,10 @@ class Projects::GitHttpController < Projects::ApplicationController
...
@@ -154,6 +156,10 @@ class Projects::GitHttpController < Projects::ApplicationController
render
plain:
'Not Found'
,
status: :not_found
render
plain:
'Not Found'
,
status: :not_found
end
end
def
render_not_allowed
render
json:
access
.
to_json
,
status: :forbidden
end
def
ci?
def
ci?
@ci
.
present?
@ci
.
present?
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