debian-mirror-gitlab/app/services/git_push_service.rb

234 lines
6.6 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2016-04-02 18:10:28 +05:30
class GitPushService < BaseService
attr_accessor :push_data, :push_commits
2015-04-26 12:48:37 +05:30
include Gitlab::Access
2018-11-18 11:00:15 +05:30
include Gitlab::Utils::StrongMemoize
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
# The N most recent commits to process in a single push payload.
PROCESS_COMMIT_LIMIT = 100
2014-09-02 18:07:02 +05:30
# This method will be called after each git update
2016-04-02 18:10:28 +05:30
# and only if the provided user and project are present in GitLab.
2014-09-02 18:07:02 +05:30
#
# All callbacks for post receive action should be placed here.
#
# Next, this method:
# 1. Creates the push event
2015-09-25 12:07:36 +05:30
# 2. Updates merge requests
# 3. Recognizes cross-references from commit messages
2016-06-02 11:05:42 +05:30
# 4. Executes the project's webhooks
2015-09-25 12:07:36 +05:30
# 5. Executes the project's services
2016-06-02 11:05:42 +05:30
# 6. Checks if the project's main language has changed
2014-09-02 18:07:02 +05:30
#
2016-04-02 18:10:28 +05:30
def execute
2018-11-18 11:00:15 +05:30
project.repository.after_create if project.empty_repo?
project.repository.after_push_commit(branch_name)
2014-09-02 18:07:02 +05:30
2016-04-02 18:10:28 +05:30
if push_remove_branch?
2018-11-18 11:00:15 +05:30
project.repository.after_remove_branch
2015-04-26 12:48:37 +05:30
@push_commits = []
2016-04-02 18:10:28 +05:30
elsif push_to_new_branch?
2018-11-18 11:00:15 +05:30
project.repository.after_create_branch
2016-04-02 18:10:28 +05:30
2014-09-02 18:07:02 +05:30
# Re-find the pushed commits.
2018-03-17 18:26:18 +05:30
if default_branch?
2014-09-02 18:07:02 +05:30
# Initial push to the default branch. Take the full history of that branch as "newly pushed".
2016-04-02 18:10:28 +05:30
process_default_branch
2014-09-02 18:07:02 +05:30
else
# Use the pushed commits that aren't reachable by the default branch
# as a heuristic. This may include more commits than are actually pushed, but
# that shouldn't matter because we check for existing cross-references later.
2018-11-18 11:00:15 +05:30
@push_commits = project.repository.commits_between(project.default_branch, params[:newrev])
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
# don't process commits for the initial push to the default branch
2016-04-02 18:10:28 +05:30
process_commit_messages
2015-04-26 12:48:37 +05:30
end
2016-04-02 18:10:28 +05:30
elsif push_to_existing_branch?
2015-04-26 12:48:37 +05:30
# Collect data for this git push
2018-11-18 11:00:15 +05:30
@push_commits = project.repository.commits_between(params[:oldrev], params[:newrev])
2017-09-10 17:25:29 +05:30
2016-04-02 18:10:28 +05:30
process_commit_messages
2016-06-02 11:05:42 +05:30
# Update the bare repositories info/attributes file using the contents of the default branches
# .gitattributes file
2018-03-17 18:26:18 +05:30
update_gitattributes if default_branch?
2014-09-02 18:07:02 +05:30
end
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
execute_related_hooks
2016-06-02 11:05:42 +05:30
perform_housekeeping
2017-08-17 22:00:37 +05:30
2018-10-15 14:42:47 +05:30
update_remote_mirrors
2017-08-17 22:00:37 +05:30
update_caches
2017-09-10 17:25:29 +05:30
update_signatures
2016-06-02 11:05:42 +05:30
end
def update_gitattributes
2018-11-18 11:00:15 +05:30
project.repository.copy_gitattributes(params[:ref])
2016-06-02 11:05:42 +05:30
end
2017-08-17 22:00:37 +05:30
def update_caches
2018-03-17 18:26:18 +05:30
if default_branch?
2017-09-10 17:25:29 +05:30
if push_to_new_branch?
# If this is the initial push into the default branch, the file type caches
# will already be reset as a result of `Project#change_head`.
types = []
else
paths = Set.new
2017-08-17 22:00:37 +05:30
2018-11-18 11:00:15 +05:30
last_pushed_commits.each do |commit|
2017-09-10 17:25:29 +05:30
commit.raw_deltas.each do |diff|
paths << diff.new_path
end
2017-08-17 22:00:37 +05:30
end
2017-09-10 17:25:29 +05:30
types = Gitlab::FileDetector.types_in_paths(paths.to_a)
end
2018-11-18 11:00:15 +05:30
DetectRepositoryLanguagesWorker.perform_async(@project.id, current_user.id)
2017-08-17 22:00:37 +05:30
else
types = []
end
2018-11-18 11:00:15 +05:30
ProjectCacheWorker.perform_async(project.id, types, [:commit_count, :repository_size])
2017-08-17 22:00:37 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2017-09-10 17:25:29 +05:30
def update_signatures
2018-11-18 11:00:15 +05:30
commit_shas = last_pushed_commits.map(&:sha)
2017-09-10 17:25:29 +05:30
return if commit_shas.empty?
shas_with_cached_signatures = GpgSignature.where(commit_sha: commit_shas).pluck(:commit_sha)
commit_shas -= shas_with_cached_signatures
return if commit_shas.empty?
commit_shas = Gitlab::Git::Commit.shas_with_signatures(project.repository, commit_shas)
2018-11-18 11:00:15 +05:30
CreateGpgSignatureWorker.perform_async(commit_shas, project.id)
2017-09-10 17:25:29 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2017-09-10 17:25:29 +05:30
2017-08-17 22:00:37 +05:30
# Schedules processing of commit messages.
def process_commit_messages
2018-03-17 18:26:18 +05:30
default = default_branch?
2017-08-17 22:00:37 +05:30
2018-11-18 11:00:15 +05:30
last_pushed_commits.each do |commit|
2017-09-10 17:25:29 +05:30
if commit.matches_cross_reference_regex?
ProcessCommitWorker
.perform_async(project.id, current_user.id, commit.to_hash, default)
end
2017-08-17 22:00:37 +05:30
end
end
2016-04-02 18:10:28 +05:30
protected
2015-10-24 18:46:33 +05:30
2018-10-15 14:42:47 +05:30
def update_remote_mirrors
2018-11-18 11:00:15 +05:30
return unless project.has_remote_mirror?
2018-10-15 14:42:47 +05:30
2018-11-18 11:00:15 +05:30
project.mark_stuck_remote_mirrors_as_failed!
project.update_remote_mirrors
2018-10-15 14:42:47 +05:30
end
2017-08-17 22:00:37 +05:30
def execute_related_hooks
# Update merge requests that may be affected by this push. A new branch
# could cause the last commit of a merge request to change.
#
UpdateMergeRequestsWorker
2018-11-18 11:00:15 +05:30
.perform_async(project.id, current_user.id, params[:oldrev], params[:newrev], params[:ref])
2017-08-17 22:00:37 +05:30
2018-11-18 11:00:15 +05:30
EventCreateService.new.push(project, current_user, build_push_data)
Ci::CreatePipelineService.new(project, current_user, build_push_data).execute(:push)
2017-09-10 17:25:29 +05:30
2018-11-18 11:00:15 +05:30
project.execute_hooks(build_push_data.dup, :push_hooks)
project.execute_services(build_push_data.dup, :push_hooks)
2017-08-17 22:00:37 +05:30
if push_remove_branch?
AfterBranchDeleteService
.new(project, current_user)
.execute(branch_name)
end
2014-09-02 18:07:02 +05:30
end
2016-06-02 11:05:42 +05:30
def perform_housekeeping
2018-11-18 11:00:15 +05:30
housekeeping = Projects::HousekeepingService.new(project)
2016-06-02 11:05:42 +05:30
housekeeping.increment!
housekeeping.execute if housekeeping.needed?
rescue Projects::HousekeepingService::LeaseTaken
end
2016-04-02 18:10:28 +05:30
def process_default_branch
2018-11-18 11:00:15 +05:30
offset = [push_commits_count_for_ref - PROCESS_COMMIT_LIMIT, 0].max
2017-09-10 17:25:29 +05:30
@push_commits = project.repository.commits(params[:newrev], offset: offset, limit: PROCESS_COMMIT_LIMIT)
2016-04-02 18:10:28 +05:30
2018-11-18 11:00:15 +05:30
project.after_create_default_branch
2016-04-02 18:10:28 +05:30
end
2014-09-02 18:07:02 +05:30
2016-04-02 18:10:28 +05:30
def build_push_data
2016-09-13 17:45:13 +05:30
@push_data ||= Gitlab::DataBuilder::Push.build(
2018-11-18 11:00:15 +05:30
project,
2016-09-13 17:45:13 +05:30
current_user,
params[:oldrev],
params[:newrev],
params[:ref],
2017-09-10 17:25:29 +05:30
@push_commits,
2018-11-18 11:00:15 +05:30
commits_count: commits_count)
2014-09-02 18:07:02 +05:30
end
2016-04-02 18:10:28 +05:30
def push_to_existing_branch?
2014-09-02 18:07:02 +05:30
# Return if this is not a push to a branch (e.g. new commits)
2018-11-18 11:00:15 +05:30
branch_ref? && !Gitlab::Git.blank_ref?(params[:oldrev])
2014-09-02 18:07:02 +05:30
end
2016-04-02 18:10:28 +05:30
def push_to_new_branch?
2018-11-18 11:00:15 +05:30
strong_memoize(:push_to_new_branch) do
branch_ref? && Gitlab::Git.blank_ref?(params[:oldrev])
end
2015-04-26 12:48:37 +05:30
end
2014-09-02 18:07:02 +05:30
2016-04-02 18:10:28 +05:30
def push_remove_branch?
2018-11-18 11:00:15 +05:30
strong_memoize(:push_remove_branch) do
branch_ref? && Gitlab::Git.blank_ref?(params[:newrev])
end
2014-09-02 18:07:02 +05:30
end
2018-03-17 18:26:18 +05:30
def default_branch?
2018-11-18 11:00:15 +05:30
branch_ref? &&
(branch_name == project.default_branch || project.default_branch.nil?)
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
def commit_user(commit)
2016-04-02 18:10:28 +05:30
commit.author || current_user
end
def branch_name
2018-11-18 11:00:15 +05:30
strong_memoize(:branch_name) do
Gitlab::Git.ref_name(params[:ref])
end
end
def branch_ref?
strong_memoize(:branch_ref) do
Gitlab::Git.branch_ref?(params[:ref])
end
end
def commits_count
return push_commits_count_for_ref if default_branch? && push_to_new_branch?
Array(@push_commits).size
end
def push_commits_count_for_ref
strong_memoize(:push_commits_count_for_ref) do
project.repository.commit_count_for_ref(params[:ref])
end
end
def last_pushed_commits
@last_pushed_commits ||= @push_commits.last(PROCESS_COMMIT_LIMIT)
2014-09-02 18:07:02 +05:30
end
end