2017-08-08 12:52:15 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::Activity::Create < ActivityPub::Activity
|
2018-01-07 15:21:14 -08:00
|
|
|
SUPPORTED_TYPES = %w(Note).freeze
|
2018-10-29 05:23:29 -07:00
|
|
|
CONVERTED_TYPES = %w(Image Video Article Page).freeze
|
2017-11-29 19:06:20 -08:00
|
|
|
|
2017-08-08 12:52:15 -07:00
|
|
|
def perform
|
2018-01-07 20:00:23 -08:00
|
|
|
return if delete_arrived_first?(object_uri) || unsupported_object_type? || invalid_origin?(@object['id'])
|
2017-08-08 12:52:15 -07:00
|
|
|
|
2017-09-14 13:26:22 -07:00
|
|
|
RedisLock.acquire(lock_options) do |lock|
|
|
|
|
if lock.acquired?
|
|
|
|
@status = find_existing_status
|
2018-10-30 07:03:55 -07:00
|
|
|
|
|
|
|
if @status.nil?
|
|
|
|
process_status
|
|
|
|
elsif @options[:delivered_to_account_id].present?
|
|
|
|
postprocess_audience_and_deliver
|
|
|
|
end
|
2018-05-16 03:29:45 -07:00
|
|
|
else
|
|
|
|
raise Mastodon::RaceConditionError
|
2017-09-14 13:26:22 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@status
|
|
|
|
end
|
2017-08-08 12:52:15 -07:00
|
|
|
|
2017-09-14 13:26:22 -07:00
|
|
|
private
|
2017-08-08 12:52:15 -07:00
|
|
|
|
2017-09-14 13:26:22 -07:00
|
|
|
def process_status
|
2018-10-10 15:50:18 -07:00
|
|
|
@tags = []
|
|
|
|
@mentions = []
|
|
|
|
@params = {}
|
2017-12-10 07:33:52 -08:00
|
|
|
|
2018-10-10 15:50:18 -07:00
|
|
|
process_status_params
|
|
|
|
process_tags
|
2018-10-17 08:13:04 -07:00
|
|
|
process_audience
|
2017-08-08 12:52:15 -07:00
|
|
|
|
2018-10-10 15:50:18 -07:00
|
|
|
ApplicationRecord.transaction do
|
|
|
|
@status = Status.create!(@params)
|
|
|
|
attach_tags(@status)
|
2017-08-08 12:52:15 -07:00
|
|
|
end
|
|
|
|
|
2017-09-14 13:26:22 -07:00
|
|
|
resolve_thread(@status)
|
|
|
|
distribute(@status)
|
|
|
|
forward_for_reply if @status.public_visibility? || @status.unlisted_visibility?
|
2017-08-08 12:52:15 -07:00
|
|
|
end
|
|
|
|
|
2017-08-17 12:35:00 -07:00
|
|
|
def find_existing_status
|
2017-09-01 12:00:43 -07:00
|
|
|
status = status_from_uri(object_uri)
|
2017-09-02 05:01:23 -07:00
|
|
|
status ||= Status.find_by(uri: @object['atomUri']) if @object['atomUri'].present?
|
2017-08-17 12:35:00 -07:00
|
|
|
status
|
|
|
|
end
|
|
|
|
|
2018-03-07 16:22:47 -08:00
|
|
|
def process_status_params
|
2018-10-10 15:50:18 -07: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 08:13:04 -07: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 09:12:22 -07: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 08:13:04 -07:00
|
|
|
next unless @params[:visibility] == :direct
|
|
|
|
|
|
|
|
@params[:visibility] = :limited
|
|
|
|
end
|
2018-10-25 09:12:22 -07: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 03:59:59 -07:00
|
|
|
return if @options[:delivered_to_account_id].nil? || @mentions.any? { |mention| mention.account_id == @options[:delivered_to_account_id] }
|
2018-10-25 09:12:22 -07:00
|
|
|
|
|
|
|
@mentions << Mention.new(account_id: @options[:delivered_to_account_id], silent: true)
|
|
|
|
|
2018-10-26 03:59:59 -07:00
|
|
|
return unless @params[:visibility] == :direct
|
2018-10-25 09:12:22 -07:00
|
|
|
|
|
|
|
@params[:visibility] = :limited
|
2018-10-17 08:13:04 -07:00
|
|
|
end
|
|
|
|
|
2018-10-30 07:03:55 -07: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-10 15:50:18 -07:00
|
|
|
def attach_tags(status)
|
|
|
|
@tags.each do |tag|
|
|
|
|
status.tags << tag
|
2018-10-10 17:10:15 -07:00
|
|
|
TrendingTags.record_use!(tag, status.account, status.created_at) if status.public_visibility?
|
2018-10-10 15:50:18 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
@mentions.each do |mention|
|
|
|
|
mention.status = status
|
|
|
|
mention.save
|
|
|
|
end
|
2017-08-08 12:52:15 -07:00
|
|
|
end
|
|
|
|
|
2018-10-10 15:50:18 -07:00
|
|
|
def process_tags
|
2017-10-27 07:10:36 -07:00
|
|
|
return if @object['tag'].nil?
|
2017-08-08 12:52:15 -07:00
|
|
|
|
2017-10-27 07:10:36 -07:00
|
|
|
as_array(@object['tag']).each do |tag|
|
2018-05-02 03:40:24 -07:00
|
|
|
if equals_or_includes?(tag['type'], 'Hashtag')
|
2018-10-10 15:50:18 -07:00
|
|
|
process_hashtag tag
|
2018-05-02 03:40:24 -07:00
|
|
|
elsif equals_or_includes?(tag['type'], 'Mention')
|
2018-10-10 15:50:18 -07:00
|
|
|
process_mention tag
|
2018-05-02 03:40:24 -07:00
|
|
|
elsif equals_or_includes?(tag['type'], 'Emoji')
|
2018-10-10 15:50:18 -07:00
|
|
|
process_emoji tag
|
2017-08-08 12:52:15 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-10-10 15:50:18 -07:00
|
|
|
def process_hashtag(tag)
|
2017-09-25 09:33:11 -07:00
|
|
|
return if tag['name'].blank?
|
|
|
|
|
2017-08-08 12:52:15 -07:00
|
|
|
hashtag = tag['name'].gsub(/\A#/, '').mb_chars.downcase
|
2018-10-26 13:48:35 -07:00
|
|
|
hashtag = Tag.where(name: hashtag).first_or_create!(name: hashtag)
|
2017-08-08 12:52:15 -07:00
|
|
|
|
2018-10-10 15:50:18 -07:00
|
|
|
return if @tags.include?(hashtag)
|
2018-05-27 20:21:04 -07:00
|
|
|
|
2018-10-10 15:50:18 -07:00
|
|
|
@tags << hashtag
|
2018-03-30 06:44:54 -07:00
|
|
|
rescue ActiveRecord::RecordInvalid
|
|
|
|
nil
|
2017-08-08 12:52:15 -07:00
|
|
|
end
|
|
|
|
|
2018-10-10 15:50:18 -07:00
|
|
|
def process_mention(tag)
|
2017-09-25 09:33:11 -07:00
|
|
|
return if tag['href'].blank?
|
|
|
|
|
2017-08-08 12:52:15 -07:00
|
|
|
account = account_from_uri(tag['href'])
|
2018-09-28 08:02:53 -07:00
|
|
|
account = ::FetchRemoteAccountService.new.call(tag['href'], id: false) if account.nil?
|
2018-10-10 15:50:18 -07:00
|
|
|
|
2017-08-08 12:52:15 -07:00
|
|
|
return if account.nil?
|
2018-10-10 15:50:18 -07:00
|
|
|
|
2018-10-17 08:13:04 -07:00
|
|
|
@mentions << Mention.new(account: account, silent: false)
|
2017-08-08 12:52:15 -07:00
|
|
|
end
|
|
|
|
|
2018-10-10 15:50:18 -07:00
|
|
|
def process_emoji(tag)
|
2017-10-07 08:43:42 -07:00
|
|
|
return if skip_download?
|
|
|
|
return if tag['name'].blank? || tag['icon'].blank? || tag['icon']['url'].blank?
|
2017-09-25 09:33:11 -07:00
|
|
|
|
2017-09-18 17:42:40 -07:00
|
|
|
shortcode = tag['name'].delete(':')
|
2017-10-07 08:43:42 -07:00
|
|
|
image_url = tag['icon']['url']
|
|
|
|
uri = tag['id']
|
|
|
|
updated = tag['updated']
|
2017-09-18 17:42:40 -07:00
|
|
|
emoji = CustomEmoji.find_by(shortcode: shortcode, domain: @account.domain)
|
|
|
|
|
2018-11-10 14:59:51 -08:00
|
|
|
return unless emoji.nil? || image_url != emoji.image_remote_url || (updated && updated >= emoji.updated_at)
|
2017-09-18 17:42:40 -07:00
|
|
|
|
2017-10-07 08:43:42 -07:00
|
|
|
emoji ||= CustomEmoji.new(domain: @account.domain, shortcode: shortcode, uri: uri)
|
|
|
|
emoji.image_remote_url = image_url
|
2017-09-18 17:42:40 -07:00
|
|
|
emoji.save
|
|
|
|
end
|
|
|
|
|
2017-12-10 07:33:52 -08:00
|
|
|
def process_attachments
|
2018-03-07 16:22:47 -08:00
|
|
|
return [] if @object['attachment'].nil?
|
2017-08-08 12:52:15 -07:00
|
|
|
|
2017-12-10 07:33:52 -08:00
|
|
|
media_attachments = []
|
|
|
|
|
2017-10-27 07:10:36 -07:00
|
|
|
as_array(@object['attachment']).each do |attachment|
|
2018-03-28 15:52:24 -07:00
|
|
|
next if attachment['url'].blank?
|
2017-08-08 12:52:15 -07:00
|
|
|
|
|
|
|
href = Addressable::URI.parse(attachment['url']).normalize.to_s
|
2018-02-21 15:35:46 -08:00
|
|
|
media_attachment = MediaAttachment.create(account: @account, remote_url: href, description: attachment['name'].presence, focus: attachment['focalPoint'])
|
2017-12-10 07:33:52 -08:00
|
|
|
media_attachments << media_attachment
|
2017-08-08 12:52:15 -07:00
|
|
|
|
2018-03-28 15:52:24 -07:00
|
|
|
next if unsupported_media_type?(attachment['mediaType']) || skip_download?
|
2017-08-08 12:52:15 -07:00
|
|
|
|
|
|
|
media_attachment.file_remote_url = href
|
|
|
|
media_attachment.save
|
|
|
|
end
|
2017-12-10 07:33:52 -08:00
|
|
|
|
|
|
|
media_attachments
|
2017-09-25 09:33:11 -07:00
|
|
|
rescue Addressable::URI::InvalidURIError => e
|
|
|
|
Rails.logger.debug e
|
2017-12-10 07:33:52 -08:00
|
|
|
|
|
|
|
media_attachments
|
|
|
|
end
|
|
|
|
|
2017-08-08 12:52:15 -07:00
|
|
|
def resolve_thread(status)
|
|
|
|
return unless status.reply? && status.thread.nil?
|
2017-08-26 10:55:10 -07:00
|
|
|
ThreadResolveWorker.perform_async(status.id, in_reply_to_uri)
|
2017-08-08 12:52:15 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def conversation_from_uri(uri)
|
|
|
|
return nil if uri.nil?
|
2017-09-19 09:08:08 -07: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 09:33:11 -07:00
|
|
|
Conversation.find_by(uri: uri) || Conversation.create(uri: uri)
|
2017-08-08 12:52:15 -07: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 10:55:10 -07: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 05:01:23 -07:00
|
|
|
@replied_to_status ||= status_from_uri(@object['inReplyToAtomUri']) if @object['inReplyToAtomUri'].present?
|
2017-08-26 10:55:10 -07:00
|
|
|
@replied_to_status
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def in_reply_to_uri
|
|
|
|
value_or_id(@object['inReplyTo'])
|
2017-08-08 12:52:15 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def text_from_content
|
2017-11-29 19:06:20 -08:00
|
|
|
return Formatter.instance.linkify([text_from_name, object_url || @object['id']].join(' ')) if converted_object_type?
|
|
|
|
|
2017-08-08 12:52:15 -07:00
|
|
|
if @object['content'].present?
|
|
|
|
@object['content']
|
2017-11-29 19:06:20 -08:00
|
|
|
elsif content_language_map?
|
2017-08-08 12:52:15 -07:00
|
|
|
@object['contentMap'].values.first
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-25 04:27:34 -07:00
|
|
|
def text_from_summary
|
|
|
|
if @object['summary'].present?
|
|
|
|
@object['summary']
|
|
|
|
elsif summary_language_map?
|
|
|
|
@object['summaryMap'].values.first
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-29 19:06:20 -08: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 04:27:34 -07:00
|
|
|
elsif summary_language_map?
|
|
|
|
@object['summaryMap'].keys.first
|
2017-11-29 19:06:20 -08:00
|
|
|
elsif supported_object_type?
|
|
|
|
LanguageDetector.instance.detect(text_from_content, @account)
|
|
|
|
end
|
2017-08-08 12:52:15 -07:00
|
|
|
end
|
|
|
|
|
2017-09-04 09:26:33 -07:00
|
|
|
def object_url
|
|
|
|
return if @object['url'].blank?
|
2018-01-07 20:00:23 -08:00
|
|
|
|
|
|
|
url_candidate = url_to_href(@object['url'], 'text/html')
|
|
|
|
|
|
|
|
if invalid_origin?(url_candidate)
|
|
|
|
nil
|
|
|
|
else
|
|
|
|
url_candidate
|
|
|
|
end
|
2017-09-04 09:26:33 -07:00
|
|
|
end
|
|
|
|
|
2018-08-25 04:27:34 -07:00
|
|
|
def summary_language_map?
|
|
|
|
@object['summaryMap'].is_a?(Hash) && !@object['summaryMap'].empty?
|
|
|
|
end
|
|
|
|
|
2017-11-29 19:06:20 -08:00
|
|
|
def content_language_map?
|
2017-08-08 12:52:15 -07:00
|
|
|
@object['contentMap'].is_a?(Hash) && !@object['contentMap'].empty?
|
|
|
|
end
|
|
|
|
|
2017-11-29 19:06:20 -08:00
|
|
|
def name_language_map?
|
|
|
|
@object['nameMap'].is_a?(Hash) && !@object['nameMap'].empty?
|
|
|
|
end
|
|
|
|
|
2017-08-08 12:52:15 -07:00
|
|
|
def unsupported_object_type?
|
2017-11-29 19:06:20 -08:00
|
|
|
@object.is_a?(String) || !(supported_object_type? || converted_object_type?)
|
2017-08-08 12:52:15 -07: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-29 19:06:20 -08:00
|
|
|
def supported_object_type?
|
2018-05-02 03:40:24 -07:00
|
|
|
equals_or_includes_any?(@object['type'], SUPPORTED_TYPES)
|
2017-11-29 19:06:20 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def converted_object_type?
|
2018-05-02 03:40:24 -07:00
|
|
|
equals_or_includes_any?(@object['type'], CONVERTED_TYPES)
|
2017-11-29 19:06:20 -08:00
|
|
|
end
|
|
|
|
|
2017-08-08 12:52:15 -07: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 06:37:02 -07:00
|
|
|
|
2018-01-07 20:00:23 -08: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 06:37:02 -07: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-29 18:50:05 -08:00
|
|
|
ActivityPub::RawDistributionWorker.perform_async(Oj.dump(@json), replied_to_status.account_id, [@account.preferred_inbox_url])
|
2017-08-30 06:37:02 -07:00
|
|
|
end
|
2017-09-14 13:26:22 -07:00
|
|
|
|
|
|
|
def lock_options
|
|
|
|
{ redis: Redis.current, key: "create:#{@object['id']}" }
|
|
|
|
end
|
2017-08-08 12:52:15 -07:00
|
|
|
end
|