2017-07-07 11:02:06 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class REST::InstanceSerializer < ActiveModel::Serializer
|
2017-09-14 07:04:30 +09:00
|
|
|
include RoutingHelper
|
|
|
|
|
2017-07-07 11:02:06 +09:00
|
|
|
attributes :uri, :title, :description, :email,
|
2019-03-06 21:36:09 +09:00
|
|
|
:version, :urls, :stats, :thumbnail, :max_toot_chars, :poll_limits,
|
2019-02-16 13:23:47 +09:00
|
|
|
:languages, :registrations
|
2018-03-02 04:48:11 +09:00
|
|
|
|
|
|
|
has_one :contact_account, serializer: REST::AccountSerializer
|
|
|
|
|
|
|
|
delegate :contact_account, to: :instance_presenter
|
2017-07-07 11:02:06 +09:00
|
|
|
|
|
|
|
def uri
|
|
|
|
Rails.configuration.x.local_domain
|
|
|
|
end
|
|
|
|
|
|
|
|
def title
|
|
|
|
Setting.site_title
|
|
|
|
end
|
|
|
|
|
|
|
|
def description
|
|
|
|
Setting.site_description
|
|
|
|
end
|
|
|
|
|
|
|
|
def email
|
|
|
|
Setting.site_contact_email
|
|
|
|
end
|
|
|
|
|
|
|
|
def version
|
|
|
|
Mastodon::Version.to_s
|
|
|
|
end
|
|
|
|
|
2017-09-14 07:04:30 +09:00
|
|
|
def thumbnail
|
2018-01-04 23:36:55 +09:00
|
|
|
instance_presenter.thumbnail ? full_asset_url(instance_presenter.thumbnail.file.url) : full_pack_url('preview.jpg')
|
2017-09-14 07:04:30 +09:00
|
|
|
end
|
|
|
|
|
2017-11-15 01:56:38 +09:00
|
|
|
def max_toot_chars
|
2017-11-15 00:23:12 +09:00
|
|
|
StatusLengthValidator::MAX_CHARS
|
|
|
|
end
|
|
|
|
|
2019-03-06 21:36:09 +09:00
|
|
|
def poll_limits
|
|
|
|
{
|
|
|
|
max_options: PollValidator::MAX_OPTIONS,
|
|
|
|
max_option_chars: PollValidator::MAX_OPTION_CHARS,
|
2019-03-09 04:20:40 +09:00
|
|
|
min_expiration: PollValidator::MIN_EXPIRATION,
|
|
|
|
max_expiration: PollValidator::MAX_EXPIRATION,
|
2019-03-06 21:36:09 +09:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2017-08-09 05:18:12 +09:00
|
|
|
def stats
|
|
|
|
{
|
|
|
|
user_count: instance_presenter.user_count,
|
|
|
|
status_count: instance_presenter.status_count,
|
|
|
|
domain_count: instance_presenter.domain_count,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2017-07-07 11:02:06 +09:00
|
|
|
def urls
|
|
|
|
{ streaming_api: Rails.configuration.x.streaming_api_base_url }
|
|
|
|
end
|
2017-08-09 05:18:12 +09:00
|
|
|
|
2018-03-02 04:48:11 +09:00
|
|
|
def languages
|
2018-03-04 18:00:46 +09:00
|
|
|
[I18n.default_locale]
|
2018-03-02 04:48:11 +09:00
|
|
|
end
|
|
|
|
|
2019-02-16 13:23:47 +09:00
|
|
|
def registrations
|
|
|
|
Setting.open_registrations && !Rails.configuration.x.single_user_mode
|
|
|
|
end
|
|
|
|
|
2017-08-09 05:18:12 +09:00
|
|
|
private
|
|
|
|
|
|
|
|
def instance_presenter
|
|
|
|
@instance_presenter ||= InstancePresenter.new
|
|
|
|
end
|
2017-07-07 11:02:06 +09:00
|
|
|
end
|