2017-08-08 21:52:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::Activity
|
|
|
|
include JsonLdHelper
|
2019-02-02 19:11:38 +01:00
|
|
|
include Redisable
|
2017-08-08 21:52:15 +02:00
|
|
|
|
2019-03-03 22:18:23 +01:00
|
|
|
SUPPORTED_TYPES = %w(Note Question).freeze
|
2019-12-16 23:55:28 +01:00
|
|
|
CONVERTED_TYPES = %w(Image Audio Video Article Page Event).freeze
|
2019-02-13 18:36:23 +01:00
|
|
|
|
2017-12-06 11:41:57 +01:00
|
|
|
def initialize(json, account, **options)
|
2017-08-08 21:52:15 +02:00
|
|
|
@json = json
|
|
|
|
@account = account
|
|
|
|
@object = @json['object']
|
2017-10-08 17:34:34 +02:00
|
|
|
@options = options
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def perform
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
|
|
|
|
class << self
|
2017-12-06 11:41:57 +01:00
|
|
|
def factory(json, account, **options)
|
2017-08-08 21:52:15 +02:00
|
|
|
@json = json
|
2020-01-10 21:57:05 +01:00
|
|
|
klass&.new(json, account, **options)
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def klass
|
|
|
|
case @json['type']
|
|
|
|
when 'Create'
|
|
|
|
ActivityPub::Activity::Create
|
|
|
|
when 'Announce'
|
|
|
|
ActivityPub::Activity::Announce
|
|
|
|
when 'Delete'
|
|
|
|
ActivityPub::Activity::Delete
|
|
|
|
when 'Follow'
|
|
|
|
ActivityPub::Activity::Follow
|
|
|
|
when 'Like'
|
|
|
|
ActivityPub::Activity::Like
|
|
|
|
when 'Block'
|
|
|
|
ActivityPub::Activity::Block
|
|
|
|
when 'Update'
|
|
|
|
ActivityPub::Activity::Update
|
|
|
|
when 'Undo'
|
|
|
|
ActivityPub::Activity::Undo
|
2017-08-10 22:33:12 +02:00
|
|
|
when 'Accept'
|
|
|
|
ActivityPub::Activity::Accept
|
|
|
|
when 'Reject'
|
|
|
|
ActivityPub::Activity::Reject
|
2018-02-28 06:54:55 +01:00
|
|
|
when 'Flag'
|
|
|
|
ActivityPub::Activity::Flag
|
2018-03-04 09:19:11 +01:00
|
|
|
when 'Add'
|
|
|
|
ActivityPub::Activity::Add
|
|
|
|
when 'Remove'
|
|
|
|
ActivityPub::Activity::Remove
|
2018-12-29 02:24:36 +01:00
|
|
|
when 'Move'
|
|
|
|
ActivityPub::Activity::Move
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def status_from_uri(uri)
|
|
|
|
ActivityPub::TagManager.instance.uri_to_resource(uri, Status)
|
|
|
|
end
|
|
|
|
|
|
|
|
def account_from_uri(uri)
|
|
|
|
ActivityPub::TagManager.instance.uri_to_resource(uri, Account)
|
|
|
|
end
|
|
|
|
|
|
|
|
def object_uri
|
2022-03-12 09:11:36 +01:00
|
|
|
@object_uri ||= uri_from_bearcap(value_or_id(@object))
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
2019-02-13 18:36:23 +01:00
|
|
|
def unsupported_object_type?
|
|
|
|
@object.is_a?(String) || !(supported_object_type? || converted_object_type?)
|
|
|
|
end
|
|
|
|
|
|
|
|
def supported_object_type?
|
|
|
|
equals_or_includes_any?(@object['type'], SUPPORTED_TYPES)
|
|
|
|
end
|
|
|
|
|
|
|
|
def converted_object_type?
|
|
|
|
equals_or_includes_any?(@object['type'], CONVERTED_TYPES)
|
|
|
|
end
|
|
|
|
|
2017-08-08 21:52:15 +02:00
|
|
|
def delete_arrived_first?(uri)
|
2020-07-01 19:05:21 +02:00
|
|
|
redis.exists?("delete_upon_arrival:#{@account.id}:#{uri}")
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def delete_later!(uri)
|
2021-04-21 04:46:09 +02:00
|
|
|
redis.setex("delete_upon_arrival:#{@account.id}:#{uri}", 6.hours.seconds, true)
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
2018-05-18 11:33:56 +02:00
|
|
|
|
2019-02-13 18:36:23 +01:00
|
|
|
def status_from_object
|
|
|
|
# If the status is already known, return it
|
|
|
|
status = status_from_uri(object_uri)
|
2019-02-15 18:19:45 +01:00
|
|
|
|
2019-02-13 18:36:23 +01:00
|
|
|
return status unless status.nil?
|
|
|
|
|
|
|
|
# If the boosted toot is embedded and it is a self-boost, handle it like a Create
|
|
|
|
unless unsupported_object_type?
|
2019-06-04 23:24:31 +02:00
|
|
|
actor_id = value_or_id(first_of_value(@object['attributedTo']))
|
2019-02-15 18:19:45 +01:00
|
|
|
|
2019-02-13 18:36:23 +01:00
|
|
|
if actor_id == @account.uri
|
|
|
|
return ActivityPub::Activity.factory({ 'type' => 'Create', 'actor' => actor_id, 'object' => @object }, @account).perform
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-02-17 15:16:36 +01:00
|
|
|
fetch_remote_original_status
|
2019-02-13 18:36:23 +01:00
|
|
|
end
|
|
|
|
|
2020-07-22 11:43:17 +02:00
|
|
|
def dereference_object!
|
|
|
|
return unless @object.is_a?(String)
|
|
|
|
|
2020-08-30 12:34:20 +02:00
|
|
|
dereferencer = ActivityPub::Dereferencer.new(@object, permitted_origin: @account.uri, signature_account: signed_fetch_account)
|
2020-07-22 11:43:17 +02:00
|
|
|
|
2020-08-30 12:34:20 +02:00
|
|
|
@object = dereferencer.object unless dereferencer.object.nil?
|
2020-07-22 11:43:17 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def signed_fetch_account
|
2020-08-24 16:56:21 +02:00
|
|
|
return Account.find(@options[:delivered_to_account_id]) if @options[:delivered_to_account_id].present?
|
|
|
|
|
2020-07-22 11:43:17 +02:00
|
|
|
first_mentioned_local_account || first_local_follower
|
|
|
|
end
|
|
|
|
|
|
|
|
def first_mentioned_local_account
|
2020-08-24 14:11:47 +02:00
|
|
|
audience = (as_array(@json['to']) + as_array(@json['cc'])).map { |x| value_or_id(x) }.uniq
|
2020-07-22 11:43:17 +02:00
|
|
|
local_usernames = audience.select { |uri| ActivityPub::TagManager.instance.local_uri?(uri) }
|
|
|
|
.map { |uri| ActivityPub::TagManager.instance.uri_to_local_id(uri, :username) }
|
|
|
|
|
|
|
|
return if local_usernames.empty?
|
|
|
|
|
|
|
|
Account.local.where(username: local_usernames).first
|
|
|
|
end
|
|
|
|
|
|
|
|
def first_local_follower
|
|
|
|
@account.followers.local.first
|
|
|
|
end
|
|
|
|
|
2019-10-24 22:45:43 +02:00
|
|
|
def follow_request_from_object
|
|
|
|
@follow_request ||= FollowRequest.find_by(target_account: @account, uri: object_uri) unless object_uri.nil?
|
|
|
|
end
|
|
|
|
|
|
|
|
def follow_from_object
|
2019-11-04 13:02:27 +01:00
|
|
|
@follow ||= ::Follow.find_by(target_account: @account, uri: object_uri) unless object_uri.nil?
|
2019-10-24 22:45:43 +02:00
|
|
|
end
|
|
|
|
|
2018-05-18 11:33:56 +02:00
|
|
|
def fetch_remote_original_status
|
|
|
|
if object_uri.start_with?('http')
|
|
|
|
return if ActivityPub::TagManager.instance.local_uri?(object_uri)
|
|
|
|
ActivityPub::FetchRemoteStatusService.new.call(object_uri, id: true, on_behalf_of: @account.followers.local.first)
|
|
|
|
elsif @object['url'].present?
|
|
|
|
::FetchRemoteStatusService.new.call(@object['url'])
|
|
|
|
end
|
|
|
|
end
|
2018-11-16 19:46:23 +01:00
|
|
|
|
2021-04-21 04:46:09 +02:00
|
|
|
def lock_or_return(key, expire_after = 2.hours.seconds)
|
2018-11-16 19:46:23 +01:00
|
|
|
yield if redis.set(key, true, nx: true, ex: expire_after)
|
|
|
|
ensure
|
|
|
|
redis.del(key)
|
|
|
|
end
|
2019-02-15 18:19:45 +01:00
|
|
|
|
2021-05-19 23:52:08 +02:00
|
|
|
def lock_or_fail(key, expire_after = 15.minutes.seconds)
|
2022-04-28 17:47:34 +02:00
|
|
|
RedisLock.acquire({ redis: redis, key: key, autorelease: expire_after }) do |lock|
|
2021-04-21 04:46:09 +02:00
|
|
|
if lock.acquired?
|
|
|
|
yield
|
|
|
|
else
|
|
|
|
raise Mastodon::RaceConditionError
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-02-15 18:19:45 +01:00
|
|
|
def fetch?
|
|
|
|
!@options[:delivery]
|
|
|
|
end
|
|
|
|
|
|
|
|
def followed_by_local_accounts?
|
2020-07-14 19:05:34 +02:00
|
|
|
@account.passive_relationships.exists? || @options[:relayed_through_account]&.passive_relationships&.exists?
|
2019-02-15 18:19:45 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def requested_through_relay?
|
|
|
|
@options[:relayed_through_account] && Relay.find_by(inbox_url: @options[:relayed_through_account].inbox_url)&.enabled?
|
|
|
|
end
|
2019-02-17 03:38:25 +01:00
|
|
|
|
|
|
|
def reject_payload!
|
|
|
|
Rails.logger.info("Rejected #{@json['type']} activity #{@json['id']} from #{@account.uri}#{@options[:relayed_through_account] && "via #{@options[:relayed_through_account].uri}"}")
|
|
|
|
nil
|
|
|
|
end
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|