2018-11-08 19:23:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
class PostReceive
|
2018-03-17 18:26:18 +05:30
|
|
|
include ApplicationWorker
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
def perform(gl_repository, identifier, changes, push_options = [])
|
2017-09-10 17:25:29 +05:30
|
|
|
project, is_wiki = Gitlab::GlRepository.parse(gl_repository)
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
if project.nil?
|
2017-09-10 17:25:29 +05:30
|
|
|
log("Triggered hook for non-existing project with gl_repository \"#{gl_repository}\"")
|
2017-08-17 22:00:37 +05:30
|
|
|
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']
|
2019-02-15 15:39:39 +05:30
|
|
|
post_received = Gitlab::GitPostReceive.new(project, identifier, changes, push_options)
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
if is_wiki
|
2017-09-10 17:25:29 +05:30
|
|
|
process_wiki_changes(post_received)
|
2016-06-02 11:05:42 +05:30
|
|
|
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
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
private
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
def process_project_changes(post_received)
|
2017-09-10 17:25:29 +05:30
|
|
|
changes = []
|
|
|
|
refs = Set.new
|
2018-12-13 13:39:08 +05:30
|
|
|
@user = post_received.identify
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
unless @user
|
|
|
|
log("Triggered hook for non-existing user \"#{post_received.identifier}\"")
|
|
|
|
return false
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
post_received.changes_refs do |oldrev, newrev, ref|
|
2015-04-26 12:48:37 +05:30
|
|
|
if Gitlab::Git.tag_ref?(ref)
|
2019-02-15 15:39:39 +05:30
|
|
|
GitTagPushService.new(
|
|
|
|
post_received.project,
|
|
|
|
@user,
|
|
|
|
oldrev: oldrev,
|
|
|
|
newrev: newrev,
|
|
|
|
ref: ref,
|
|
|
|
push_options: post_received.push_options).execute
|
2016-06-02 11:05:42 +05:30
|
|
|
elsif Gitlab::Git.branch_ref?(ref)
|
2019-02-15 15:39:39 +05:30
|
|
|
GitPushService.new(
|
|
|
|
post_received.project,
|
|
|
|
@user,
|
|
|
|
oldrev: oldrev,
|
|
|
|
newrev: newrev,
|
|
|
|
ref: ref,
|
|
|
|
push_options: post_received.push_options).execute
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
changes << Gitlab::DataBuilder::Repository.single_change(oldrev, newrev, ref)
|
|
|
|
refs << ref
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
after_project_changes_hooks(post_received, @user, refs.to_a, changes)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
def after_project_changes_hooks(post_received, user, refs, changes)
|
|
|
|
hook_data = Gitlab::DataBuilder::Repository.update(post_received.project, user, changes, refs)
|
|
|
|
SystemHooksService.new.execute_hooks(hook_data, :repository_update_hooks)
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
def process_wiki_changes(post_received)
|
2018-03-27 19:54:05 +05:30
|
|
|
post_received.project.touch(:last_activity_at, :last_repository_updated_at)
|
2017-08-17 22:00:37 +05:30
|
|
|
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
|