summaryrefslogtreecommitdiff
path: root/app/controllers/admin/background_migrations_controller.rb
blob: e21e6fd2dcba2ba1614e339312419a7bfbb95265 (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
34
35
36
37
38
39
40
41
42
43
44
# frozen_string_literal: true

class Admin::BackgroundMigrationsController < Admin::ApplicationController
  feature_category :database

  def index
    @relations_by_tab = {
      'queued' => batched_migration_class.queued.queue_order,
      'failed' => batched_migration_class.failed.queue_order,
      'finished' => batched_migration_class.finished.queue_order.reverse_order
    }

    @current_tab = @relations_by_tab.key?(params[:tab]) ? params[:tab] : 'queued'
    @migrations = @relations_by_tab[@current_tab].page(params[:page])
    @successful_rows_counts = batched_migration_class.successful_rows_counts(@migrations.map(&:id))
  end

  def pause
    migration = batched_migration_class.find(params[:id])
    migration.paused!

    redirect_back fallback_location: { action: 'index' }
  end

  def resume
    migration = batched_migration_class.find(params[:id])
    migration.active!

    redirect_back fallback_location: { action: 'index' }
  end

  def retry
    migration = batched_migration_class.find(params[:id])
    migration.retry_failed_jobs! if migration.failed?

    redirect_back fallback_location: { action: 'index' }
  end

  private

  def batched_migration_class
    @batched_migration_class ||= Gitlab::Database::BackgroundMigration::BatchedMigration
  end
end