2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-24 11:57:29 +00:00
|
|
|
class SendInteractionService < BaseService
|
|
|
|
# Send an Atom representation of an interaction to a remote Salmon endpoint
|
2017-02-11 01:12:05 +00:00
|
|
|
# @param [String] Entry XML
|
|
|
|
# @param [Account] source_account
|
2016-02-24 11:57:29 +00:00
|
|
|
# @param [Account] target_account
|
2017-02-11 01:12:05 +00:00
|
|
|
def call(xml, source_account, target_account)
|
|
|
|
envelope = salmon.pack(xml, source_account.keypair)
|
2016-02-24 11:57:29 +00:00
|
|
|
salmon.post(target_account.salmon_url, envelope)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def salmon
|
|
|
|
@salmon ||= OStatus2::Salmon.new
|
|
|
|
end
|
|
|
|
end
|