2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-24 06:57:29 -05:00
|
|
|
class SendInteractionService < BaseService
|
|
|
|
# Send an Atom representation of an interaction to a remote Salmon endpoint
|
2017-02-10 20:12:05 -05:00
|
|
|
# @param [String] Entry XML
|
|
|
|
# @param [Account] source_account
|
2016-02-24 06:57:29 -05:00
|
|
|
# @param [Account] target_account
|
2017-02-10 20:12:05 -05:00
|
|
|
def call(xml, source_account, target_account)
|
2017-05-19 15:05:32 -04:00
|
|
|
@xml = xml
|
|
|
|
@source_account = source_account
|
|
|
|
@target_account = target_account
|
|
|
|
|
|
|
|
return if block_notification?
|
|
|
|
|
|
|
|
envelope = salmon.pack(@xml, @source_account.keypair)
|
2017-06-26 13:39:58 -04:00
|
|
|
delivery = salmon.post(@target_account.salmon_url, envelope)
|
|
|
|
raise "Delivery failed for #{target_account.salmon_url}: HTTP #{delivery.code}" unless delivery.code > 199 && delivery.code < 300
|
2016-02-24 06:57:29 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-05-19 15:05:32 -04:00
|
|
|
def block_notification?
|
|
|
|
DomainBlock.blocked?(@target_account.domain)
|
|
|
|
end
|
|
|
|
|
2016-02-24 06:57:29 -05:00
|
|
|
def salmon
|
|
|
|
@salmon ||= OStatus2::Salmon.new
|
|
|
|
end
|
|
|
|
end
|