2017-08-08 21:52:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::Activity::Update < ActivityPub::Activity
|
2018-05-02 16:08:16 +02:00
|
|
|
SUPPORTED_TYPES = %w(Application Group Organization Person Service).freeze
|
|
|
|
|
2017-08-08 21:52:15 +02:00
|
|
|
def perform
|
2019-03-12 22:58:59 +01:00
|
|
|
if equals_or_includes_any?(@object['type'], SUPPORTED_TYPES)
|
|
|
|
update_account
|
|
|
|
elsif equals_or_includes_any?(@object['type'], %w(Question))
|
|
|
|
update_poll
|
|
|
|
end
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def update_account
|
|
|
|
return if @account.uri != object_uri
|
2018-09-18 16:45:58 +02:00
|
|
|
|
2018-08-26 20:21:03 +02:00
|
|
|
ActivityPub::ProcessAccountService.new.call(@account.username, @account.domain, @object, signed_with_known_key: true)
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|
2019-03-11 00:49:31 +01:00
|
|
|
|
|
|
|
def update_poll
|
|
|
|
return reject_payload! if invalid_origin?(@object['id'])
|
2019-03-12 22:58:59 +01:00
|
|
|
|
2019-03-11 00:49:31 +01:00
|
|
|
status = Status.find_by(uri: object_uri, account_id: @account.id)
|
2019-03-28 04:44:59 +01:00
|
|
|
return if status.nil? || status.preloadable_poll.nil?
|
2019-03-11 00:49:31 +01:00
|
|
|
|
2019-03-28 04:44:59 +01:00
|
|
|
ActivityPub::ProcessPollService.new.call(status.preloadable_poll, @object)
|
2019-03-11 00:49:31 +01:00
|
|
|
end
|
2017-08-08 21:52:15 +02:00
|
|
|
end
|