2016-02-15 09:51:00 -05:00
|
|
|
class GitPushService < BaseService
|
|
|
|
attr_accessor :push_data, :push_commits
|
2015-01-25 10:33:54 -05:00
|
|
|
include Gitlab::CurrentSettings
|
|
|
|
include Gitlab::Access
|
2013-02-25 14:21:38 -05:00
|
|
|
|
2016-12-21 10:26:35 -05:00
|
|
|
# The N most recent commits to process in a single push payload.
|
|
|
|
PROCESS_COMMIT_LIMIT = 100
|
|
|
|
|
2013-02-25 14:21:38 -05:00
|
|
|
# This method will be called after each git update
|
2016-02-15 09:51:00 -05:00
|
|
|
# and only if the provided user and project are present in GitLab.
|
2013-02-25 14:21:38 -05:00
|
|
|
#
|
|
|
|
# All callbacks for post receive action should be placed here.
|
|
|
|
#
|
2013-05-30 19:16:49 -04:00
|
|
|
# Next, this method:
|
|
|
|
# 1. Creates the push event
|
2015-08-11 08:33:31 -04:00
|
|
|
# 2. Updates merge requests
|
|
|
|
# 3. Recognizes cross-references from commit messages
|
2016-03-10 14:48:29 -05:00
|
|
|
# 4. Executes the project's webhooks
|
2015-08-11 08:33:31 -04:00
|
|
|
# 5. Executes the project's services
|
2016-03-03 05:51:48 -05:00
|
|
|
# 6. Checks if the project's main language has changed
|
2013-02-25 14:21:38 -05:00
|
|
|
#
|
2016-02-11 06:50:27 -05:00
|
|
|
def execute
|
2016-04-28 19:48:37 -04:00
|
|
|
@project.repository.after_create if @project.empty_repo?
|
2016-11-18 08:04:18 -05:00
|
|
|
@project.repository.after_push_commit(branch_name)
|
2016-02-08 06:50:55 -05:00
|
|
|
|
2016-02-11 06:50:27 -05:00
|
|
|
if push_remove_branch?
|
2016-11-11 04:16:03 -05:00
|
|
|
@project.repository.after_remove_branch
|
2014-12-05 16:56:43 -05:00
|
|
|
@push_commits = []
|
2016-02-11 06:50:27 -05:00
|
|
|
elsif push_to_new_branch?
|
2016-02-23 06:02:59 -05:00
|
|
|
@project.repository.after_create_branch
|
2016-02-08 06:50:55 -05:00
|
|
|
|
2014-12-05 16:56:43 -05:00
|
|
|
# Re-find the pushed commits.
|
2017-08-24 13:03:50 -04:00
|
|
|
if default_branch?
|
2014-12-05 16:56:43 -05:00
|
|
|
# Initial push to the default branch. Take the full history of that branch as "newly pushed".
|
2016-02-11 06:50:27 -05:00
|
|
|
process_default_branch
|
2014-12-05 16:56:43 -05:00
|
|
|
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
|
2016-02-12 03:16:19 -05:00
|
|
|
# that shouldn't matter because we check for existing cross-references later.
|
2016-02-15 09:51:00 -05:00
|
|
|
@push_commits = @project.repository.commits_between(@project.default_branch, params[:newrev])
|
2014-12-05 16:56:43 -05:00
|
|
|
|
|
|
|
# don't process commits for the initial push to the default branch
|
2016-02-11 06:50:27 -05:00
|
|
|
process_commit_messages
|
2013-05-30 19:16:49 -04:00
|
|
|
end
|
2016-02-11 06:50:27 -05:00
|
|
|
elsif push_to_existing_branch?
|
2014-12-05 16:56:43 -05:00
|
|
|
# Collect data for this git push
|
2016-02-15 09:51:00 -05:00
|
|
|
@push_commits = @project.repository.commits_between(params[:oldrev], params[:newrev])
|
2017-07-27 08:58:02 -04:00
|
|
|
|
2016-02-11 06:50:27 -05:00
|
|
|
process_commit_messages
|
2016-03-14 19:33:00 -04:00
|
|
|
|
|
|
|
# Update the bare repositories info/attributes file using the contents of the default branches
|
|
|
|
# .gitattributes file
|
2017-08-24 13:03:50 -04:00
|
|
|
update_gitattributes if default_branch?
|
2014-12-05 16:56:43 -05:00
|
|
|
end
|
2016-03-14 19:33:00 -04:00
|
|
|
|
2016-11-11 04:33:16 -05:00
|
|
|
execute_related_hooks
|
2016-03-14 11:49:24 -04:00
|
|
|
perform_housekeeping
|
2016-11-18 08:04:18 -05:00
|
|
|
|
|
|
|
update_caches
|
2017-07-10 07:19:50 -04:00
|
|
|
|
|
|
|
update_signatures
|
2016-02-11 06:50:27 -05:00
|
|
|
end
|
2015-10-15 04:41:46 -04:00
|
|
|
|
2016-03-14 19:33:00 -04:00
|
|
|
def update_gitattributes
|
|
|
|
@project.repository.copy_gitattributes(params[:ref])
|
|
|
|
end
|
|
|
|
|
2016-11-18 08:04:18 -05:00
|
|
|
def update_caches
|
2017-08-24 13:03:50 -04:00
|
|
|
if default_branch?
|
2017-07-27 08:58:02 -04:00
|
|
|
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
|
2016-11-18 08:04:18 -05:00
|
|
|
|
2017-07-27 08:58:02 -04:00
|
|
|
@push_commits.last(PROCESS_COMMIT_LIMIT).each do |commit|
|
|
|
|
commit.raw_deltas.each do |diff|
|
|
|
|
paths << diff.new_path
|
|
|
|
end
|
2016-11-18 08:04:18 -05:00
|
|
|
end
|
|
|
|
|
2017-07-27 08:58:02 -04:00
|
|
|
types = Gitlab::FileDetector.types_in_paths(paths.to_a)
|
|
|
|
end
|
2016-11-18 08:04:18 -05:00
|
|
|
else
|
|
|
|
types = []
|
|
|
|
end
|
|
|
|
|
2016-11-22 11:58:10 -05:00
|
|
|
ProjectCacheWorker.perform_async(@project.id, types, [:commit_count, :repository_size])
|
2016-11-18 08:04:18 -05:00
|
|
|
end
|
|
|
|
|
2017-07-10 07:19:50 -04:00
|
|
|
def update_signatures
|
2017-08-15 07:22:55 -04:00
|
|
|
commit_shas = @push_commits.last(PROCESS_COMMIT_LIMIT).map(&:sha)
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
commit_shas.each do |sha|
|
|
|
|
CreateGpgSignatureWorker.perform_async(sha, project.id)
|
2017-07-10 07:19:50 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-12-21 10:26:35 -05:00
|
|
|
# Schedules processing of commit messages.
|
|
|
|
def process_commit_messages
|
2017-08-24 13:03:50 -04:00
|
|
|
default = default_branch?
|
2016-12-21 10:26:35 -05:00
|
|
|
|
2017-07-27 08:58:02 -04:00
|
|
|
@push_commits.last(PROCESS_COMMIT_LIMIT).each do |commit|
|
2017-04-21 22:26:58 -04:00
|
|
|
if commit.matches_cross_reference_regex?
|
2017-06-21 09:48:12 -04:00
|
|
|
ProcessCommitWorker
|
|
|
|
.perform_async(project.id, current_user.id, commit.to_hash, default)
|
2017-04-21 22:26:58 -04:00
|
|
|
end
|
2016-12-21 10:26:35 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-03 10:40:05 -05:00
|
|
|
protected
|
|
|
|
|
2016-11-11 04:33:16 -05:00
|
|
|
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
|
|
|
|
.perform_async(@project.id, current_user.id, params[:oldrev], params[:newrev], params[:ref])
|
2015-03-13 09:55:38 -04:00
|
|
|
|
2016-02-15 09:51:00 -05:00
|
|
|
EventCreateService.new.push(@project, current_user, build_push_data)
|
2017-06-07 06:32:16 -04:00
|
|
|
Ci::CreatePipelineService.new(@project, current_user, build_push_data).execute(:push)
|
2017-07-27 08:58:02 -04:00
|
|
|
|
2017-06-07 06:32:16 -04:00
|
|
|
SystemHookPushWorker.perform_async(build_push_data.dup, :push_hooks)
|
2016-02-11 06:50:27 -05:00
|
|
|
@project.execute_hooks(build_push_data.dup, :push_hooks)
|
|
|
|
@project.execute_services(build_push_data.dup, :push_hooks)
|
2016-11-11 04:33:16 -05:00
|
|
|
|
|
|
|
if push_remove_branch?
|
|
|
|
AfterBranchDeleteService
|
|
|
|
.new(project, current_user)
|
|
|
|
.execute(branch_name)
|
|
|
|
end
|
2013-02-25 14:21:38 -05:00
|
|
|
end
|
|
|
|
|
2016-03-14 11:49:24 -04:00
|
|
|
def perform_housekeeping
|
|
|
|
housekeeping = Projects::HousekeepingService.new(@project)
|
|
|
|
housekeeping.increment!
|
|
|
|
housekeeping.execute if housekeeping.needed?
|
2016-03-15 06:03:43 -04:00
|
|
|
rescue Projects::HousekeepingService::LeaseTaken
|
2016-03-14 11:49:24 -04:00
|
|
|
end
|
|
|
|
|
2016-02-11 06:50:27 -05:00
|
|
|
def process_default_branch
|
2017-07-27 08:58:02 -04:00
|
|
|
@push_commits_count = project.repository.commit_count_for_ref(params[:ref])
|
|
|
|
|
|
|
|
offset = [@push_commits_count - PROCESS_COMMIT_LIMIT, 0].max
|
|
|
|
@push_commits = project.repository.commits(params[:newrev], offset: offset, limit: PROCESS_COMMIT_LIMIT)
|
2016-02-11 06:50:27 -05:00
|
|
|
|
2018-01-03 11:01:46 -05:00
|
|
|
@project.after_create_default_branch
|
2016-02-11 06:50:27 -05:00
|
|
|
end
|
2013-02-25 14:21:38 -05:00
|
|
|
|
2016-02-11 06:50:27 -05:00
|
|
|
def build_push_data
|
2016-08-12 04:09:29 -04:00
|
|
|
@push_data ||= Gitlab::DataBuilder::Push.build(
|
|
|
|
@project,
|
|
|
|
current_user,
|
|
|
|
params[:oldrev],
|
|
|
|
params[:newrev],
|
|
|
|
params[:ref],
|
2017-07-27 08:58:02 -04:00
|
|
|
@push_commits,
|
|
|
|
commits_count: @push_commits_count)
|
2013-02-25 14:21:38 -05:00
|
|
|
end
|
|
|
|
|
2016-02-11 06:50:27 -05:00
|
|
|
def push_to_existing_branch?
|
2013-02-25 14:21:38 -05:00
|
|
|
# Return if this is not a push to a branch (e.g. new commits)
|
2016-02-15 09:51:00 -05:00
|
|
|
Gitlab::Git.branch_ref?(params[:ref]) && !Gitlab::Git.blank_ref?(params[:oldrev])
|
2013-05-30 19:16:49 -04:00
|
|
|
end
|
|
|
|
|
2016-02-11 06:50:27 -05:00
|
|
|
def push_to_new_branch?
|
2016-02-15 09:51:00 -05:00
|
|
|
Gitlab::Git.branch_ref?(params[:ref]) && Gitlab::Git.blank_ref?(params[:oldrev])
|
2013-05-30 19:16:49 -04:00
|
|
|
end
|
|
|
|
|
2016-02-11 06:50:27 -05:00
|
|
|
def push_remove_branch?
|
2016-02-15 09:51:00 -05:00
|
|
|
Gitlab::Git.branch_ref?(params[:ref]) && Gitlab::Git.blank_ref?(params[:newrev])
|
2014-09-26 03:46:48 -04:00
|
|
|
end
|
|
|
|
|
2016-02-11 06:50:27 -05:00
|
|
|
def push_to_branch?
|
2016-02-15 09:51:00 -05:00
|
|
|
Gitlab::Git.branch_ref?(params[:ref])
|
2013-08-27 06:56:04 -04:00
|
|
|
end
|
|
|
|
|
2017-08-24 13:03:50 -04:00
|
|
|
def default_branch?
|
2016-02-15 09:51:00 -05:00
|
|
|
Gitlab::Git.branch_ref?(params[:ref]) &&
|
2016-02-17 04:42:59 -05:00
|
|
|
(Gitlab::Git.ref_name(params[:ref]) == project.default_branch || project.default_branch.nil?)
|
2013-05-30 19:16:49 -04:00
|
|
|
end
|
|
|
|
|
2014-09-25 18:07:40 -04:00
|
|
|
def commit_user(commit)
|
2016-02-15 09:51:00 -05:00
|
|
|
commit.author || current_user
|
2013-02-25 14:21:38 -05:00
|
|
|
end
|
2016-02-11 06:50:27 -05:00
|
|
|
|
|
|
|
def branch_name
|
2016-02-17 04:42:59 -05:00
|
|
|
@branch_name ||= Gitlab::Git.ref_name(params[:ref])
|
2016-02-11 06:50:27 -05:00
|
|
|
end
|
2013-02-25 14:21:38 -05:00
|
|
|
end
|