2023-07-27 14:11:17 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::Peers::SearchController < Api::BaseController
|
|
|
|
before_action :require_enabled_api!
|
|
|
|
before_action :set_domains
|
|
|
|
|
2023-08-02 17:32:48 +00:00
|
|
|
skip_before_action :require_authenticated_user!, unless: :limited_federation_mode?
|
2023-07-27 14:11:17 +00:00
|
|
|
skip_around_action :set_locale
|
|
|
|
|
|
|
|
vary_by ''
|
|
|
|
|
|
|
|
def index
|
|
|
|
cache_even_if_authenticated!
|
|
|
|
render json: @domains
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def require_enabled_api!
|
2023-08-02 17:32:48 +00:00
|
|
|
head 404 unless Setting.peers_api_enabled && !limited_federation_mode?
|
2023-07-27 14:11:17 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_domains
|
|
|
|
return if params[:q].blank?
|
|
|
|
|
|
|
|
if Chewy.enabled?
|
|
|
|
@domains = InstancesIndex.query(function_score: {
|
|
|
|
query: {
|
|
|
|
prefix: {
|
2023-08-01 12:52:32 +00:00
|
|
|
domain: TagManager.instance.normalize_domain(params[:q].strip),
|
2023-07-27 14:11:17 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
field_value_factor: {
|
|
|
|
field: 'accounts_count',
|
|
|
|
modifier: 'log2p',
|
|
|
|
},
|
|
|
|
}).limit(10).pluck(:domain)
|
|
|
|
else
|
|
|
|
domain = params[:q].strip
|
|
|
|
domain = TagManager.instance.normalize_domain(domain)
|
|
|
|
@domains = Instance.searchable.where(Instance.arel_table[:domain].matches("#{Instance.sanitize_sql_like(domain)}%", false, true)).limit(10).pluck(:domain)
|
|
|
|
end
|
2023-09-05 21:49:48 +00:00
|
|
|
rescue Addressable::URI::InvalidURIError
|
|
|
|
@domains = []
|
2023-07-27 14:11:17 +00:00
|
|
|
end
|
|
|
|
end
|