debian-mirror-gitlab/app/workers/post_receive.rb

66 lines
2.2 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
class PostReceive
include Sidekiq::Worker
2016-11-03 12:29:30 +05:30
include DedicatedSidekiqQueue
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
def perform(project_identifier, identifier, changes)
project, is_wiki = parse_project_identifier(project_identifier)
if project.nil?
log("Triggered hook for non-existing project with identifier \"#{project_identifier}\"")
return false
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
changes = Base64.decode64(changes) unless changes.include?(' ')
# Use Sidekiq.logger so arguments can be correlated with execution
# time and thread ID's.
Sidekiq.logger.info "changes: #{changes.inspect}" if ENV['SIDEKIQ_LOG_ARGUMENTS']
2017-08-17 22:00:37 +05:30
post_received = Gitlab::GitPostReceive.new(project, identifier, changes)
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
if is_wiki
2016-06-02 11:05:42 +05:30
# Nothing defined here yet.
else
2017-08-17 22:00:37 +05:30
process_project_changes(post_received)
2016-06-02 11:05:42 +05:30
end
end
2014-09-02 18:07:02 +05:30
2016-06-02 11:05:42 +05:30
def process_project_changes(post_received)
post_received.changes.each do |change|
2015-04-26 12:48:37 +05:30
oldrev, newrev, ref = change.strip.split(' ')
2014-09-02 18:07:02 +05:30
2016-06-02 11:05:42 +05:30
@user ||= post_received.identify(newrev)
2015-04-26 12:48:37 +05:30
unless @user
2017-08-17 22:00:37 +05:30
log("Triggered hook for non-existing user \"#{post_received.identifier}\"")
2015-04-26 12:48:37 +05:30
return false
end
if Gitlab::Git.tag_ref?(ref)
2016-06-02 11:05:42 +05:30
GitTagPushService.new(post_received.project, @user, oldrev: oldrev, newrev: newrev, ref: ref).execute
elsif Gitlab::Git.branch_ref?(ref)
GitPushService.new(post_received.project, @user, oldrev: oldrev, newrev: newrev, ref: ref).execute
2015-04-26 12:48:37 +05:30
end
2014-09-02 18:07:02 +05:30
end
end
2016-06-02 11:05:42 +05:30
private
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
# To maintain backwards compatibility, we accept both gl_repository or
# repository paths as project identifiers. Our plan is to migrate to
# gl_repository only with the following plan:
# 9.2: Handle both possible values. Keep Gitlab-Shell sending only repo paths
# 9.3 (or patch release): Make GitLab Shell pass gl_repository if present
# 9.4 (or patch release): Make GitLab Shell always pass gl_repository
# 9.5 (or patch release): Handle only gl_repository as project identifier on this method
def parse_project_identifier(project_identifier)
if project_identifier.start_with?('/')
Gitlab::RepoPath.parse(project_identifier)
else
Gitlab::GlRepository.parse(project_identifier)
end
end
2015-04-26 12:48:37 +05:30
def log(message)
Gitlab::GitLogger.error("POST-RECEIVE: #{message}")
2014-09-02 18:07:02 +05:30
end
end