debian-mirror-gitlab/app/services/git/branch_push_service.rb

98 lines
2.5 KiB
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
module Git
2019-07-31 22:56:46 +05:30
class BranchPushService < ::BaseService
2019-07-07 11:18:12 +05:30
include Gitlab::Access
include Gitlab::Utils::StrongMemoize
2019-12-21 20:55:43 +05:30
include ChangeParams
2019-07-07 11:18:12 +05:30
# This method will be called after each git update
# and only if the provided user and project are present in GitLab.
#
# All callbacks for post receive action should be placed here.
#
# Next, this method:
# 1. Creates the push event
# 2. Updates merge requests
# 3. Recognizes cross-references from commit messages
# 4. Executes the project's webhooks
# 5. Executes the project's services
# 6. Checks if the project's main language has changed
#
def execute
2019-12-21 20:55:43 +05:30
return unless Gitlab::Git.branch_ref?(ref)
2019-07-31 22:56:46 +05:30
enqueue_update_mrs
enqueue_detect_repository_languages
2019-07-07 11:18:12 +05:30
execute_related_hooks
perform_housekeeping
2019-07-31 22:56:46 +05:30
stop_environments
2020-07-28 23:09:34 +05:30
unlock_artifacts
2019-07-07 11:18:12 +05:30
2019-07-31 22:56:46 +05:30
true
2019-07-07 11:18:12 +05:30
end
2019-07-31 22:56:46 +05:30
# Update merge requests that may be affected by this push. A new branch
# could cause the last commit of a merge request to change.
def enqueue_update_mrs
2020-04-22 19:07:51 +05:30
return if params[:merge_request_branches]&.exclude?(branch_name)
2019-07-31 22:56:46 +05:30
UpdateMergeRequestsWorker.perform_async(
project.id,
current_user.id,
2019-12-21 20:55:43 +05:30
oldrev,
newrev,
ref
2019-07-31 22:56:46 +05:30
)
2019-07-07 11:18:12 +05:30
end
2019-07-31 22:56:46 +05:30
def enqueue_detect_repository_languages
return unless default_branch?
2019-07-07 11:18:12 +05:30
2019-09-04 21:01:54 +05:30
DetectRepositoryLanguagesWorker.perform_async(project.id)
2019-07-07 11:18:12 +05:30
end
2019-07-31 22:56:46 +05:30
# Only stop environments if the ref is a branch that is being deleted
def stop_environments
return unless removing_branch?
2019-07-07 11:18:12 +05:30
2019-07-31 22:56:46 +05:30
Ci::StopEnvironmentsService.new(project, current_user).execute(branch_name)
2019-07-07 11:18:12 +05:30
end
2020-07-28 23:09:34 +05:30
def unlock_artifacts
return unless removing_branch?
Ci::RefDeleteUnlockArtifactsWorker.perform_async(project.id, current_user.id, ref)
end
2019-07-07 11:18:12 +05:30
def execute_related_hooks
2019-07-31 22:56:46 +05:30
BranchHooksService.new(project, current_user, params).execute
2019-07-07 11:18:12 +05:30
end
def perform_housekeeping
housekeeping = Projects::HousekeepingService.new(project)
housekeeping.increment!
housekeeping.execute if housekeeping.needed?
rescue Projects::HousekeepingService::LeaseTaken
end
2019-07-31 22:56:46 +05:30
def removing_branch?
2019-12-21 20:55:43 +05:30
Gitlab::Git.blank_ref?(newrev)
2019-07-07 11:18:12 +05:30
end
def branch_name
2019-12-21 20:55:43 +05:30
strong_memoize(:branch_name) { Gitlab::Git.ref_name(ref) }
2019-07-07 11:18:12 +05:30
end
2019-07-31 22:56:46 +05:30
def default_branch?
strong_memoize(:default_branch) do
[nil, branch_name].include?(project.default_branch)
2019-07-07 11:18:12 +05:30
end
end
end
end
2019-12-04 20:38:33 +05:30
Git::BranchPushService.prepend_if_ee('::EE::Git::BranchPushService')