2016-02-24 11:57:29 +00:00
|
|
|
class ProcessFeedService < BaseService
|
2016-10-10 17:05:52 +01:00
|
|
|
ACTIVITY_NS = 'http://activitystrea.ms/spec/1.0/'.freeze
|
|
|
|
THREAD_NS = 'http://purl.org/syndication/thread/1.0'.freeze
|
|
|
|
|
2016-02-20 21:53:20 +00:00
|
|
|
def call(body, account)
|
|
|
|
xml = Nokogiri::XML(body)
|
2016-11-08 00:32:34 +00:00
|
|
|
|
|
|
|
update_author(xml, account)
|
|
|
|
process_entries(xml, account)
|
2016-03-25 01:13:30 +00:00
|
|
|
end
|
2016-02-20 21:53:20 +00:00
|
|
|
|
2016-03-25 01:13:30 +00:00
|
|
|
private
|
2016-02-28 13:26:26 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def update_author(xml, account)
|
|
|
|
return if xml.at_xpath('/xmlns:feed').nil?
|
|
|
|
UpdateRemoteProfileService.new.call(xml.at_xpath('/xmlns:feed/xmlns:author'), account)
|
|
|
|
end
|
2016-02-24 00:28:53 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def process_entries(xml, account)
|
|
|
|
xml.xpath('//xmlns:entry').reverse_each.map { |entry| ProcessEntry.new.call(entry, account) }.compact
|
|
|
|
end
|
2016-03-16 09:46:15 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
class ProcessEntry
|
|
|
|
def call(xml, account)
|
|
|
|
@account = account
|
|
|
|
@xml = xml
|
2016-02-24 00:28:53 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
return if skip_unsupported_type?
|
2016-02-24 00:28:53 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
case verb
|
|
|
|
when :post, :share
|
|
|
|
return create_status
|
|
|
|
when :delete
|
|
|
|
return delete_status
|
2016-02-24 00:28:53 +00:00
|
|
|
end
|
2016-03-25 01:13:30 +00:00
|
|
|
end
|
2016-02-24 23:17:01 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
private
|
2016-09-09 19:04:34 +01:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def create_status
|
|
|
|
Rails.logger.debug "Creating remote status #{id}"
|
|
|
|
status = status_from_xml(@xml)
|
2016-11-05 14:20:05 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
if verb == :share
|
2016-11-08 00:48:17 +00:00
|
|
|
original_status = status_from_xml(@xml.at_xpath('.//activity:object', activity: ACTIVITY_NS))
|
2016-11-08 00:32:34 +00:00
|
|
|
status.reblog = original_status
|
|
|
|
end
|
2016-09-09 19:04:34 +01:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
status.save!
|
|
|
|
Rails.logger.debug "Queuing remote status #{status.id} (#{id}) for distribution"
|
2016-03-25 02:22:26 +00:00
|
|
|
DistributionWorker.perform_async(status.id)
|
2016-11-08 00:32:34 +00:00
|
|
|
status
|
2016-03-25 01:13:30 +00:00
|
|
|
end
|
2016-02-28 20:22:56 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def delete_status
|
|
|
|
Rails.logger.debug "Deleting remote status #{id}"
|
|
|
|
status = Status.find_by(uri: id)
|
|
|
|
RemoveStatusService.new.call(status) unless status.nil?
|
|
|
|
nil
|
|
|
|
end
|
2016-10-14 19:14:53 +01:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def skip_unsupported_type?
|
|
|
|
!([:post, :share, :delete].include?(verb) && [:activity, :note, :comment].include?(type))
|
|
|
|
end
|
2016-02-28 20:22:56 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def status_from_xml(entry)
|
|
|
|
# Return early if status already exists in db
|
|
|
|
status = find_status(id(entry))
|
|
|
|
return status unless status.nil?
|
|
|
|
|
|
|
|
status = Status.create!({
|
|
|
|
uri: id(entry),
|
|
|
|
url: url(entry),
|
|
|
|
account: account?(entry) ? find_or_resolve_account(acct(entry)) : @account,
|
|
|
|
text: content(entry),
|
|
|
|
created_at: published(entry),
|
|
|
|
})
|
|
|
|
|
|
|
|
if thread?(entry)
|
|
|
|
status.thread = find_or_resolve_status(status, *thread(entry))
|
|
|
|
end
|
2016-09-26 15:42:38 +01:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
mentions_from_xml(status, entry)
|
|
|
|
hashtags_from_xml(status, entry)
|
|
|
|
media_from_xml(status, entry)
|
2016-09-29 20:28:21 +01:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
status
|
|
|
|
end
|
2016-02-28 20:22:56 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def find_or_resolve_account(acct)
|
|
|
|
FollowRemoteAccountService.new.call(acct)
|
|
|
|
end
|
2016-03-18 23:41:29 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def find_or_resolve_status(parent, uri, url)
|
|
|
|
status = find_status(uri)
|
|
|
|
ThreadResolveWorker.perform_async(parent.id, url) if status.nil?
|
2016-09-22 20:10:36 +01:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
status
|
|
|
|
end
|
2016-09-26 15:42:38 +01:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def find_status(uri)
|
|
|
|
if TagManager.instance.local_id?(uri)
|
|
|
|
local_id = TagManager.instance.unique_tag_to_local_id(uri, 'Status')
|
|
|
|
return Status.find(local_id)
|
2016-02-28 20:22:56 +00:00
|
|
|
end
|
2016-11-08 00:32:34 +00:00
|
|
|
|
|
|
|
Status.find_by(uri: uri)
|
2016-02-24 00:28:53 +00:00
|
|
|
end
|
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def mentions_from_xml(parent, xml)
|
|
|
|
processed_account_ids = []
|
2016-10-14 19:14:53 +01:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
xml.xpath('./xmlns:link[@rel="mentioned"]').each do |link|
|
|
|
|
next if link['href'] == 'http://activityschema.org/collection/public'
|
2016-09-05 17:39:53 +01:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
url = Addressable::URI.parse(link['href'])
|
2016-09-22 19:42:20 +01:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
mentioned_account = if TagManager.instance.local_domain?(url.host)
|
|
|
|
Account.find_local(url.path.gsub('/users/', ''))
|
|
|
|
else
|
|
|
|
Account.find_by(url: link['href']) || FetchRemoteAccountService.new.call(link['href'])
|
|
|
|
end
|
2016-09-29 20:28:21 +01:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
next if mentioned_account.nil? || processed_account_ids.include?(mentioned_account.id)
|
2016-09-05 17:39:53 +01:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
if mentioned_account.local?
|
|
|
|
# Send notifications
|
|
|
|
NotificationMailer.mention(mentioned_account, parent).deliver_later unless mentioned_account.blocking?(parent.account)
|
|
|
|
end
|
2016-02-24 00:28:53 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
mentioned_account.mentions.where(status: parent).first_or_create(status: parent)
|
2016-02-24 16:23:59 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
# So we can skip duplicate mentions
|
|
|
|
processed_account_ids << mentioned_account.id
|
|
|
|
end
|
2016-03-19 18:20:07 +00:00
|
|
|
end
|
2016-02-24 00:28:53 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def hashtags_from_xml(parent, xml)
|
|
|
|
tags = xml.xpath('./xmlns:category').map { |category| category['term'] }
|
|
|
|
ProcessHashtagsService.new.call(parent, tags)
|
Fix #24 - Thread resolving for remote statuses
This is a big one, so let me enumerate:
Accounts as well as stream entry pages now contain Link headers that
reference the Atom feed and Webfinger URL for the former and Atom entry
for the latter. So you only need to HEAD those resources to get that
information, no need to download and parse HTML <link>s.
ProcessFeedService will now queue ThreadResolveWorker for each remote
status that it cannot find otherwise. Furthermore, entries are now
processed in reverse order (from bottom to top) in case a newer entry
references a chronologically previous one.
ThreadResolveWorker uses FetchRemoteStatusService to obtain a status
and attach the child status it was queued for to it.
FetchRemoteStatusService looks up the URL, first with a HEAD, tests
if it's an Atom feed, in which case it processes it directly. Next
for Link headers to the Atom feed, in which case that is fetched
and processed. Lastly if it's HTML, it is checked for <link>s to the Atom
feed, and if such is found, that is fetched and processed. The account for
the status is derived from author/name attribute in the XML and the hostname
in the URL (domain). FollowRemoteAccountService and ProcessFeedService
are used.
This means that potentially threads are resolved recursively until a dead-end
is encountered, however it is performed asynchronously over background jobs,
so it should be ok.
2016-09-21 00:34:14 +01:00
|
|
|
end
|
2016-02-20 21:53:20 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def media_from_xml(parent, xml)
|
|
|
|
xml.xpath('./xmlns:link[@rel="enclosure"]').each do |link|
|
|
|
|
next unless link['href']
|
2016-03-16 09:46:15 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
media = MediaAttachment.where(status: parent, remote_url: link['href']).first_or_initialize(account: parent.account, status: parent, remote_url: link['href'])
|
2016-02-20 21:53:20 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
begin
|
|
|
|
media.file_remote_url = link['href']
|
|
|
|
media.save
|
|
|
|
rescue Paperclip::Errors::NotIdentifiedByImageMagickError
|
|
|
|
next
|
|
|
|
end
|
|
|
|
end
|
2016-02-20 21:53:20 +00:00
|
|
|
end
|
2016-02-24 16:23:59 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def id(xml = @xml)
|
|
|
|
xml.at_xpath('./xmlns:id').content
|
2016-02-24 16:23:59 +00:00
|
|
|
end
|
2016-02-24 00:28:53 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def verb(xml = @xml)
|
|
|
|
raw = xml.at_xpath('./activity:verb', activity: ACTIVITY_NS).content
|
|
|
|
raw.gsub('http://activitystrea.ms/schema/1.0/', '').gsub('http://ostatus.org/schema/1.0/', '').to_sym
|
|
|
|
rescue
|
|
|
|
:post
|
Fix #24 - Thread resolving for remote statuses
This is a big one, so let me enumerate:
Accounts as well as stream entry pages now contain Link headers that
reference the Atom feed and Webfinger URL for the former and Atom entry
for the latter. So you only need to HEAD those resources to get that
information, no need to download and parse HTML <link>s.
ProcessFeedService will now queue ThreadResolveWorker for each remote
status that it cannot find otherwise. Furthermore, entries are now
processed in reverse order (from bottom to top) in case a newer entry
references a chronologically previous one.
ThreadResolveWorker uses FetchRemoteStatusService to obtain a status
and attach the child status it was queued for to it.
FetchRemoteStatusService looks up the URL, first with a HEAD, tests
if it's an Atom feed, in which case it processes it directly. Next
for Link headers to the Atom feed, in which case that is fetched
and processed. Lastly if it's HTML, it is checked for <link>s to the Atom
feed, and if such is found, that is fetched and processed. The account for
the status is derived from author/name attribute in the XML and the hostname
in the URL (domain). FollowRemoteAccountService and ProcessFeedService
are used.
This means that potentially threads are resolved recursively until a dead-end
is encountered, however it is performed asynchronously over background jobs,
so it should be ok.
2016-09-21 00:34:14 +01:00
|
|
|
end
|
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def type(xml = @xml)
|
|
|
|
raw = xml.at_xpath('./activity:object-type', activity: ACTIVITY_NS).content
|
|
|
|
raw.gsub('http://activitystrea.ms/schema/1.0/', '').gsub('http://ostatus.org/schema/1.0/', '').to_sym
|
|
|
|
rescue
|
|
|
|
:activity
|
|
|
|
end
|
2016-02-24 00:28:53 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def url(xml = @xml)
|
|
|
|
link = xml.at_xpath('./xmlns:link[@rel="alternate"]')
|
2016-11-08 17:55:46 +00:00
|
|
|
link['href'] unless link.nil?
|
|
|
|
nil
|
2016-11-08 00:32:34 +00:00
|
|
|
end
|
2016-02-28 20:22:56 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def content(xml = @xml)
|
|
|
|
xml.at_xpath('./xmlns:content').content
|
|
|
|
end
|
2016-02-24 16:23:59 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def published(xml = @xml)
|
|
|
|
xml.at_xpath('./xmlns:published').content
|
|
|
|
end
|
2016-02-24 16:23:59 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def thread?(xml = @xml)
|
|
|
|
!xml.at_xpath('./thr:in-reply-to', thr: THREAD_NS).nil?
|
|
|
|
end
|
2016-02-24 00:28:53 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def thread(xml = @xml)
|
|
|
|
thr = xml.at_xpath('./thr:in-reply-to', thr: THREAD_NS)
|
|
|
|
[thr['ref'], thr['href']]
|
|
|
|
end
|
2016-02-24 02:05:40 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def account?(xml = @xml)
|
|
|
|
!xml.at_xpath('./xmlns:author').nil?
|
|
|
|
end
|
2016-02-24 23:17:01 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def acct(xml = @xml)
|
|
|
|
username = xml.at_xpath('./xmlns:author/xmlns:name').content
|
|
|
|
url = xml.at_xpath('./xmlns:author/xmlns:uri').content
|
|
|
|
domain = Addressable::URI.parse(url).host
|
2016-09-19 23:39:03 +01:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
"#{username}@#{domain}"
|
|
|
|
end
|
2016-09-19 23:39:03 +01:00
|
|
|
end
|
2016-02-20 21:53:20 +00:00
|
|
|
end
|