2017-11-27 21:47:06 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-12-12 21:32:13 +00:00
|
|
|
class Settings::MigrationsController < Settings::BaseController
|
2020-09-11 18:56:35 +00:00
|
|
|
skip_before_action :require_functional!
|
2017-11-27 21:47:06 +00:00
|
|
|
|
2019-09-19 18:58:19 +00:00
|
|
|
before_action :require_not_suspended!
|
|
|
|
before_action :set_migrations
|
|
|
|
before_action :set_cooldown
|
|
|
|
|
2017-11-27 21:47:06 +00:00
|
|
|
def show
|
2019-09-19 18:58:19 +00:00
|
|
|
@migration = current_account.migrations.build
|
2017-11-27 21:47:06 +00:00
|
|
|
end
|
|
|
|
|
2019-09-19 18:58:19 +00:00
|
|
|
def create
|
|
|
|
@migration = current_account.migrations.build(resource_params)
|
2017-11-27 21:47:06 +00:00
|
|
|
|
2019-09-19 18:58:19 +00:00
|
|
|
if @migration.save_with_challenge(current_user)
|
2019-09-29 14:23:13 +00:00
|
|
|
MoveService.new.call(@migration)
|
2019-09-19 18:58:19 +00:00
|
|
|
redirect_to settings_migration_path, notice: I18n.t('migrations.moved_msg', acct: current_account.moved_to_account.acct)
|
2017-11-27 21:47:06 +00:00
|
|
|
else
|
|
|
|
render :show
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-19 18:58:19 +00:00
|
|
|
helper_method :on_cooldown?
|
|
|
|
|
2017-11-27 21:47:06 +00:00
|
|
|
private
|
|
|
|
|
|
|
|
def resource_params
|
2019-09-19 18:58:19 +00:00
|
|
|
params.require(:account_migration).permit(:acct, :current_password, :current_username)
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_migrations
|
|
|
|
@migrations = current_account.migrations.includes(:target_account).order(id: :desc).reject(&:new_record?)
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_cooldown
|
|
|
|
@cooldown = current_account.migrations.within_cooldown.first
|
|
|
|
end
|
|
|
|
|
|
|
|
def on_cooldown?
|
|
|
|
@cooldown.present?
|
2017-11-27 21:47:06 +00:00
|
|
|
end
|
|
|
|
end
|