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
|
|
|
|
CONVERTED_TYPES = %w(Image Video Article).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
|
|
|
|
process_status if @status.nil?
|
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-03-07 16:22:47 -08:00
|
|
|
status_params = process_status_params
|
2017-12-10 07:33:52 -08:00
|
|
|
|
2017-08-08 12:52:15 -07:00
|
|
|
ApplicationRecord.transaction do
|
2017-09-14 13:26:22 -07:00
|
|
|
@status = Status.create!(status_params)
|
2017-08-08 12:52:15 -07:00
|
|
|
|
2017-09-14 13:26:22 -07:00
|
|
|
process_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
|
2017-08-08 12:52:15 -07:00
|
|
|
{
|
|
|
|
uri: @object['id'],
|
2017-09-04 09:26:33 -07:00
|
|
|
url: object_url || @object['id'],
|
2017-08-08 12:52:15 -07:00
|
|
|
account: @account,
|
|
|
|
text: text_from_content || '',
|
2017-11-29 19:06:20 -08:00
|
|
|
language: detected_language,
|
2017-08-08 12:52:15 -07:00
|
|
|
spoiler_text: @object['summary'] || '',
|
2018-05-03 04:33:08 -07:00
|
|
|
created_at: @object['published'],
|
2018-05-03 14:02:46 -07:00
|
|
|
override_timestamps: @options[:override_timestamps],
|
2017-08-08 12:52:15 -07:00
|
|
|
reply: @object['inReplyTo'].present?,
|
|
|
|
sensitive: @object['sensitive'] || false,
|
|
|
|
visibility: visibility_from_audience,
|
|
|
|
thread: replied_to_status,
|
2017-09-02 05:01:23 -07:00
|
|
|
conversation: conversation_from_uri(@object['conversation']),
|
2018-03-18 17:51:19 -07:00
|
|
|
media_attachment_ids: process_attachments.take(4).map(&:id),
|
2017-08-08 12:52:15 -07:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def process_tags(status)
|
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')
|
2017-08-08 12:52:15 -07:00
|
|
|
process_hashtag tag, status
|
2018-05-02 03:40:24 -07:00
|
|
|
elsif equals_or_includes?(tag['type'], 'Mention')
|
2017-08-08 12:52:15 -07:00
|
|
|
process_mention tag, status
|
2018-05-02 03:40:24 -07:00
|
|
|
elsif equals_or_includes?(tag['type'], 'Emoji')
|
2017-09-18 17:42:40 -07:00
|
|
|
process_emoji tag, status
|
2017-08-08 12:52:15 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def process_hashtag(tag, status)
|
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-05-27 20:21:04 -07:00
|
|
|
hashtag = Tag.where(name: hashtag).first_or_create(name: hashtag)
|
2017-08-08 12:52:15 -07:00
|
|
|
|
2018-05-27 20:21:04 -07:00
|
|
|
return if status.tags.include?(hashtag)
|
|
|
|
|
|
|
|
status.tags << hashtag
|
|
|
|
TrendingTags.record_use!(hashtag, status.account, status.created_at)
|
2018-03-30 06:44:54 -07:00
|
|
|
rescue ActiveRecord::RecordInvalid
|
|
|
|
nil
|
2017-08-08 12:52:15 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def process_mention(tag, status)
|
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'])
|
2017-10-03 16:13:48 -07:00
|
|
|
account = FetchRemoteAccountService.new.call(tag['href'], id: false) if account.nil?
|
2017-08-08 12:52:15 -07:00
|
|
|
return if account.nil?
|
|
|
|
account.mentions.create(status: status)
|
|
|
|
end
|
|
|
|
|
2017-09-18 17:42:40 -07:00
|
|
|
def process_emoji(tag, _status)
|
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)
|
|
|
|
|
2017-10-07 08:43:42 -07:00
|
|
|
return unless emoji.nil? || emoji.updated_at >= updated
|
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
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
|
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
|