2011-12-12 19:03:26 -05:00
|
|
|
class PostReceive
|
2013-01-09 00:14:05 -05:00
|
|
|
include Sidekiq::Worker
|
2016-10-21 12:13:41 -04:00
|
|
|
include DedicatedSidekiqQueue
|
2013-01-09 00:14:05 -05:00
|
|
|
|
2017-05-02 17:15:12 -04:00
|
|
|
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
|
|
|
|
end
|
2013-01-29 04:32:05 -05:00
|
|
|
|
2016-07-28 09:12:49 -04:00
|
|
|
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-05-02 17:15:12 -04:00
|
|
|
post_received = Gitlab::GitPostReceive.new(project, identifier, changes)
|
2011-12-14 11:38:52 -05:00
|
|
|
|
2017-05-02 17:15:12 -04:00
|
|
|
if is_wiki
|
2016-03-16 23:24:12 -04:00
|
|
|
# Nothing defined here yet.
|
|
|
|
else
|
2017-05-02 17:15:12 -04:00
|
|
|
process_project_changes(post_received)
|
2017-05-02 22:36:13 -04:00
|
|
|
process_repository_update(post_received)
|
2016-03-16 23:24:12 -04:00
|
|
|
end
|
|
|
|
end
|
2013-01-28 10:22:45 -05:00
|
|
|
|
2017-05-02 22:36:13 -04:00
|
|
|
def process_repository_update(post_received)
|
|
|
|
changes = []
|
|
|
|
refs = Set.new
|
|
|
|
|
|
|
|
post_received.changes_refs do |oldrev, newrev, ref|
|
|
|
|
@user ||= post_received.identify(newrev)
|
2012-02-29 16:04:09 -05:00
|
|
|
|
2017-05-02 22:36:13 -04:00
|
|
|
unless @user
|
|
|
|
log("Triggered hook for non-existing user \"#{post_received.identifier}\"")
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
changes << Gitlab::DataBuilder::Repository.single_change(oldrev, newrev, ref)
|
|
|
|
refs << ref
|
|
|
|
end
|
|
|
|
|
|
|
|
hook_data = Gitlab::DataBuilder::Repository.update(post_received.project, @user, changes, refs.to_a)
|
|
|
|
SystemHooksService.new.execute_hooks(hook_data, :repository_update_hooks)
|
|
|
|
end
|
|
|
|
|
|
|
|
def process_project_changes(post_received)
|
|
|
|
post_received.changes_refs do |oldrev, newrev, ref|
|
2016-03-16 23:24:12 -04:00
|
|
|
@user ||= post_received.identify(newrev)
|
2014-09-02 03:58:54 -04:00
|
|
|
|
|
|
|
unless @user
|
2016-11-01 17:46:37 -04:00
|
|
|
log("Triggered hook for non-existing user \"#{post_received.identifier}\"")
|
2014-09-02 03:58:54 -04:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
2015-03-10 06:51:36 -04:00
|
|
|
if Gitlab::Git.tag_ref?(ref)
|
2016-04-15 08:26:27 -04:00
|
|
|
GitTagPushService.new(post_received.project, @user, oldrev: oldrev, newrev: newrev, ref: ref).execute
|
2016-04-11 06:46:19 -04:00
|
|
|
elsif Gitlab::Git.branch_ref?(ref)
|
2016-03-16 23:24:12 -04:00
|
|
|
GitPushService.new(post_received.project, @user, oldrev: oldrev, newrev: newrev, ref: ref).execute
|
2014-09-02 03:58:54 -04:00
|
|
|
end
|
2014-03-05 16:10:35 -05:00
|
|
|
end
|
2011-12-12 19:03:26 -05:00
|
|
|
end
|
2013-04-29 02:43:18 -04:00
|
|
|
|
2016-03-16 23:24:12 -04:00
|
|
|
private
|
2016-04-15 08:26:27 -04:00
|
|
|
|
2017-05-03 17:07:54 -04:00
|
|
|
# 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
|
2017-05-02 17:15:12 -04:00
|
|
|
def parse_project_identifier(project_identifier)
|
|
|
|
if project_identifier.start_with?('/')
|
|
|
|
Gitlab::RepoPath.parse(project_identifier)
|
|
|
|
else
|
|
|
|
Gitlab::GlRepository.parse(project_identifier)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-04-29 02:43:18 -04:00
|
|
|
def log(message)
|
|
|
|
Gitlab::GitLogger.error("POST-RECEIVE: #{message}")
|
|
|
|
end
|
2011-12-12 19:03:26 -05:00
|
|
|
end
|