2017-12-29 19:52:04 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-11-10 13:46:00 +01:00
|
|
|
class Api::V1::Instances::PeersController < Api::V1::Instances::BaseController
|
2017-12-29 19:52:04 +01:00
|
|
|
before_action :require_enabled_api!
|
2019-07-30 11:10:46 +02:00
|
|
|
|
2023-04-25 22:14:44 +02:00
|
|
|
skip_around_action :set_locale
|
2017-12-29 19:52:04 +01:00
|
|
|
|
2023-04-25 22:14:44 +02:00
|
|
|
# Override `current_user` to avoid reading session cookies unless in whitelist mode
|
|
|
|
def current_user
|
2023-08-02 19:32:48 +02:00
|
|
|
super if limited_federation_mode?
|
2023-04-25 22:14:44 +02:00
|
|
|
end
|
|
|
|
|
2017-12-29 19:52:04 +01:00
|
|
|
def index
|
2023-04-25 15:41:34 +02:00
|
|
|
cache_even_if_authenticated!
|
2023-07-27 16:11:17 +02:00
|
|
|
render_with_cache(expires_in: 1.day) { Instance.searchable.pluck(:domain) }
|
2017-12-29 19:52:04 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def require_enabled_api!
|
2023-08-02 19:32:48 +02:00
|
|
|
head 404 unless Setting.peers_api_enabled && !limited_federation_mode?
|
2017-12-29 19:52:04 +01:00
|
|
|
end
|
|
|
|
end
|