Commit 729b358f authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

push via http now served via /allowed API

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent f18a714f
...@@ -5,7 +5,7 @@ module Grack ...@@ -5,7 +5,7 @@ module Grack
class Auth < Rack::Auth::Basic class Auth < Rack::Auth::Basic
include Helpers include Helpers
attr_accessor :user, :project, :ref, :env attr_accessor :user, :project, :env
def call(env) def call(env)
@env = env @env = env
...@@ -80,24 +80,11 @@ module Grack ...@@ -80,24 +80,11 @@ module Grack
def authorize_request(service) def authorize_request(service)
case service case service
when 'git-upload-pack' when 'git-upload-pack'
can?(user, :download_code, project) # Serve only upload request.
when'git-receive-pack' # Authorization on push will be serverd by update hook in repository
refs.each do |ref| Gitlab::GitAccess.new.download_allowed?(user, project)
action = if project.protected_branch?(ref)
:push_code_to_protected_branches
else else
:push_code
end
return false unless can?(user, action, project)
end
# Never let git-receive-pack trough unauthenticated; it's
# harmless but git < 1.8 doesn't like it
return false if user.nil?
true true
else
false
end end
end end
...@@ -114,29 +101,5 @@ module Grack ...@@ -114,29 +101,5 @@ module Grack
def project def project
@project ||= project_by_path(@request.path_info) @project ||= project_by_path(@request.path_info)
end end
def refs
@refs ||= parse_refs
end
def parse_refs
input = if @env["HTTP_CONTENT_ENCODING"] =~ /gzip/
Zlib::GzipReader.new(@request.body).read
else
@request.body.read
end
# Need to reset seek point
@request.body.rewind
# Parse refs
refs = input.force_encoding('ascii-8bit').scan(/refs\/heads\/([\/\w\.-]+)/n).flatten.compact
# Cleanup grabare from refs
# if push to multiple branches
refs.map do |ref|
ref.gsub(/00.*/, "")
end
end
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment