2017-04-18 12:09:07 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class InstancesController < BaseController
|
|
|
|
def index
|
2017-11-11 11:23:33 -08:00
|
|
|
authorize :instance, :index?
|
2019-01-08 04:39:49 -08:00
|
|
|
|
2017-05-31 11:38:44 -07:00
|
|
|
@instances = ordered_instances
|
2017-04-18 12:09:07 -07:00
|
|
|
end
|
|
|
|
|
2019-01-08 04:39:49 -08:00
|
|
|
def show
|
|
|
|
authorize :instance, :show?
|
|
|
|
|
|
|
|
@instance = Instance.new(Account.by_domain_accounts.find_by(domain: params[:id]) || DomainBlock.find_by!(domain: params[:id]))
|
|
|
|
@following_count = Follow.where(account: Account.where(domain: params[:id])).count
|
|
|
|
@followers_count = Follow.where(target_account: Account.where(domain: params[:id])).count
|
|
|
|
@reports_count = Report.where(target_account: Account.where(domain: params[:id])).count
|
|
|
|
@blocks_count = Block.where(target_account: Account.where(domain: params[:id])).count
|
|
|
|
@available = DeliveryFailureTracker.available?(Account.select(:shared_inbox_url).where(domain: params[:id]).first&.shared_inbox_url)
|
|
|
|
@media_storage = MediaAttachment.where(account: Account.where(domain: params[:id])).sum(:file_file_size)
|
|
|
|
@domain_block = DomainBlock.find_by(domain: params[:id])
|
2017-07-20 14:07:13 -07:00
|
|
|
end
|
|
|
|
|
2017-04-18 12:09:07 -07:00
|
|
|
private
|
|
|
|
|
2017-09-13 03:30:07 -07:00
|
|
|
def filtered_instances
|
|
|
|
InstanceFilter.new(filter_params).results
|
|
|
|
end
|
|
|
|
|
2017-05-31 11:38:44 -07:00
|
|
|
def paginated_instances
|
2017-09-13 03:30:07 -07:00
|
|
|
filtered_instances.page(params[:page])
|
2017-05-31 11:38:44 -07:00
|
|
|
end
|
2017-07-20 14:07:13 -07:00
|
|
|
|
2017-05-31 11:38:44 -07:00
|
|
|
helper_method :paginated_instances
|
|
|
|
|
2017-04-18 12:09:07 -07:00
|
|
|
def ordered_instances
|
2019-01-08 04:39:49 -08:00
|
|
|
paginated_instances.map { |resource| Instance.new(resource) }
|
2017-07-20 14:07:13 -07:00
|
|
|
end
|
2017-09-13 03:30:07 -07:00
|
|
|
|
|
|
|
def filter_params
|
2019-02-18 05:59:19 -08:00
|
|
|
params.permit(:limited, :by_domain)
|
2017-09-13 03:30:07 -07:00
|
|
|
end
|
2017-04-18 12:09:07 -07:00
|
|
|
end
|
|
|
|
end
|