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 52 53 54 55 56 57 58 59 60 61 62
|
# frozen_string_literal: true
module API
module Admin
class Migrations < ::API::Base
feature_category :database
urgency :low
before do
authenticated_as_admin!
end
namespace 'admin' do
resources 'migrations/:timestamp/mark' do
desc 'Mark the migration as successfully executed' do
success [
{ code: 201, message: '201 Created' }
]
failure [
{ code: 401, message: '401 Unauthorized' },
{ code: 403, message: '403 Forbidden' },
{ code: 404, message: '404 Not found' },
{ code: 422, message: 'You can mark only pending migrations' }
]
tags %w[migrations]
end
params do
optional :database,
type: String,
values: Gitlab::Database.all_database_names,
desc: 'The name of the database',
default: 'main'
requires :timestamp,
type: Integer,
desc: 'The migration version timestamp'
end
post do
response = Database::MarkMigrationService.new(
connection: base_model.connection,
version: params[:timestamp]
).execute
if response.success?
created!
elsif response.reason == :not_found
not_found!
else
render_api_error!('You can mark only pending migrations', 422)
end
end
end
end
helpers do
def base_model
database = params[:database] || Gitlab::Database::MAIN_DATABASE_NAME
@base_model ||= Gitlab::Database.database_base_models[database]
end
end
end
end
end
|