2017-07-06 19:02:06 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class REST::InstanceSerializer < ActiveModel::Serializer
|
2017-09-13 15:04:30 -07:00
|
|
|
include RoutingHelper
|
|
|
|
|
2017-07-06 19:02:06 -07:00
|
|
|
attributes :uri, :title, :description, :email,
|
2018-03-01 11:48:11 -08:00
|
|
|
:version, :urls, :stats, :thumbnail,
|
|
|
|
:languages
|
|
|
|
|
|
|
|
has_one :contact_account, serializer: REST::AccountSerializer
|
|
|
|
|
|
|
|
delegate :contact_account, to: :instance_presenter
|
2017-07-06 19:02:06 -07: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 15:04:30 -07:00
|
|
|
def thumbnail
|
2018-01-04 06:36:55 -08:00
|
|
|
instance_presenter.thumbnail ? full_asset_url(instance_presenter.thumbnail.file.url) : full_pack_url('preview.jpg')
|
2017-09-13 15:04:30 -07:00
|
|
|
end
|
|
|
|
|
2017-08-08 13:18:12 -07: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 19:02:06 -07:00
|
|
|
def urls
|
|
|
|
{ streaming_api: Rails.configuration.x.streaming_api_base_url }
|
|
|
|
end
|
2017-08-08 13:18:12 -07:00
|
|
|
|
2018-03-01 11:48:11 -08:00
|
|
|
def languages
|
2018-03-04 01:00:46 -08:00
|
|
|
[I18n.default_locale]
|
2018-03-01 11:48:11 -08:00
|
|
|
end
|
|
|
|
|
2017-08-08 13:18:12 -07:00
|
|
|
private
|
|
|
|
|
|
|
|
def instance_presenter
|
|
|
|
@instance_presenter ||= InstancePresenter.new
|
|
|
|
end
|
2017-07-06 19:02:06 -07:00
|
|
|
end
|