2017-04-18 19:09:07 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class InstancesController < BaseController
|
2020-12-14 08:06:34 +00:00
|
|
|
before_action :set_instances, only: :index
|
2021-05-05 21:39:02 +00:00
|
|
|
before_action :set_instance, except: :index
|
2019-07-30 09:10:46 +00:00
|
|
|
|
2017-04-18 19:09:07 +00:00
|
|
|
def index
|
2017-11-11 19:23:33 +00:00
|
|
|
authorize :instance, :index?
|
2022-03-09 07:52:32 +00:00
|
|
|
preload_delivery_failures!
|
2017-04-18 19:09:07 +00:00
|
|
|
end
|
|
|
|
|
2019-01-08 12:39:49 +00:00
|
|
|
def show
|
|
|
|
authorize :instance, :show?
|
2022-03-09 07:52:32 +00:00
|
|
|
@time_period = (6.days.ago.to_date...Time.now.utc.to_date)
|
2017-07-20 21:07:13 +00:00
|
|
|
end
|
|
|
|
|
2021-12-17 22:01:21 +00:00
|
|
|
def destroy
|
|
|
|
authorize :instance, :destroy?
|
|
|
|
Admin::DomainPurgeWorker.perform_async(@instance.domain)
|
|
|
|
log_action :destroy, @instance
|
|
|
|
redirect_to admin_instances_path, notice: I18n.t('admin.instances.destroyed_msg', domain: @instance.domain)
|
|
|
|
end
|
|
|
|
|
2021-05-05 21:39:02 +00:00
|
|
|
def clear_delivery_errors
|
|
|
|
authorize :delivery, :clear_delivery_errors?
|
|
|
|
@instance.delivery_failure_tracker.clear_failures!
|
|
|
|
redirect_to admin_instance_path(@instance.domain)
|
|
|
|
end
|
|
|
|
|
|
|
|
def restart_delivery
|
|
|
|
authorize :delivery, :restart_delivery?
|
|
|
|
|
2022-03-09 07:52:32 +00:00
|
|
|
if @instance.unavailable?
|
2021-05-05 21:39:02 +00:00
|
|
|
@instance.delivery_failure_tracker.track_success!
|
2022-03-09 07:52:32 +00:00
|
|
|
log_action :destroy, @instance.unavailable_domain
|
2021-05-05 21:39:02 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
redirect_to admin_instance_path(@instance.domain)
|
|
|
|
end
|
|
|
|
|
|
|
|
def stop_delivery
|
|
|
|
authorize :delivery, :stop_delivery?
|
2022-03-09 07:52:32 +00:00
|
|
|
unavailable_domain = UnavailableDomain.create!(domain: @instance.domain)
|
2021-05-05 21:39:02 +00:00
|
|
|
log_action :create, unavailable_domain
|
|
|
|
redirect_to admin_instance_path(@instance.domain)
|
|
|
|
end
|
|
|
|
|
2017-04-18 19:09:07 +00:00
|
|
|
private
|
|
|
|
|
2019-07-30 09:10:46 +00:00
|
|
|
def set_instance
|
2023-01-05 13:03:46 +00:00
|
|
|
@instance = Instance.find(TagManager.instance.normalize_domain(params[:id]&.strip))
|
2020-12-14 08:06:34 +00:00
|
|
|
end
|
2019-07-30 09:10:46 +00:00
|
|
|
|
2020-12-14 08:06:34 +00:00
|
|
|
def set_instances
|
|
|
|
@instances = filtered_instances.page(params[:page])
|
2022-03-09 07:52:32 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def preload_delivery_failures!
|
2022-12-01 09:32:10 +00:00
|
|
|
warning_domains_map = DeliveryFailureTracker.warning_domains_map(@instances.map(&:domain))
|
2021-05-05 21:39:02 +00:00
|
|
|
|
|
|
|
@instances.each do |instance|
|
|
|
|
instance.failure_days = warning_domains_map[instance.domain]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-13 10:30:07 +00:00
|
|
|
def filtered_instances
|
2019-07-30 09:10:46 +00:00
|
|
|
InstanceFilter.new(whitelist_mode? ? { allowed: true } : filter_params).results
|
2017-09-13 10:30:07 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def filter_params
|
2020-01-20 14:55:03 +00:00
|
|
|
params.slice(*InstanceFilter::KEYS).permit(*InstanceFilter::KEYS)
|
2017-09-13 10:30:07 +00:00
|
|
|
end
|
2017-04-18 19:09:07 +00:00
|
|
|
end
|
|
|
|
end
|