mirror of
https://github.com/mastodon/mastodon.git
synced 2025-10-05 00:22:42 +00:00

Some checks are pending
Check i18n / check-i18n (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (ruby) (push) Waiting to run
Check formatting / lint (push) Waiting to run
Haml Linting / lint (push) Waiting to run
Ruby Linting / lint (push) Waiting to run
Historical data migration test / test (14-alpine) (push) Waiting to run
Historical data migration test / test (15-alpine) (push) Waiting to run
Historical data migration test / test (16-alpine) (push) Waiting to run
Historical data migration test / test (17-alpine) (push) Waiting to run
Ruby Testing / build (production) (push) Waiting to run
Ruby Testing / build (test) (push) Waiting to run
Ruby Testing / test (.ruby-version) (push) Blocked by required conditions
Ruby Testing / test (3.2) (push) Blocked by required conditions
Ruby Testing / test (3.3) (push) Blocked by required conditions
Ruby Testing / ImageMagick tests (.ruby-version) (push) Blocked by required conditions
Ruby Testing / ImageMagick tests (3.2) (push) Blocked by required conditions
Ruby Testing / ImageMagick tests (3.3) (push) Blocked by required conditions
Ruby Testing / End to End testing (.ruby-version) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.2) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.3) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.10.2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.2, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.3, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
128 lines
3.6 KiB
Ruby
128 lines
3.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class SEO::SocialMediaPostingSerializer < ActiveModel::Serializer
|
|
include FormattingHelper
|
|
include RoutingHelper
|
|
|
|
attributes :context, :type, :url, :date_published, :date_modified,
|
|
:author, :text, :interaction_statistic
|
|
|
|
attribute :image, if: -> { object.ordered_media_attachments.any?(&:image?) }
|
|
attribute :video, if: -> { object.ordered_media_attachments.any? { |attachment| attachment.video? || attachment.gifv? } }
|
|
attribute :audio, if: -> { object.ordered_media_attachments.any?(&:audio?) }
|
|
attribute :shared_content, if: -> { object.with_preview_card? }
|
|
|
|
def context
|
|
'https://schema.org'
|
|
end
|
|
|
|
def type
|
|
'SocialMediaPosting'
|
|
end
|
|
|
|
def url
|
|
ActivityPub::TagManager.instance.url_for(object)
|
|
end
|
|
|
|
def date_published
|
|
object.created_at.iso8601
|
|
end
|
|
|
|
def date_modified
|
|
object.edited_at&.iso8601
|
|
end
|
|
|
|
def author
|
|
{
|
|
type: 'Person',
|
|
name: object.account.display_name.presence || object.account.username,
|
|
alternate_name: object.account.local_username_and_domain,
|
|
identifier: object.account.local_username_and_domain,
|
|
url: ActivityPub::TagManager.instance.url_for(object.account),
|
|
interaction_statistic: [
|
|
{
|
|
type: 'InteractionCounter',
|
|
interaction_type: 'https://schema.org/FollowAction',
|
|
user_interaction_count: object.account.followers_count,
|
|
},
|
|
],
|
|
}
|
|
end
|
|
|
|
def text
|
|
status_content_format(object)
|
|
end
|
|
|
|
def interaction_statistic
|
|
[
|
|
{
|
|
type: 'InteractionCounter',
|
|
interaction_type: 'https://schema.org/LikeAction',
|
|
user_interaction_count: object.favourites_count,
|
|
},
|
|
|
|
{
|
|
type: 'InteractionCounter',
|
|
interaction_type: 'https://schema.org/ShareAction',
|
|
user_interaction_count: object.reblogs_count,
|
|
},
|
|
|
|
{
|
|
type: 'InteractionCounter',
|
|
interaction_type: 'https://schema.org/ReplyAction',
|
|
user_interaction_count: object.replies_count,
|
|
},
|
|
]
|
|
end
|
|
|
|
def image
|
|
object.ordered_media_attachments.filter_map do |attachment|
|
|
next unless attachment.image?
|
|
|
|
{
|
|
type: 'ImageObject',
|
|
content_url: full_asset_url(attachment.file.url(:original, false)),
|
|
thumbnail_url: attachment.thumbnail.present? ? full_asset_url(attachment.thumbnail.url(:original)) : full_asset_url(attachment.file.url(:small)),
|
|
description: attachment.description,
|
|
}
|
|
end
|
|
end
|
|
|
|
def video
|
|
object.ordered_media_attachments.filter_map do |attachment|
|
|
next unless attachment.video? || attachment.gifv?
|
|
|
|
{
|
|
type: 'VideoObject',
|
|
upload_date: attachment.created_at.iso8601,
|
|
content_url: full_asset_url(attachment.file.url(:original, false)),
|
|
thumbnail_url: attachment.thumbnail.present? ? full_asset_url(attachment.thumbnail.url(:original)) : full_asset_url(attachment.file.url(:small)),
|
|
embed_url: medium_player_url(attachment),
|
|
description: attachment.description,
|
|
}
|
|
end
|
|
end
|
|
|
|
def audio
|
|
object.ordered_media_attachments.filter_map do |attachment|
|
|
next unless attachment.audio?
|
|
|
|
{
|
|
type: 'AudioObject',
|
|
upload_date: attachment.created_at.iso8601,
|
|
content_url: full_asset_url(attachment.file.url(:original, false)),
|
|
thumbnail_url: attachment.thumbnail.present? ? full_asset_url(attachment.thumbnail.url(:original)) : full_asset_url(attachment.file.url(:small)),
|
|
embed_url: medium_player_url(attachment),
|
|
description: attachment.description,
|
|
}
|
|
end
|
|
end
|
|
|
|
def shared_content
|
|
{
|
|
type: 'WebPage',
|
|
url: object.preview_card.url,
|
|
}
|
|
end
|
|
end
|