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