2019-03-28 10:59:24 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Git
|
|
|
|
class BranchHooksService < ::Git::BaseHooksService
|
|
|
|
def execute
|
|
|
|
execute_branch_hooks
|
|
|
|
|
|
|
|
super.tap do
|
2020-02-06 19:09:12 -05:00
|
|
|
enqueue_update_signatures
|
2019-03-28 10:59:24 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def hook_name
|
|
|
|
:push_hooks
|
|
|
|
end
|
|
|
|
|
|
|
|
def commits
|
|
|
|
strong_memoize(:commits) do
|
|
|
|
if creating_default_branch?
|
|
|
|
# The most recent PROCESS_COMMIT_LIMIT commits in the default branch
|
2019-10-03 11:07:07 -04:00
|
|
|
project.repository.commits(newrev, limit: PROCESS_COMMIT_LIMIT)
|
2019-03-28 10:59:24 -04:00
|
|
|
elsif creating_branch?
|
|
|
|
# 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.
|
2019-10-03 11:07:07 -04:00
|
|
|
project.repository.commits_between(project.default_branch, newrev)
|
2019-03-28 10:59:24 -04:00
|
|
|
elsif updating_branch?
|
2019-10-03 11:07:07 -04:00
|
|
|
project.repository.commits_between(oldrev, newrev)
|
2019-03-28 10:59:24 -04:00
|
|
|
else # removing branch
|
|
|
|
[]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def commits_count
|
|
|
|
return count_commits_in_branch if creating_default_branch?
|
|
|
|
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def invalidated_file_types
|
|
|
|
return super unless default_branch? && !creating_branch?
|
|
|
|
|
|
|
|
paths = limited_commits.each_with_object(Set.new) do |commit, set|
|
|
|
|
commit.raw_deltas.each do |diff|
|
|
|
|
set << diff.new_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
Gitlab::FileDetector.types_in_paths(paths)
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute_branch_hooks
|
|
|
|
project.repository.after_push_commit(branch_name)
|
|
|
|
|
|
|
|
branch_create_hooks if creating_branch?
|
|
|
|
branch_update_hooks if updating_branch?
|
|
|
|
branch_change_hooks if creating_branch? || updating_branch?
|
|
|
|
branch_remove_hooks if removing_branch?
|
|
|
|
end
|
|
|
|
|
|
|
|
def branch_create_hooks
|
2019-08-09 06:09:06 -04:00
|
|
|
project.repository.after_create_branch(expire_cache: false)
|
2019-03-28 10:59:24 -04:00
|
|
|
project.after_create_default_branch if default_branch?
|
|
|
|
end
|
|
|
|
|
|
|
|
def branch_update_hooks
|
|
|
|
# Update the bare repositories info/attributes file using the contents of
|
|
|
|
# the default branch's .gitattributes file
|
2019-10-03 11:07:07 -04:00
|
|
|
project.repository.copy_gitattributes(ref) if default_branch?
|
2019-03-28 10:59:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def branch_change_hooks
|
|
|
|
enqueue_process_commit_messages
|
2020-09-01 08:11:01 -04:00
|
|
|
enqueue_jira_connect_sync_messages
|
2019-03-28 10:59:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def branch_remove_hooks
|
2019-08-09 06:09:06 -04:00
|
|
|
project.repository.after_remove_branch(expire_cache: false)
|
2019-03-28 10:59:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Schedules processing of commit messages
|
|
|
|
def enqueue_process_commit_messages
|
2019-08-16 14:26:31 -04:00
|
|
|
referencing_commits = limited_commits.select(&:matches_cross_reference_regex?)
|
|
|
|
|
|
|
|
upstream_commit_ids = upstream_commit_ids(referencing_commits)
|
|
|
|
|
|
|
|
referencing_commits.each do |commit|
|
|
|
|
# Avoid reprocessing commits that already exist upstream if the project
|
|
|
|
# is a fork. This will prevent duplicated/superfluous system notes on
|
|
|
|
# mentionables referenced by a commit that is pushed to the upstream,
|
|
|
|
# that is then also pushed to forks when these get synced by users.
|
|
|
|
next if upstream_commit_ids.include?(commit.id)
|
2019-03-28 10:59:24 -04:00
|
|
|
|
|
|
|
ProcessCommitWorker.perform_async(
|
|
|
|
project.id,
|
|
|
|
current_user.id,
|
|
|
|
commit.to_hash,
|
|
|
|
default_branch?
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-09-01 08:11:01 -04:00
|
|
|
def enqueue_jira_connect_sync_messages
|
|
|
|
return unless project.jira_subscription_exists?
|
|
|
|
|
|
|
|
branch_to_sync = branch_name if Atlassian::JiraIssueKeyExtractor.has_keys?(branch_name)
|
|
|
|
commits_to_sync = limited_commits.select { |commit| Atlassian::JiraIssueKeyExtractor.has_keys?(commit.safe_message) }.map(&:sha)
|
|
|
|
|
|
|
|
if branch_to_sync || commits_to_sync.any?
|
|
|
|
JiraConnect::SyncBranchWorker.perform_async(project.id, branch_to_sync, commits_to_sync)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-02-06 19:09:12 -05:00
|
|
|
def unsigned_x509_shas(commits)
|
|
|
|
X509CommitSignature.unsigned_commit_shas(commits.map(&:sha))
|
|
|
|
end
|
|
|
|
|
|
|
|
def unsigned_gpg_shas(commits)
|
|
|
|
GpgSignature.unsigned_commit_shas(commits.map(&:sha))
|
|
|
|
end
|
|
|
|
|
|
|
|
def enqueue_update_signatures
|
2020-04-28 02:09:49 -04:00
|
|
|
unsigned = unsigned_x509_shas(limited_commits) & unsigned_gpg_shas(limited_commits)
|
2019-03-28 10:59:24 -04:00
|
|
|
return if unsigned.empty?
|
|
|
|
|
|
|
|
signable = Gitlab::Git::Commit.shas_with_signatures(project.repository, unsigned)
|
|
|
|
return if signable.empty?
|
|
|
|
|
2020-02-06 19:09:12 -05:00
|
|
|
CreateCommitSignatureWorker.perform_async(signable, project.id)
|
2019-03-28 10:59:24 -04:00
|
|
|
end
|
|
|
|
|
Look for new branches more carefully
In certain cases, GitLab can miss a PostReceive invocation the first
time a branch is pushed. When this happens, the "branch created" hooks
are not run, which means various features don't work until the branch
is deleted and pushed again.
This MR changes the `Git::BranchPushService` so it checks the cache of
existing branches in addition to the `oldrev` reported for the branch.
If the branch name isn't in the cache, chances are we haven't run the
service yet (it's what refreshes the cache), so we can go ahead and
run it, even through `oldrev` is set.
If the cache has been cleared by some other means in the meantime, then
we'll still fail to run the hooks when we should. Fixing that in the
general case is a larger problem, and we'd need to devote significant
engineering effort to it.
There's a chance that we'll run the relevant hooks *multiple times*
with this change, if there's a race between the branch being created,
and the `PostReceive` worker being run multiple times, but this can
already happen, since Sidekiq is "at-least-once" execution of jobs. So,
this should be safe.
2019-06-17 11:12:05 -04:00
|
|
|
# It's not sufficient to just check for a blank SHA as it's possible for the
|
|
|
|
# branch to be pushed, but for the `post-receive` hook to never run:
|
2019-09-18 10:02:45 -04:00
|
|
|
# https://gitlab.com/gitlab-org/gitlab-foss/issues/59257
|
2019-03-28 10:59:24 -04:00
|
|
|
def creating_branch?
|
Look for new branches more carefully
In certain cases, GitLab can miss a PostReceive invocation the first
time a branch is pushed. When this happens, the "branch created" hooks
are not run, which means various features don't work until the branch
is deleted and pushed again.
This MR changes the `Git::BranchPushService` so it checks the cache of
existing branches in addition to the `oldrev` reported for the branch.
If the branch name isn't in the cache, chances are we haven't run the
service yet (it's what refreshes the cache), so we can go ahead and
run it, even through `oldrev` is set.
If the cache has been cleared by some other means in the meantime, then
we'll still fail to run the hooks when we should. Fixing that in the
general case is a larger problem, and we'd need to devote significant
engineering effort to it.
There's a chance that we'll run the relevant hooks *multiple times*
with this change, if there's a race between the branch being created,
and the `PostReceive` worker being run multiple times, but this can
already happen, since Sidekiq is "at-least-once" execution of jobs. So,
this should be safe.
2019-06-17 11:12:05 -04:00
|
|
|
strong_memoize(:creating_branch) do
|
2019-10-03 11:07:07 -04:00
|
|
|
Gitlab::Git.blank_ref?(oldrev) ||
|
Look for new branches more carefully
In certain cases, GitLab can miss a PostReceive invocation the first
time a branch is pushed. When this happens, the "branch created" hooks
are not run, which means various features don't work until the branch
is deleted and pushed again.
This MR changes the `Git::BranchPushService` so it checks the cache of
existing branches in addition to the `oldrev` reported for the branch.
If the branch name isn't in the cache, chances are we haven't run the
service yet (it's what refreshes the cache), so we can go ahead and
run it, even through `oldrev` is set.
If the cache has been cleared by some other means in the meantime, then
we'll still fail to run the hooks when we should. Fixing that in the
general case is a larger problem, and we'd need to devote significant
engineering effort to it.
There's a chance that we'll run the relevant hooks *multiple times*
with this change, if there's a race between the branch being created,
and the `PostReceive` worker being run multiple times, but this can
already happen, since Sidekiq is "at-least-once" execution of jobs. So,
this should be safe.
2019-06-17 11:12:05 -04:00
|
|
|
!project.repository.branch_exists?(branch_name)
|
|
|
|
end
|
2019-03-28 10:59:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def updating_branch?
|
|
|
|
!creating_branch? && !removing_branch?
|
|
|
|
end
|
|
|
|
|
|
|
|
def removing_branch?
|
2019-10-03 11:07:07 -04:00
|
|
|
Gitlab::Git.blank_ref?(newrev)
|
2019-03-28 10:59:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def creating_default_branch?
|
|
|
|
creating_branch? && default_branch?
|
|
|
|
end
|
|
|
|
|
|
|
|
def count_commits_in_branch
|
|
|
|
strong_memoize(:count_commits_in_branch) do
|
2019-10-03 11:07:07 -04:00
|
|
|
project.repository.commit_count_for_ref(ref)
|
2019-03-28 10:59:24 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def default_branch?
|
|
|
|
strong_memoize(:default_branch) do
|
|
|
|
[nil, branch_name].include?(project.default_branch)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def branch_name
|
2019-10-03 11:07:07 -04:00
|
|
|
strong_memoize(:branch_name) { Gitlab::Git.ref_name(ref) }
|
2019-03-28 10:59:24 -04:00
|
|
|
end
|
2019-08-16 14:26:31 -04:00
|
|
|
|
|
|
|
def upstream_commit_ids(commits)
|
|
|
|
set = Set.new
|
|
|
|
|
|
|
|
upstream_project = project.fork_source
|
|
|
|
if upstream_project
|
|
|
|
upstream_project
|
|
|
|
.commits_by(oids: commits.map(&:id))
|
|
|
|
.each { |commit| set << commit.id }
|
|
|
|
end
|
|
|
|
|
|
|
|
set
|
|
|
|
end
|
2019-03-28 10:59:24 -04:00
|
|
|
end
|
|
|
|
end
|
2019-09-13 09:26:31 -04:00
|
|
|
|
|
|
|
Git::BranchHooksService.prepend_if_ee('::EE::Git::BranchHooksService')
|