Commit 15a03e1d authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #1023 from SaitoWu/feature/https

Feature/https
parents f464d4c9 40134016
...@@ -86,12 +86,10 @@ module GitPush ...@@ -86,12 +86,10 @@ module GitPush
# This method will be called after each post receive # This method will be called after each post receive
# and only if autor_key_id present in gitlab. # and only if user present in gitlab.
# All callbacks for post receive should be placed here # All callbacks for post receive should be placed here
# #
def trigger_post_receive(oldrev, newrev, ref, author_key_id) def trigger_post_receive(oldrev, newrev, ref, user)
user = Key.find_by_identifier(author_key_id).user
# Create push event # Create push event
self.observe_push(oldrev, newrev, ref, user) self.observe_push(oldrev, newrev, ref, user)
......
class PostReceive class PostReceive
@queue = :post_receive @queue = :post_receive
def self.perform(reponame, oldrev, newrev, ref, author_key_id) def self.perform(reponame, oldrev, newrev, ref, identifier)
project = Project.find_by_path(reponame) project = Project.find_by_path(reponame)
return false if project.nil? return false if project.nil?
# Ignore push from non-gitlab users # Ignore push from non-gitlab users
return false unless Key.find_by_identifier(author_key_id) if /^[A-Z0-9._%a-z\-]+@(?:[A-Z0-9a-z\-]+\.)+[A-Za-z]{2,4}$/.match(identifier)
return false unless user = User.find_by_email(identifier)
else
return false unless user = Key.find_by_identifier(identifier).try(:user)
end
project.trigger_post_receive(oldrev, newrev, ref, author_key_id) project.trigger_post_receive(oldrev, newrev, ref, user)
end end
end end
...@@ -7,6 +7,11 @@ module Grack ...@@ -7,6 +7,11 @@ module Grack
user = User.find_by_email(email) user = User.find_by_email(email)
return false unless user.try(:valid_password?, password) return false unless user.try(:valid_password?, password)
# Set GL_USER env variable
ENV['GL_USER'] = email
# Pass Gitolite update hook
ENV['GL_BYPASS_UPDATE_HOOK'] = "true"
# Need this patch because the rails mount # Need this patch because the rails mount
@env['PATH_INFO'] = @env['REQUEST_PATH'] @env['PATH_INFO'] = @env['REQUEST_PATH']
......
...@@ -18,7 +18,7 @@ Gitlab::Application.routes.draw do ...@@ -18,7 +18,7 @@ Gitlab::Application.routes.draw do
project_root: GIT_HOST['base_path'], project_root: GIT_HOST['base_path'],
upload_pack: GIT_HOST['upload_pack'], upload_pack: GIT_HOST['upload_pack'],
receive_pack: GIT_HOST['receive_pack'] receive_pack: GIT_HOST['receive_pack']
}), at: '/:path', constraints: { path: /[\w-]+.git*/ } }), at: '/:path', constraints: { path: /[\w-]+\.git/ }
# #
# Help # Help
......
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