summaryrefslogtreecommitdiff
path: root/app/workers/update_external_pull_requests_worker.rb
blob: 4b3cda6b8f3908a71dbf1b84d6548b4fcfe76445 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true

class UpdateExternalPullRequestsWorker # rubocop:disable Scalability/IdempotentWorker
  include ApplicationWorker

  data_consistency :always

  sidekiq_options retry: 3

  feature_category :continuous_integration
  weight 3
  loggable_arguments 2

  def perform(project_id, user_id, ref)
    project = Project.find_by_id(project_id)
    return unless project

    user = User.find_by_id(user_id)
    return unless user

    branch = Gitlab::Git.branch_name(ref)
    return unless branch

    external_pull_requests = project.external_pull_requests
      .by_source_repository(project.import_source)
      .by_source_branch(branch)

    external_pull_requests.find_each do |pull_request|
      Ci::ExternalPullRequests::CreatePipelineService.new(project, user)
        .execute(pull_request)
    end
  end
end