You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
720 B
30 lines
720 B
9 years ago
|
class SendInteractionService < BaseService
|
||
|
include AtomHelper
|
||
|
|
||
|
# Send an Atom representation of an interaction to a remote Salmon endpoint
|
||
|
# @param [StreamEntry] stream_entry
|
||
|
# @param [Account] target_account
|
||
|
def call(stream_entry, target_account)
|
||
|
envelope = salmon.pack(entry_xml(stream_entry), target_account.keypair)
|
||
|
salmon.post(target_account.salmon_url, envelope)
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def entry_xml(stream_entry)
|
||
|
Nokogiri::XML::Builder.new do |xml|
|
||
|
entry(xml, true) do
|
||
|
author(xml) do
|
||
|
include_author xml, stream_entry.account
|
||
|
end
|
||
|
|
||
|
include_entry xml, stream_entry
|
||
|
end
|
||
|
end.to_xml
|
||
|
end
|
||
|
|
||
|
def salmon
|
||
|
@salmon ||= OStatus2::Salmon.new
|
||
|
end
|
||
|
end
|