2017-07-07 04:02:06 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class REST::InstanceSerializer < ActiveModel::Serializer
|
2017-09-14 00:04:30 +02:00
|
|
|
include RoutingHelper
|
|
|
|
|
2019-06-22 12:08:16 +02:00
|
|
|
attributes :uri, :title, :short_description, :description, :email,
|
2018-03-01 20:48:11 +01:00
|
|
|
:version, :urls, :stats, :thumbnail,
|
2020-04-28 09:43:34 +02:00
|
|
|
:languages, :registrations, :approval_required, :invites_enabled
|
2018-03-01 20:48:11 +01:00
|
|
|
|
|
|
|
has_one :contact_account, serializer: REST::AccountSerializer
|
|
|
|
|
|
|
|
delegate :contact_account, to: :instance_presenter
|
2017-07-07 04:02:06 +02:00
|
|
|
|
|
|
|
def uri
|
|
|
|
Rails.configuration.x.local_domain
|
|
|
|
end
|
|
|
|
|
|
|
|
def title
|
|
|
|
Setting.site_title
|
|
|
|
end
|
|
|
|
|
2019-06-22 12:08:16 +02:00
|
|
|
def short_description
|
|
|
|
Setting.site_short_description
|
|
|
|
end
|
|
|
|
|
2017-07-07 04:02:06 +02:00
|
|
|
def description
|
|
|
|
Setting.site_description
|
|
|
|
end
|
|
|
|
|
|
|
|
def email
|
|
|
|
Setting.site_contact_email
|
|
|
|
end
|
|
|
|
|
|
|
|
def version
|
|
|
|
Mastodon::Version.to_s
|
|
|
|
end
|
|
|
|
|
2017-09-14 00:04:30 +02:00
|
|
|
def thumbnail
|
2019-03-15 15:05:31 +01:00
|
|
|
instance_presenter.thumbnail ? full_asset_url(instance_presenter.thumbnail.file.url) : full_pack_url('media/images/preview.jpg')
|
2017-09-14 00:04:30 +02:00
|
|
|
end
|
|
|
|
|
2017-08-08 22:18:12 +02: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 04:02:06 +02:00
|
|
|
def urls
|
|
|
|
{ streaming_api: Rails.configuration.x.streaming_api_base_url }
|
|
|
|
end
|
2017-08-08 22:18:12 +02:00
|
|
|
|
2018-03-01 20:48:11 +01:00
|
|
|
def languages
|
2018-03-04 10:00:46 +01:00
|
|
|
[I18n.default_locale]
|
2018-03-01 20:48:11 +01:00
|
|
|
end
|
|
|
|
|
2019-02-16 05:23:47 +01:00
|
|
|
def registrations
|
2019-03-14 05:28:30 +01:00
|
|
|
Setting.registrations_mode != 'none' && !Rails.configuration.x.single_user_mode
|
2019-02-16 05:23:47 +01:00
|
|
|
end
|
|
|
|
|
2019-06-22 12:08:16 +02:00
|
|
|
def approval_required
|
|
|
|
Setting.registrations_mode == 'approved'
|
|
|
|
end
|
|
|
|
|
2020-04-28 09:43:34 +02:00
|
|
|
def invites_enabled
|
|
|
|
Setting.min_invite_role == 'user'
|
|
|
|
end
|
|
|
|
|
2017-08-08 22:18:12 +02:00
|
|
|
private
|
|
|
|
|
|
|
|
def instance_presenter
|
|
|
|
@instance_presenter ||= InstancePresenter.new
|
|
|
|
end
|
2017-07-07 04:02:06 +02:00
|
|
|
end
|