2017-08-08 21:52:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::Activity::Create < ActivityPub::Activity
|
2018-01-08 00:21:14 +01:00
|
|
|
SUPPORTED_TYPES = %w(Note).freeze
|
2018-10-29 13:23:29 +01:00
|
|
|
CONVERTED_TYPES = %w(Image Video Article Page).freeze
|
2017-11-30 04:06:20 +01:00
|
|
|
|
2017-08-08 21:52:15 +02:00
|
|
|
def perform
|
2018-01-08 05:00:23 +01:00
|
|
|
return if delete_arrived_first?(object_uri) || unsupported_object_type? || invalid_origin?(@object['id'])
|
2017-08-08 21:52:15 +02:00
|
|
|
|
2017-09-14 22:26:22 +02:00
|
|
|
RedisLock.acquire(lock_options) do |lock|
|
|
|
|
if lock.acquired?
|
|
|
|
@status = find_existing_status
|
2018-10-30 15:03:55 +01:00
|
|
|
|
|
|
|
if @status.nil?
|
|
|
|
process_status
|
|
|
|
elsif @options[:delivered_to_account_id].present?
|
|
|
|
postprocess_audience_and_deliver
|
|
|
|
end
|
2018-05-16 12:29:45 +02:00
|
|
|
else
|
|
|
|
raise Mastodon::RaceConditionError
|
2017-09-14 22:26:22 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@status
|
|
|
|
end
|
2017-08-08 21:52:15 +02:00
|
|
|
|
2017-09-14 22:26:22 +02:00
|
|
|
private
|
2017-08-08 21:52:15 +02:00
|
|
|
|
2017-09-14 22:26:22 +02:00
|
|
|
def process_status
|
2018-10-11 00:50:18 +02:00
|
|
|
@tags = []
|
|
|
|
@mentions = []
|
|
|
|
@params = {}
|
2017-12-10 16:33:52 +01:00
|
|
|
|
2018-10-11 00:50:18 +02:00
|
|
|
process_status_params
|
|
|
|
process_tags
|
2018-10-17 17:13:04 +02:00
|
|
|
process_audience
|
2017-08-08 21:52:15 +02:00
|
|
|
|
2018-10-11 00:50:18 +02:00
|
|
|
ApplicationRecord.transaction do
|
|
|
|
@status = Status.create!(@params)
|
|
|
|
attach_tags(@status)
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
2017-09-14 22:26:22 +02:00
|
|
|
resolve_thread(@status)
|
|
|
|
distribute(@status)
|
|
|
|
forward_for_reply if @status.public_visibility? || @status.unlisted_visibility?
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
2017-08-17 21:35:00 +02:00
|
|
|
def find_existing_status
|
2017-09-01 21:00:43 +02:00
|
|
|
status = status_from_uri(object_uri)
|
2017-09-02 14:01:23 +02:00
|
|
|
status ||= Status.find_by(uri: @object['atomUri']) if @object['atomUri'].present?
|
2017-08-17 21:35:00 +02:00
|
|
|
status
|
|
|
|
end
|
|
|
|
|
2018-03-08 01:22:47 +01:00
|
|
|
def process_status_params
|
2018-10-11 00:50:18 +02:00
|
|
|
@params = begin
|
|
|
|
{
|
|
|
|
uri: @object['id'],
|
|
|
|
url: object_url || @object['id'],
|
|
|
|
account: @account,
|
|
|
|
text: text_from_content || '',
|
|
|
|
language: detected_language,
|
|
|
|
spoiler_text: text_from_summary || '',
|
|
|
|
created_at: @object['published'],
|
|
|
|
override_timestamps: @options[:override_timestamps],
|
|
|
|
reply: @object['inReplyTo'].present?,
|
|
|
|
sensitive: @object['sensitive'] || false,
|
|
|
|
visibility: visibility_from_audience,
|
|
|
|
thread: replied_to_status,
|
|
|
|
conversation: conversation_from_uri(@object['conversation']),
|
|
|
|
media_attachment_ids: process_attachments.take(4).map(&:id),
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-10-17 17:13:04 +02:00
|
|
|
def process_audience
|
|
|
|
(as_array(@object['to']) + as_array(@object['cc'])).uniq.each do |audience|
|
|
|
|
next if audience == ActivityPub::TagManager::COLLECTIONS[:public]
|
|
|
|
|
|
|
|
# Unlike with tags, there is no point in resolving accounts we don't already
|
|
|
|
# know here, because silent mentions would only be used for local access
|
|
|
|
# control anyway
|
|
|
|
account = account_from_uri(audience)
|
|
|
|
|
|
|
|
next if account.nil? || @mentions.any? { |mention| mention.account_id == account.id }
|
|
|
|
|
|
|
|
@mentions << Mention.new(account: account, silent: true)
|
|
|
|
|
|
|
|
# If there is at least one silent mention, then the status can be considered
|
2018-10-25 18:12:22 +02:00
|
|
|
# as a limited-audience status, and not strictly a direct message, but only
|
|
|
|
# if we considered a direct message in the first place
|
2018-10-17 17:13:04 +02:00
|
|
|
next unless @params[:visibility] == :direct
|
|
|
|
|
|
|
|
@params[:visibility] = :limited
|
|
|
|
end
|
2018-10-25 18:12:22 +02:00
|
|
|
|
|
|
|
# If the payload was delivered to a specific inbox, the inbox owner must have
|
|
|
|
# access to it, unless they already have access to it anyway
|
2018-10-26 12:59:59 +02:00
|
|
|
return if @options[:delivered_to_account_id].nil? || @mentions.any? { |mention| mention.account_id == @options[:delivered_to_account_id] }
|
2018-10-25 18:12:22 +02:00
|
|
|
|
|
|
|
@mentions << Mention.new(account_id: @options[:delivered_to_account_id], silent: true)
|
|
|
|
|
2018-10-26 12:59:59 +02:00
|
|
|
return unless @params[:visibility] == :direct
|
2018-10-25 18:12:22 +02:00
|
|
|
|
|
|
|
@params[:visibility] = :limited
|
2018-10-17 17:13:04 +02:00
|
|
|
end
|
|
|
|
|
2018-10-30 15:03:55 +01:00
|
|
|
def postprocess_audience_and_deliver
|
|
|
|
return if @status.mentions.find_by(account_id: @options[:delivered_to_account_id])
|
|
|
|
|
|
|
|
delivered_to_account = Account.find(@options[:delivered_to_account_id])
|
|
|
|
|
|
|
|
@status.mentions.create(account: delivered_to_account, silent: true)
|
|
|
|
@status.update(visibility: :limited) if @status.direct_visibility?
|
|
|
|
|
|
|
|
return unless delivered_to_account.following?(@account)
|
|
|
|
|
|
|
|
FeedInsertWorker.perform_async(@status.id, delivered_to_account.id, :home)
|
|
|
|
end
|
|
|
|
|
2018-10-11 00:50:18 +02:00
|
|
|
def attach_tags(status)
|
|
|
|
@tags.each do |tag|
|
|
|
|
status.tags << tag
|
2018-10-11 02:10:15 +02:00
|
|
|
TrendingTags.record_use!(tag, status.account, status.created_at) if status.public_visibility?
|
2018-10-11 00:50:18 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
@mentions.each do |mention|
|
|
|
|
mention.status = status
|
|
|
|
mention.save
|
|
|
|
end
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
2018-10-11 00:50:18 +02:00
|
|
|
def process_tags
|
2017-10-27 16:10:36 +02:00
|
|
|
return if @object['tag'].nil?
|
2017-08-08 21:52:15 +02:00
|
|
|
|
2017-10-27 16:10:36 +02:00
|
|
|
as_array(@object['tag']).each do |tag|
|
2018-05-02 12:40:24 +02:00
|
|
|
if equals_or_includes?(tag['type'], 'Hashtag')
|
2018-10-11 00:50:18 +02:00
|
|
|
process_hashtag tag
|
2018-05-02 12:40:24 +02:00
|
|
|
elsif equals_or_includes?(tag['type'], 'Mention')
|
2018-10-11 00:50:18 +02:00
|
|
|
process_mention tag
|
2018-05-02 12:40:24 +02:00
|
|
|
elsif equals_or_includes?(tag['type'], 'Emoji')
|
2018-10-11 00:50:18 +02:00
|
|
|
process_emoji tag
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-10-11 00:50:18 +02:00
|
|
|
def process_hashtag(tag)
|
2017-09-25 18:33:11 +02:00
|
|
|
return if tag['name'].blank?
|
|
|
|
|
2017-08-08 21:52:15 +02:00
|
|
|
hashtag = tag['name'].gsub(/\A#/, '').mb_chars.downcase
|
2018-10-26 22:48:35 +02:00
|
|
|
hashtag = Tag.where(name: hashtag).first_or_create!(name: hashtag)
|
2017-08-08 21:52:15 +02:00
|
|
|
|
2018-10-11 00:50:18 +02:00
|
|
|
return if @tags.include?(hashtag)
|
2018-05-28 05:21:04 +02:00
|
|
|
|
2018-10-11 00:50:18 +02:00
|
|
|
@tags << hashtag
|
2018-03-30 15:44:54 +02:00
|
|
|
rescue ActiveRecord::RecordInvalid
|
|
|
|
nil
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
2018-10-11 00:50:18 +02:00
|
|
|
def process_mention(tag)
|
2017-09-25 18:33:11 +02:00
|
|
|
return if tag['href'].blank?
|
|
|
|
|
2017-08-08 21:52:15 +02:00
|
|
|
account = account_from_uri(tag['href'])
|
2018-09-28 17:02:53 +02:00
|
|
|
account = ::FetchRemoteAccountService.new.call(tag['href'], id: false) if account.nil?
|
2018-10-11 00:50:18 +02:00
|
|
|
|
2017-08-08 21:52:15 +02:00
|
|
|
return if account.nil?
|
2018-10-11 00:50:18 +02:00
|
|
|
|
2018-10-17 17:13:04 +02:00
|
|
|
@mentions << Mention.new(account: account, silent: false)
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
2018-10-11 00:50:18 +02:00
|
|
|
def process_emoji(tag)
|
2017-10-07 17:43:42 +02:00
|
|
|
return if skip_download?
|
|
|
|
return if tag['name'].blank? || tag['icon'].blank? || tag['icon']['url'].blank?
|
2017-09-25 18:33:11 +02:00
|
|
|
|
2017-09-19 02:42:40 +02:00
|
|
|
shortcode = tag['name'].delete(':')
|
2017-10-07 17:43:42 +02:00
|
|
|
image_url = tag['icon']['url']
|
|
|
|
uri = tag['id']
|
|
|
|
updated = tag['updated']
|
2017-09-19 02:42:40 +02:00
|
|
|
emoji = CustomEmoji.find_by(shortcode: shortcode, domain: @account.domain)
|
|
|
|
|
2018-08-23 00:27:58 +02:00
|
|
|
return unless emoji.nil? || image_url != emoji.image_remote_url || (updated && emoji.updated_at >= updated)
|
2017-09-19 02:42:40 +02:00
|
|
|
|
2017-10-07 17:43:42 +02:00
|
|
|
emoji ||= CustomEmoji.new(domain: @account.domain, shortcode: shortcode, uri: uri)
|
|
|
|
emoji.image_remote_url = image_url
|
2017-09-19 02:42:40 +02:00
|
|
|
emoji.save
|
|
|
|
end
|
|
|
|
|
2017-12-10 16:33:52 +01:00
|
|
|
def process_attachments
|
2018-03-08 01:22:47 +01:00
|
|
|
return [] if @object['attachment'].nil?
|
2017-08-08 21:52:15 +02:00
|
|
|
|
2017-12-10 16:33:52 +01:00
|
|
|
media_attachments = []
|
|
|
|
|
2017-10-27 16:10:36 +02:00
|
|
|
as_array(@object['attachment']).each do |attachment|
|
2018-03-29 00:52:24 +02:00
|
|
|
next if attachment['url'].blank?
|
2017-08-08 21:52:15 +02:00
|
|
|
|
|
|
|
href = Addressable::URI.parse(attachment['url']).normalize.to_s
|
2018-02-22 00:35:46 +01:00
|
|
|
media_attachment = MediaAttachment.create(account: @account, remote_url: href, description: attachment['name'].presence, focus: attachment['focalPoint'])
|
2017-12-10 16:33:52 +01:00
|
|
|
media_attachments << media_attachment
|
2017-08-08 21:52:15 +02:00
|
|
|
|
2018-03-29 00:52:24 +02:00
|
|
|
next if unsupported_media_type?(attachment['mediaType']) || skip_download?
|
2017-08-08 21:52:15 +02:00
|
|
|
|
|
|
|
media_attachment.file_remote_url = href
|
|
|
|
media_attachment.save
|
|
|
|
end
|
2017-12-10 16:33:52 +01:00
|
|
|
|
|
|
|
media_attachments
|
2017-09-25 18:33:11 +02:00
|
|
|
rescue Addressable::URI::InvalidURIError => e
|
|
|
|
Rails.logger.debug e
|
2017-12-10 16:33:52 +01:00
|
|
|
|
|
|
|
media_attachments
|
|
|
|
end
|
|
|
|
|
2017-08-08 21:52:15 +02:00
|
|
|
def resolve_thread(status)
|
|
|
|
return unless status.reply? && status.thread.nil?
|
2017-08-26 19:55:10 +02:00
|
|
|
ThreadResolveWorker.perform_async(status.id, in_reply_to_uri)
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def conversation_from_uri(uri)
|
|
|
|
return nil if uri.nil?
|
2017-09-19 18:08:08 +02:00
|
|
|
return Conversation.find_by(id: OStatus::TagManager.instance.unique_tag_to_local_id(uri, 'Conversation')) if OStatus::TagManager.instance.local_id?(uri)
|
2017-09-25 18:33:11 +02:00
|
|
|
Conversation.find_by(uri: uri) || Conversation.create(uri: uri)
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def visibility_from_audience
|
|
|
|
if equals_or_includes?(@object['to'], ActivityPub::TagManager::COLLECTIONS[:public])
|
|
|
|
:public
|
|
|
|
elsif equals_or_includes?(@object['cc'], ActivityPub::TagManager::COLLECTIONS[:public])
|
|
|
|
:unlisted
|
|
|
|
elsif equals_or_includes?(@object['to'], @account.followers_url)
|
|
|
|
:private
|
|
|
|
else
|
|
|
|
:direct
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def audience_includes?(account)
|
|
|
|
uri = ActivityPub::TagManager.instance.uri_for(account)
|
|
|
|
equals_or_includes?(@object['to'], uri) || equals_or_includes?(@object['cc'], uri)
|
|
|
|
end
|
|
|
|
|
|
|
|
def replied_to_status
|
2017-08-26 19:55:10 +02:00
|
|
|
return @replied_to_status if defined?(@replied_to_status)
|
|
|
|
|
|
|
|
if in_reply_to_uri.blank?
|
|
|
|
@replied_to_status = nil
|
|
|
|
else
|
|
|
|
@replied_to_status = status_from_uri(in_reply_to_uri)
|
2017-09-02 14:01:23 +02:00
|
|
|
@replied_to_status ||= status_from_uri(@object['inReplyToAtomUri']) if @object['inReplyToAtomUri'].present?
|
2017-08-26 19:55:10 +02:00
|
|
|
@replied_to_status
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def in_reply_to_uri
|
|
|
|
value_or_id(@object['inReplyTo'])
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def text_from_content
|
2017-11-30 04:06:20 +01:00
|
|
|
return Formatter.instance.linkify([text_from_name, object_url || @object['id']].join(' ')) if converted_object_type?
|
|
|
|
|
2017-08-08 21:52:15 +02:00
|
|
|
if @object['content'].present?
|
|
|
|
@object['content']
|
2017-11-30 04:06:20 +01:00
|
|
|
elsif content_language_map?
|
2017-08-08 21:52:15 +02:00
|
|
|
@object['contentMap'].values.first
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-25 13:27:34 +02:00
|
|
|
def text_from_summary
|
|
|
|
if @object['summary'].present?
|
|
|
|
@object['summary']
|
|
|
|
elsif summary_language_map?
|
|
|
|
@object['summaryMap'].values.first
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-30 04:06:20 +01:00
|
|
|
def text_from_name
|
|
|
|
if @object['name'].present?
|
|
|
|
@object['name']
|
|
|
|
elsif name_language_map?
|
|
|
|
@object['nameMap'].values.first
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def detected_language
|
|
|
|
if content_language_map?
|
|
|
|
@object['contentMap'].keys.first
|
|
|
|
elsif name_language_map?
|
|
|
|
@object['nameMap'].keys.first
|
2018-08-25 13:27:34 +02:00
|
|
|
elsif summary_language_map?
|
|
|
|
@object['summaryMap'].keys.first
|
2017-11-30 04:06:20 +01:00
|
|
|
elsif supported_object_type?
|
|
|
|
LanguageDetector.instance.detect(text_from_content, @account)
|
|
|
|
end
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
2017-09-04 18:26:33 +02:00
|
|
|
def object_url
|
|
|
|
return if @object['url'].blank?
|
2018-01-08 05:00:23 +01:00
|
|
|
|
|
|
|
url_candidate = url_to_href(@object['url'], 'text/html')
|
|
|
|
|
|
|
|
if invalid_origin?(url_candidate)
|
|
|
|
nil
|
|
|
|
else
|
|
|
|
url_candidate
|
|
|
|
end
|
2017-09-04 18:26:33 +02:00
|
|
|
end
|
|
|
|
|
2018-08-25 13:27:34 +02:00
|
|
|
def summary_language_map?
|
|
|
|
@object['summaryMap'].is_a?(Hash) && !@object['summaryMap'].empty?
|
|
|
|
end
|
|
|
|
|
2017-11-30 04:06:20 +01:00
|
|
|
def content_language_map?
|
2017-08-08 21:52:15 +02:00
|
|
|
@object['contentMap'].is_a?(Hash) && !@object['contentMap'].empty?
|
|
|
|
end
|
|
|
|
|
2017-11-30 04:06:20 +01:00
|
|
|
def name_language_map?
|
|
|
|
@object['nameMap'].is_a?(Hash) && !@object['nameMap'].empty?
|
|
|
|
end
|
|
|
|
|
2017-08-08 21:52:15 +02:00
|
|
|
def unsupported_object_type?
|
2017-11-30 04:06:20 +01:00
|
|
|
@object.is_a?(String) || !(supported_object_type? || converted_object_type?)
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def unsupported_media_type?(mime_type)
|
|
|
|
mime_type.present? && !(MediaAttachment::IMAGE_MIME_TYPES + MediaAttachment::VIDEO_MIME_TYPES).include?(mime_type)
|
|
|
|
end
|
|
|
|
|
2017-11-30 04:06:20 +01:00
|
|
|
def supported_object_type?
|
2018-05-02 12:40:24 +02:00
|
|
|
equals_or_includes_any?(@object['type'], SUPPORTED_TYPES)
|
2017-11-30 04:06:20 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def converted_object_type?
|
2018-05-02 12:40:24 +02:00
|
|
|
equals_or_includes_any?(@object['type'], CONVERTED_TYPES)
|
2017-11-30 04:06:20 +01:00
|
|
|
end
|
|
|
|
|
2017-08-08 21:52:15 +02:00
|
|
|
def skip_download?
|
|
|
|
return @skip_download if defined?(@skip_download)
|
|
|
|
@skip_download ||= DomainBlock.find_by(domain: @account.domain)&.reject_media?
|
|
|
|
end
|
2017-08-30 15:37:02 +02:00
|
|
|
|
2018-01-08 05:00:23 +01:00
|
|
|
def invalid_origin?(url)
|
|
|
|
return true if unsupported_uri_scheme?(url)
|
|
|
|
|
|
|
|
needle = Addressable::URI.parse(url).host
|
|
|
|
haystack = Addressable::URI.parse(@account.uri).host
|
|
|
|
|
|
|
|
!haystack.casecmp(needle).zero?
|
|
|
|
end
|
|
|
|
|
2017-08-30 15:37:02 +02:00
|
|
|
def reply_to_local?
|
|
|
|
!replied_to_status.nil? && replied_to_status.account.local?
|
|
|
|
end
|
|
|
|
|
|
|
|
def forward_for_reply
|
|
|
|
return unless @json['signature'].present? && reply_to_local?
|
2017-11-30 03:50:05 +01:00
|
|
|
ActivityPub::RawDistributionWorker.perform_async(Oj.dump(@json), replied_to_status.account_id, [@account.preferred_inbox_url])
|
2017-08-30 15:37:02 +02:00
|
|
|
end
|
2017-09-14 22:26:22 +02:00
|
|
|
|
|
|
|
def lock_options
|
|
|
|
{ redis: Redis.current, key: "create:#{@object['id']}" }
|
|
|
|
end
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|