branch_push_service.rb 2.5 KB
Newer Older
1 2 3
# frozen_string_literal: true

module Git
4
  class BranchPushService < ::BaseService
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
    include Gitlab::Access
    include Gitlab::Utils::StrongMemoize

    # 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
22 23 24 25 26
      return unless Gitlab::Git.branch_ref?(params[:ref])

      enqueue_update_mrs
      enqueue_detect_repository_languages

27 28 29 30
      execute_related_hooks
      perform_housekeeping

      update_remote_mirrors
31
      stop_environments
32

33
      true
34 35
    end

36 37 38 39 40 41 42 43 44 45
    # 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
      UpdateMergeRequestsWorker.perform_async(
        project.id,
        current_user.id,
        params[:oldrev],
        params[:newrev],
        params[:ref]
      )
46 47
    end

48 49
    def enqueue_detect_repository_languages
      return unless default_branch?
50

51
      DetectRepositoryLanguagesWorker.perform_async(project.id)
52 53
    end

54 55 56
    # Only stop environments if the ref is a branch that is being deleted
    def stop_environments
      return unless removing_branch?
57

58
      Ci::StopEnvironmentsService.new(project, current_user).execute(branch_name)
59 60 61 62 63 64 65 66 67 68
    end

    def update_remote_mirrors
      return unless project.has_remote_mirror?

      project.mark_stuck_remote_mirrors_as_failed!
      project.update_remote_mirrors
    end

    def execute_related_hooks
69
      BranchHooksService.new(project, current_user, params).execute
70 71 72 73 74 75 76 77 78
    end

    def perform_housekeeping
      housekeeping = Projects::HousekeepingService.new(project)
      housekeeping.increment!
      housekeeping.execute if housekeeping.needed?
    rescue Projects::HousekeepingService::LeaseTaken
    end

79 80
    def removing_branch?
      Gitlab::Git.blank_ref?(params[:newrev])
81 82 83
    end

    def branch_name
84
      strong_memoize(:branch_name) { Gitlab::Git.ref_name(params[:ref]) }
85 86
    end

87 88 89
    def default_branch?
      strong_memoize(:default_branch) do
        [nil, branch_name].include?(project.default_branch)
90 91 92 93
      end
    end
  end
end