2016-02-24 22:57:29 +11:00
|
|
|
class ProcessInteractionService < BaseService
|
|
|
|
# Record locally the remote interaction with our user
|
|
|
|
# @param [String] envelope Salmon envelope
|
|
|
|
# @param [Account] target_account Account the Salmon was addressed to
|
2016-02-23 02:00:20 +11:00
|
|
|
def call(envelope, target_account)
|
|
|
|
body = salmon.unpack(envelope)
|
|
|
|
xml = Nokogiri::XML(body)
|
|
|
|
|
2016-02-24 10:57:47 +11:00
|
|
|
return unless contains_author?(xml)
|
2016-02-23 02:00:20 +11:00
|
|
|
|
2016-02-24 08:17:07 +11:00
|
|
|
username = xml.at_xpath('/xmlns:entry/xmlns:author/xmlns:name').content
|
|
|
|
url = xml.at_xpath('/xmlns:entry/xmlns:author/xmlns:uri').content
|
2016-02-23 02:00:20 +11:00
|
|
|
domain = Addressable::URI.parse(url).host
|
|
|
|
account = Account.find_by(username: username, domain: domain)
|
|
|
|
|
|
|
|
if account.nil?
|
2016-02-24 13:05:40 +11:00
|
|
|
account = follow_remote_account_service.("acct:#{username}@#{domain}", false)
|
2016-02-24 08:17:07 +11:00
|
|
|
return if account.nil?
|
2016-02-23 02:00:20 +11:00
|
|
|
end
|
|
|
|
|
|
|
|
if salmon.verify(envelope, account.keypair)
|
2016-02-24 10:57:47 +11:00
|
|
|
case verb(xml)
|
2016-02-24 08:17:07 +11:00
|
|
|
when :follow
|
2016-02-24 10:57:47 +11:00
|
|
|
follow!(account, target_account)
|
2016-02-24 08:17:07 +11:00
|
|
|
when :unfollow
|
2016-02-24 10:57:47 +11:00
|
|
|
unfollow!(account, target_account)
|
2016-02-24 08:17:07 +11:00
|
|
|
when :favorite
|
2016-02-24 10:57:47 +11:00
|
|
|
favourite!(xml, account)
|
2016-02-24 08:17:07 +11:00
|
|
|
when :post
|
2016-02-24 10:57:47 +11:00
|
|
|
add_post!(body, account) if mentions_account?(xml, target_account)
|
2016-02-24 08:17:07 +11:00
|
|
|
when :share
|
2016-02-24 12:15:58 +11:00
|
|
|
add_post!(body, account) unless status(xml).nil?
|
2016-02-23 02:00:20 +11:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2016-02-24 08:17:07 +11:00
|
|
|
def contains_author?(xml)
|
|
|
|
!(xml.at_xpath('/xmlns:entry/xmlns:author/xmlns:name').nil? || xml.at_xpath('/xmlns:entry/xmlns:author/xmlns:uri').nil?)
|
|
|
|
end
|
|
|
|
|
2016-02-24 10:57:47 +11:00
|
|
|
def mentions_account?(xml, account)
|
|
|
|
xml.xpath('/xmlns:entry/xmlns:link[@rel="mentioned"]').each { |mention_link| return true if mention_link.attribute('ref') == profile_url(name: account.username) }
|
|
|
|
false
|
2016-02-24 08:17:07 +11:00
|
|
|
end
|
|
|
|
|
2016-02-24 10:57:47 +11:00
|
|
|
def verb(xml)
|
|
|
|
xml.at_xpath('//activity:verb').content.gsub('http://activitystrea.ms/schema/1.0/', '').to_sym
|
2016-02-24 11:28:53 +11:00
|
|
|
rescue
|
|
|
|
:post
|
2016-02-24 08:17:07 +11:00
|
|
|
end
|
|
|
|
|
2016-02-24 10:57:47 +11:00
|
|
|
def follow!(account, target_account)
|
|
|
|
account.follow!(target_account)
|
|
|
|
end
|
2016-02-24 08:17:07 +11:00
|
|
|
|
2016-02-24 10:57:47 +11:00
|
|
|
def unfollow!(account, target_account)
|
|
|
|
account.unfollow!(target_account)
|
|
|
|
end
|
|
|
|
|
|
|
|
def favourite!(xml, from_account)
|
2016-02-24 12:15:58 +11:00
|
|
|
status(xml).favourites.first_or_create!(account: from_account)
|
2016-02-24 10:57:47 +11:00
|
|
|
end
|
|
|
|
|
|
|
|
def add_post!(body, account)
|
|
|
|
process_feed_service.(body, account)
|
2016-02-24 08:17:07 +11:00
|
|
|
end
|
|
|
|
|
2016-02-24 10:57:47 +11:00
|
|
|
def status(xml)
|
2016-02-25 10:22:46 +11:00
|
|
|
Status.find(unique_tag_to_local_id(activity_id(xml), 'Status'))
|
2016-02-24 10:57:47 +11:00
|
|
|
end
|
|
|
|
|
|
|
|
def activity_id(xml)
|
|
|
|
xml.at_xpath('/xmlns:entry/xmlns:id').content
|
2016-02-23 05:11:07 +11:00
|
|
|
end
|
|
|
|
|
2016-02-23 02:00:20 +11:00
|
|
|
def salmon
|
2016-02-24 22:57:29 +11:00
|
|
|
@salmon ||= OStatus2::Salmon.new
|
2016-02-23 02:00:20 +11:00
|
|
|
end
|
|
|
|
|
|
|
|
def follow_remote_account_service
|
2016-02-24 22:57:29 +11:00
|
|
|
@follow_remote_account_service ||= FollowRemoteAccountService.new
|
2016-02-23 02:00:20 +11:00
|
|
|
end
|
2016-02-24 10:57:47 +11:00
|
|
|
|
|
|
|
def process_feed_service
|
2016-02-24 22:57:29 +11:00
|
|
|
@process_feed_service ||= ProcessFeedService.new
|
2016-02-24 10:57:47 +11:00
|
|
|
end
|
2016-02-23 02:00:20 +11:00
|
|
|
end
|