2022-10-13 14:42:37 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-11-10 13:46:00 +01:00
|
|
|
class Api::V1::Instances::DomainBlocksController < Api::V1::Instances::BaseController
|
2022-10-13 14:42:37 +02:00
|
|
|
before_action :require_enabled_api!
|
|
|
|
before_action :set_domain_blocks
|
|
|
|
|
2023-04-26 11:42:47 +02:00
|
|
|
vary_by '', if: -> { Setting.show_domain_blocks == 'all' }
|
2023-04-25 15:41:34 +02:00
|
|
|
|
2022-10-13 14:42:37 +02:00
|
|
|
def index
|
2023-04-26 11:42:47 +02:00
|
|
|
if Setting.show_domain_blocks == 'all'
|
|
|
|
cache_even_if_authenticated!
|
|
|
|
else
|
|
|
|
cache_if_unauthenticated!
|
|
|
|
end
|
|
|
|
|
2023-11-14 11:31:59 +01:00
|
|
|
render json: @domain_blocks, each_serializer: REST::DomainBlockSerializer, with_comment: show_rationale_in_response?
|
2022-10-13 14:42:37 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def require_enabled_api!
|
2023-11-20 12:05:28 +01:00
|
|
|
head 404 unless api_enabled?
|
|
|
|
end
|
|
|
|
|
|
|
|
def api_enabled?
|
|
|
|
show_domain_blocks_for_all? || show_domain_blocks_to_user?
|
|
|
|
end
|
|
|
|
|
|
|
|
def show_domain_blocks_for_all?
|
|
|
|
Setting.show_domain_blocks == 'all'
|
|
|
|
end
|
|
|
|
|
|
|
|
def show_domain_blocks_to_user?
|
|
|
|
Setting.show_domain_blocks == 'users' && user_signed_in?
|
2022-10-13 14:42:37 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_domain_blocks
|
|
|
|
@domain_blocks = DomainBlock.with_user_facing_limitations.by_severity
|
|
|
|
end
|
2023-11-14 11:31:59 +01:00
|
|
|
|
|
|
|
def show_rationale_in_response?
|
|
|
|
always_show_rationale? || show_rationale_for_user?
|
|
|
|
end
|
|
|
|
|
|
|
|
def always_show_rationale?
|
|
|
|
Setting.show_domain_blocks_rationale == 'all'
|
|
|
|
end
|
|
|
|
|
|
|
|
def show_rationale_for_user?
|
|
|
|
Setting.show_domain_blocks_rationale == 'users' && user_signed_in?
|
|
|
|
end
|
2022-10-13 14:42:37 +02:00
|
|
|
end
|