gitlab-org--gitlab-foss/app/workers/post_receive.rb

48 lines
1.5 KiB
Ruby
Raw Normal View History

class PostReceive
2013-01-09 05:14:05 +00:00
include Sidekiq::Worker
2012-01-03 22:42:14 +00:00
2013-01-09 05:14:05 +00:00
sidekiq_options queue: :post_receive
def perform(repo_path, oldrev, newrev, ref, identifier)
2013-02-11 17:16:59 +00:00
if repo_path.start_with?(Gitlab.config.gitlab_shell.repos_path.to_s)
repo_path.gsub!(Gitlab.config.gitlab_shell.repos_path.to_s, "")
else
2013-02-11 17:16:59 +00:00
Gitlab::GitLogger.error("POST-RECEIVE: Check gitlab.yml config for correct gitlab_shell.repos_path variable. \"#{Gitlab.config.gitlab_shell.repos_path}\" does not match \"#{repo_path}\"")
end
2012-12-09 08:34:46 +00:00
repo_path.gsub!(/.git$/, "")
repo_path.gsub!(/^\//, "")
2012-12-08 18:48:33 +00:00
project = Project.find_with_namespace(repo_path)
if project.nil?
Gitlab::GitLogger.error("POST-RECEIVE: Triggered hook for non-existing project with full path \"#{repo_path} \"")
return false
end
user = if identifier.blank?
# Local push from gitlab
2013-04-03 07:06:31 +00:00
email = project.repository.commit(newrev).author_email rescue nil
User.find_by_email(email) if email
elsif identifier =~ /\Auser-\d+\Z/
# git push over http
user_id = identifier.gsub("user-", "")
User.find_by_id(user_id)
elsif identifier =~ /\Akey-\d+\Z/
# git push over ssh
key_id = identifier.gsub("key-", "")
Key.find_by_id(key_id).try(:user)
end
unless user
Gitlab::GitLogger.error("POST-RECEIVE: Triggered hook for non-existing user \"#{identifier} \"")
return false
end
2012-02-29 21:04:09 +00:00
2013-02-25 19:21:38 +00:00
GitPushService.new.execute(project, user, oldrev, newrev, ref)
end
end