2022-10-13 05:42:37 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-11-10 04:46:00 -08:00
|
|
|
class Api::V1::Instances::DomainBlocksController < Api::V1::Instances::BaseController
|
2022-10-13 05:42:37 -07:00
|
|
|
before_action :require_enabled_api!
|
|
|
|
before_action :set_domain_blocks
|
|
|
|
|
2023-04-26 02:42:47 -07:00
|
|
|
vary_by '', if: -> { Setting.show_domain_blocks == 'all' }
|
2023-04-25 06:41:34 -07:00
|
|
|
|
2022-10-13 05:42:37 -07:00
|
|
|
def index
|
2023-04-26 02:42:47 -07:00
|
|
|
if Setting.show_domain_blocks == 'all'
|
|
|
|
cache_even_if_authenticated!
|
|
|
|
else
|
|
|
|
cache_if_unauthenticated!
|
|
|
|
end
|
|
|
|
|
2023-11-14 02:31:59 -08:00
|
|
|
render json: @domain_blocks, each_serializer: REST::DomainBlockSerializer, with_comment: show_rationale_in_response?
|
2022-10-13 05:42:37 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def require_enabled_api!
|
2023-11-20 03:05:28 -08: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 05:42:37 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_domain_blocks
|
|
|
|
@domain_blocks = DomainBlock.with_user_facing_limitations.by_severity
|
|
|
|
end
|
2023-11-14 02:31:59 -08: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 05:42:37 -07:00
|
|
|
end
|