2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-24 03:57:29 -08: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-22 07:00:20 -08:00
|
|
|
def call(envelope, target_account)
|
|
|
|
body = salmon.unpack(envelope)
|
2016-11-13 10:12:40 -08:00
|
|
|
|
|
|
|
xml = Nokogiri::XML(body)
|
|
|
|
xml.encoding = 'utf-8'
|
2016-02-22 07:00:20 -08:00
|
|
|
|
2016-02-23 15:57:47 -08:00
|
|
|
return unless contains_author?(xml)
|
2016-02-22 07:00:20 -08:00
|
|
|
|
2016-11-30 12:32:11 -08:00
|
|
|
username = xml.at_xpath('/xmlns:entry/xmlns:author/xmlns:name', xmlns: TagManager::XMLNS).content
|
|
|
|
url = xml.at_xpath('/xmlns:entry/xmlns:author/xmlns:uri', xmlns: TagManager::XMLNS).content
|
2016-02-22 07:00:20 -08:00
|
|
|
domain = Addressable::URI.parse(url).host
|
|
|
|
account = Account.find_by(username: username, domain: domain)
|
|
|
|
|
|
|
|
if account.nil?
|
2016-09-29 12:28:21 -07:00
|
|
|
account = follow_remote_account_service.call("#{username}@#{domain}")
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|
|
|
|
|
2016-12-05 13:59:30 -08:00
|
|
|
return if account.suspended?
|
|
|
|
|
2016-02-22 07:00:20 -08:00
|
|
|
if salmon.verify(envelope, account.keypair)
|
2017-04-05 12:41:50 -07:00
|
|
|
RemoteProfileUpdateWorker.perform_async(account.id, body.force_encoding('UTF-8'), true)
|
2016-02-28 05:26:26 -08:00
|
|
|
|
2016-02-23 15:57:47 -08:00
|
|
|
case verb(xml)
|
2016-02-23 13:17:07 -08:00
|
|
|
when :follow
|
2016-12-26 10:13:56 -08:00
|
|
|
follow!(account, target_account) unless target_account.locked? || target_account.blocking?(account)
|
2017-02-10 17:12:05 -08:00
|
|
|
when :request_friend
|
|
|
|
follow_request!(account, target_account) unless !target_account.locked? || target_account.blocking?(account)
|
|
|
|
when :authorize
|
|
|
|
authorize_follow_request!(account, target_account)
|
2017-02-11 04:55:07 -08:00
|
|
|
when :reject
|
|
|
|
reject_follow_request!(account, target_account)
|
2016-02-23 13:17:07 -08:00
|
|
|
when :unfollow
|
2016-02-23 15:57:47 -08:00
|
|
|
unfollow!(account, target_account)
|
2016-02-23 13:17:07 -08:00
|
|
|
when :favorite
|
2016-02-23 15:57:47 -08:00
|
|
|
favourite!(xml, account)
|
2017-02-12 10:50:18 -08:00
|
|
|
when :unfavorite
|
|
|
|
unfavourite!(xml, account)
|
2016-02-23 13:17:07 -08:00
|
|
|
when :post
|
2016-02-23 15:57:47 -08:00
|
|
|
add_post!(body, account) if mentions_account?(xml, target_account)
|
2016-02-23 13:17:07 -08:00
|
|
|
when :share
|
2016-02-23 17:15:58 -08:00
|
|
|
add_post!(body, account) unless status(xml).nil?
|
2016-09-04 05:43:00 -07:00
|
|
|
when :delete
|
|
|
|
delete_post!(xml, account)
|
2017-01-02 03:17:51 -08:00
|
|
|
when :block
|
|
|
|
reflect_block!(account, target_account)
|
|
|
|
when :unblock
|
|
|
|
reflect_unblock!(account, target_account)
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|
|
|
|
end
|
2016-10-06 05:46:34 -07:00
|
|
|
rescue Goldfinger::Error, HTTP::Error, OStatus2::BadSalmonError
|
2016-09-17 08:07:45 -07:00
|
|
|
nil
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2016-02-23 13:17:07 -08:00
|
|
|
def contains_author?(xml)
|
2016-11-30 12:32:11 -08:00
|
|
|
!(xml.at_xpath('/xmlns:entry/xmlns:author/xmlns:name', xmlns: TagManager::XMLNS).nil? || xml.at_xpath('/xmlns:entry/xmlns:author/xmlns:uri', xmlns: TagManager::XMLNS).nil?)
|
2016-02-23 13:17:07 -08:00
|
|
|
end
|
|
|
|
|
2016-02-23 15:57:47 -08:00
|
|
|
def mentions_account?(xml, account)
|
2017-03-22 11:26:22 -07:00
|
|
|
xml.xpath('/xmlns:entry/xmlns:link[@rel="mentioned"]', xmlns: TagManager::XMLNS).each { |mention_link| return true if [TagManager.instance.uri_for(account), TagManager.instance.url_for(account)].include?(mention_link.attribute('href').value) }
|
2016-02-23 15:57:47 -08:00
|
|
|
false
|
2016-02-23 13:17:07 -08:00
|
|
|
end
|
|
|
|
|
2016-02-23 15:57:47 -08:00
|
|
|
def verb(xml)
|
2016-11-30 12:32:11 -08:00
|
|
|
raw = xml.at_xpath('//activity:verb', activity: TagManager::AS_XMLNS).content
|
|
|
|
TagManager::VERBS.key(raw)
|
2016-02-23 16:28:53 -08:00
|
|
|
rescue
|
|
|
|
:post
|
2016-02-23 13:17:07 -08:00
|
|
|
end
|
|
|
|
|
2016-02-23 15:57:47 -08:00
|
|
|
def follow!(account, target_account)
|
2016-11-19 15:33:02 -08:00
|
|
|
follow = account.follow!(target_account)
|
|
|
|
NotifyService.new.call(target_account, follow)
|
2016-02-23 15:57:47 -08:00
|
|
|
end
|
2016-02-23 13:17:07 -08:00
|
|
|
|
2017-02-11 04:55:07 -08:00
|
|
|
def follow_request!(account, target_account)
|
2017-02-10 17:12:05 -08:00
|
|
|
follow_request = FollowRequest.create!(account: account, target_account: target_account)
|
|
|
|
NotifyService.new.call(target_account, follow_request)
|
|
|
|
end
|
|
|
|
|
2017-02-11 04:55:07 -08:00
|
|
|
def authorize_follow_request!(account, target_account)
|
2017-02-10 17:12:05 -08:00
|
|
|
follow_request = FollowRequest.find_by(account: target_account, target_account: account)
|
|
|
|
follow_request&.authorize!
|
2017-02-11 04:55:07 -08:00
|
|
|
SubscribeService.new.call(account) unless account.subscribed?
|
|
|
|
end
|
|
|
|
|
|
|
|
def reject_follow_request!(account, target_account)
|
|
|
|
follow_request = FollowRequest.find_by(account: target_account, target_account: account)
|
|
|
|
follow_request&.reject!
|
2017-02-10 17:12:05 -08:00
|
|
|
end
|
|
|
|
|
2016-02-23 15:57:47 -08:00
|
|
|
def unfollow!(account, target_account)
|
|
|
|
account.unfollow!(target_account)
|
|
|
|
end
|
|
|
|
|
2017-01-02 03:17:51 -08:00
|
|
|
def reflect_block!(account, target_account)
|
|
|
|
UnfollowService.new.call(target_account, account) if target_account.following?(account)
|
|
|
|
account.block!(target_account)
|
|
|
|
end
|
|
|
|
|
|
|
|
def reflect_unblock!(account, target_account)
|
|
|
|
UnblockService.new.call(account, target_account)
|
|
|
|
end
|
|
|
|
|
2016-09-04 05:43:00 -07:00
|
|
|
def delete_post!(xml, account)
|
2016-11-30 12:32:11 -08:00
|
|
|
status = Status.find(xml.at_xpath('//xmlns:id', xmlns: TagManager::XMLNS).content)
|
2016-09-04 05:43:00 -07:00
|
|
|
|
|
|
|
return if status.nil?
|
|
|
|
|
2017-04-05 12:41:50 -07:00
|
|
|
RemovalWorker.perform_async(status.id) if account.id == status.account_id
|
2016-09-04 05:43:00 -07:00
|
|
|
end
|
|
|
|
|
2016-02-23 15:57:47 -08:00
|
|
|
def favourite!(xml, from_account)
|
2016-03-19 11:20:07 -07:00
|
|
|
current_status = status(xml)
|
2016-11-19 15:33:02 -08:00
|
|
|
favourite = current_status.favourites.where(account: from_account).first_or_create!(account: from_account)
|
|
|
|
NotifyService.new.call(current_status.account, favourite)
|
2016-02-23 15:57:47 -08:00
|
|
|
end
|
|
|
|
|
2017-02-12 10:50:18 -08:00
|
|
|
def unfavourite!(xml, from_account)
|
|
|
|
current_status = status(xml)
|
|
|
|
favourite = current_status.favourites.where(account: from_account).first
|
|
|
|
favourite&.destroy
|
|
|
|
end
|
|
|
|
|
2016-02-23 15:57:47 -08:00
|
|
|
def add_post!(body, account)
|
2017-04-05 12:41:50 -07:00
|
|
|
ProcessingWorker.perform_async(account.id, body.force_encoding('UTF-8'))
|
2016-02-23 13:17:07 -08:00
|
|
|
end
|
|
|
|
|
2016-02-23 15:57:47 -08:00
|
|
|
def status(xml)
|
2016-09-09 11:04:34 -07:00
|
|
|
Status.find(TagManager.instance.unique_tag_to_local_id(activity_id(xml), 'Status'))
|
2016-02-23 15:57:47 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def activity_id(xml)
|
2016-11-30 12:32:11 -08:00
|
|
|
xml.at_xpath('//activity:object', activity: TagManager::AS_XMLNS).at_xpath('./xmlns:id', xmlns: TagManager::XMLNS).content
|
2016-02-22 10:11:07 -08:00
|
|
|
end
|
|
|
|
|
2016-02-22 07:00:20 -08:00
|
|
|
def salmon
|
2016-02-24 03:57:29 -08:00
|
|
|
@salmon ||= OStatus2::Salmon.new
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def follow_remote_account_service
|
2016-02-24 03:57:29 -08:00
|
|
|
@follow_remote_account_service ||= FollowRemoteAccountService.new
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|
2016-02-23 15:57:47 -08:00
|
|
|
|
|
|
|
def process_feed_service
|
2016-02-24 03:57:29 -08:00
|
|
|
@process_feed_service ||= ProcessFeedService.new
|
2016-02-23 15:57:47 -08:00
|
|
|
end
|
2016-02-28 05:26:26 -08:00
|
|
|
|
2016-09-19 15:39:03 -07:00
|
|
|
def remove_status_service
|
|
|
|
@remove_status_service ||= RemoveStatusService.new
|
|
|
|
end
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|