2017-07-07 02:02:06 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class REST::InstanceSerializer < ActiveModel::Serializer
|
2017-09-13 22:04:30 +00:00
|
|
|
include RoutingHelper
|
|
|
|
|
2019-06-22 10:08:16 +00:00
|
|
|
attributes :uri, :title, :short_description, :description, :email,
|
2022-11-25 21:16:44 +00:00
|
|
|
:version, :urls, :stats, :thumbnail, :max_toot_chars,
|
2021-07-10 15:58:41 +00:00
|
|
|
:languages, :registrations, :approval_required, :invites_enabled,
|
2020-02-24 03:53:28 +00:00
|
|
|
:configuration,
|
2021-02-11 03:52:31 +00:00
|
|
|
:feature_quote, :fedibird_capabilities
|
2018-03-01 19:48:11 +00:00
|
|
|
|
|
|
|
has_one :contact_account, serializer: REST::AccountSerializer
|
|
|
|
|
2021-02-21 18:50:12 +00:00
|
|
|
has_many :rules, serializer: REST::RuleSerializer
|
|
|
|
|
|
|
|
delegate :contact_account, :rules, to: :instance_presenter
|
2017-07-07 02:02:06 +00:00
|
|
|
|
|
|
|
def uri
|
|
|
|
Rails.configuration.x.local_domain
|
|
|
|
end
|
|
|
|
|
2022-11-25 21:16:44 +00:00
|
|
|
def max_toot_chars
|
|
|
|
StatusLengthValidator::MAX_CHARS
|
|
|
|
end
|
|
|
|
|
2017-07-07 02:02:06 +00:00
|
|
|
def title
|
|
|
|
Setting.site_title
|
|
|
|
end
|
|
|
|
|
2019-06-22 10:08:16 +00:00
|
|
|
def short_description
|
|
|
|
Setting.site_short_description
|
|
|
|
end
|
|
|
|
|
2017-07-07 02:02:06 +00:00
|
|
|
def description
|
|
|
|
Setting.site_description
|
|
|
|
end
|
|
|
|
|
|
|
|
def email
|
|
|
|
Setting.site_contact_email
|
|
|
|
end
|
|
|
|
|
|
|
|
def version
|
|
|
|
Mastodon::Version.to_s
|
|
|
|
end
|
|
|
|
|
2017-09-13 22:04:30 +00:00
|
|
|
def thumbnail
|
2019-03-15 14:05:31 +00:00
|
|
|
instance_presenter.thumbnail ? full_asset_url(instance_presenter.thumbnail.file.url) : full_pack_url('media/images/preview.jpg')
|
2017-09-13 22:04:30 +00:00
|
|
|
end
|
|
|
|
|
2017-08-08 20:18:12 +00: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 02:02:06 +00:00
|
|
|
def urls
|
|
|
|
{ streaming_api: Rails.configuration.x.streaming_api_base_url }
|
|
|
|
end
|
2017-08-08 20:18:12 +00:00
|
|
|
|
2021-07-10 15:58:41 +00:00
|
|
|
def configuration
|
|
|
|
{
|
2022-10-14 13:45:00 +00:00
|
|
|
accounts: {
|
2022-12-14 17:42:32 +00:00
|
|
|
max_favourite_tags: FavouriteTag::LIMIT,
|
2022-10-14 13:45:00 +00:00
|
|
|
max_featured_tags: FeaturedTag::LIMIT,
|
|
|
|
},
|
|
|
|
|
2021-07-10 15:58:41 +00:00
|
|
|
statuses: {
|
|
|
|
max_characters: StatusLengthValidator::MAX_CHARS,
|
|
|
|
max_media_attachments: 4,
|
|
|
|
characters_reserved_per_url: StatusLengthValidator::URL_PLACEHOLDER_CHARS,
|
2021-07-16 06:38:50 +00:00
|
|
|
min_expiration: TimeLimit::VALID_DURATION.min,
|
|
|
|
max_expiration: TimeLimit::VALID_DURATION.max,
|
|
|
|
supported_expires_actions: StatusExpire::actions.keys,
|
2021-07-10 15:58:41 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
media_attachments: {
|
|
|
|
supported_mime_types: MediaAttachment::IMAGE_MIME_TYPES + MediaAttachment::VIDEO_MIME_TYPES + MediaAttachment::AUDIO_MIME_TYPES,
|
|
|
|
image_size_limit: MediaAttachment::IMAGE_LIMIT,
|
|
|
|
image_matrix_limit: Attachmentable::MAX_MATRIX_LIMIT,
|
|
|
|
video_size_limit: MediaAttachment::VIDEO_LIMIT,
|
|
|
|
video_frame_rate_limit: MediaAttachment::MAX_VIDEO_FRAME_RATE,
|
|
|
|
video_matrix_limit: MediaAttachment::MAX_VIDEO_MATRIX_LIMIT,
|
|
|
|
},
|
|
|
|
|
|
|
|
polls: {
|
|
|
|
max_options: PollValidator::MAX_OPTIONS,
|
|
|
|
max_characters_per_option: PollValidator::MAX_OPTION_CHARS,
|
|
|
|
min_expiration: PollValidator::MIN_EXPIRATION,
|
|
|
|
max_expiration: PollValidator::MAX_EXPIRATION,
|
|
|
|
},
|
2021-08-30 15:46:25 +00:00
|
|
|
|
|
|
|
emoji_reactions: {
|
|
|
|
max_reactions: EmojiReactionValidator::LIMIT,
|
|
|
|
},
|
2022-03-17 14:25:16 +00:00
|
|
|
|
|
|
|
status_references: {
|
|
|
|
max_references: StatusReferenceValidator::LIMIT,
|
|
|
|
},
|
2021-07-10 15:58:41 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2018-03-01 19:48:11 +00:00
|
|
|
def languages
|
2018-03-04 09:00:46 +00:00
|
|
|
[I18n.default_locale]
|
2018-03-01 19:48:11 +00:00
|
|
|
end
|
|
|
|
|
2019-02-16 04:23:47 +00:00
|
|
|
def registrations
|
2019-03-14 04:28:30 +00:00
|
|
|
Setting.registrations_mode != 'none' && !Rails.configuration.x.single_user_mode
|
2019-02-16 04:23:47 +00:00
|
|
|
end
|
|
|
|
|
2019-06-22 10:08:16 +00:00
|
|
|
def approval_required
|
|
|
|
Setting.registrations_mode == 'approved'
|
|
|
|
end
|
|
|
|
|
2020-04-28 07:43:34 +00:00
|
|
|
def invites_enabled
|
|
|
|
Setting.min_invite_role == 'user'
|
|
|
|
end
|
|
|
|
|
2020-02-24 03:53:28 +00:00
|
|
|
def feature_quote
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2021-02-11 03:52:31 +00:00
|
|
|
def fedibird_capabilities
|
2022-04-23 19:54:49 +00:00
|
|
|
capabilities = [
|
2021-02-11 03:52:31 +00:00
|
|
|
:favourite_hashtag,
|
|
|
|
:favourite_domain,
|
2021-06-22 03:06:40 +00:00
|
|
|
:favourite_list,
|
2021-02-11 03:52:31 +00:00
|
|
|
:status_expire,
|
|
|
|
:follow_no_delivery,
|
|
|
|
:follow_hashtag,
|
|
|
|
:subscribe_account,
|
|
|
|
:subscribe_domain,
|
|
|
|
:subscribe_keyword,
|
2021-04-12 12:43:25 +00:00
|
|
|
:timeline_home_visibility,
|
2021-02-11 03:52:31 +00:00
|
|
|
:timeline_no_local,
|
|
|
|
:timeline_domain,
|
|
|
|
:timeline_group,
|
|
|
|
:timeline_group_directory,
|
|
|
|
:visibility_mutual,
|
|
|
|
:visibility_limited,
|
2022-12-29 08:47:23 +00:00
|
|
|
:visibility_personal,
|
2021-05-19 05:58:27 +00:00
|
|
|
:emoji_reaction,
|
2022-02-09 20:47:09 +00:00
|
|
|
:misskey_birthday,
|
|
|
|
:misskey_location,
|
2022-03-17 14:25:16 +00:00
|
|
|
:status_reference,
|
2022-08-23 05:14:23 +00:00
|
|
|
:searchability,
|
2022-08-27 10:57:05 +00:00
|
|
|
:status_compact_mode,
|
2022-09-11 17:42:05 +00:00
|
|
|
:account_conversations,
|
2021-02-11 03:52:31 +00:00
|
|
|
]
|
2022-04-23 19:54:49 +00:00
|
|
|
|
|
|
|
capabilities << :profile_search unless Chewy.enabled?
|
|
|
|
|
|
|
|
capabilities
|
2021-02-11 03:52:31 +00:00
|
|
|
end
|
|
|
|
|
2017-08-08 20:18:12 +00:00
|
|
|
private
|
|
|
|
|
|
|
|
def instance_presenter
|
|
|
|
@instance_presenter ||= InstancePresenter.new
|
|
|
|
end
|
2017-07-07 02:02:06 +00:00
|
|
|
end
|