expire_pipeline_cache_worker.rb 1.42 KB
Newer Older
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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
class ExpirePipelineCacheWorker
  include Sidekiq::Worker
  include PipelineQueue

  def perform(id)
    pipeline = Ci::Pipeline.find(id)
    project = pipeline.project
    store = Gitlab::EtagCaching::Store.new

    store.touch(project_pipelines_path(project))
    store.touch(commit_pipelines_path(project, pipeline.commit)) if pipeline.commit
    store.touch(new_merge_request_pipelines_path(project))
    merge_requests_pipelines_paths(project, pipeline).each { |path| store.touch(path) }

    Gitlab::Cache::Ci::ProjectPipelineStatus.update_for_pipeline(pipeline)
  end

  private

  def project_pipelines_path(project)
    Gitlab::Routing.url_helpers.namespace_project_pipelines_path(
      project.namespace,
      project,
      format: :json)
  end

  def commit_pipelines_path(project, commit)
    Gitlab::Routing.url_helpers.pipelines_namespace_project_commit_path(
      project.namespace,
      project,
      commit.id,
      format: :json)
  end

  def new_merge_request_pipelines_path(project)
    Gitlab::Routing.url_helpers.new_namespace_project_merge_request_path(
      project.namespace,
      project,
      format: :json)
  end

  def merge_requests_pipelines_paths(project, pipeline)
    pipeline.all_merge_requests.collect do |merge_request|
      Gitlab::Routing.url_helpers.pipelines_namespace_project_merge_request_path(
        project.namespace,
        project,
        merge_request,
        format: :json)
    end
  end
end