2016-02-24 11:57:29 +00:00
|
|
|
class ProcessFeedService < BaseService
|
|
|
|
# Create local statuses from an Atom feed
|
|
|
|
# @param [String] body Atom feed
|
|
|
|
# @param [Account] account Account this feed belongs to
|
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
|
|
|
# @return [Enumerable] created statuses
|
2016-02-20 21:53:20 +00:00
|
|
|
def call(body, account)
|
|
|
|
xml = Nokogiri::XML(body)
|
2016-03-25 01:13:30 +00:00
|
|
|
update_remote_profile_service.(xml.at_xpath('/xmlns:feed/xmlns:author'), account) unless xml.at_xpath('/xmlns:feed').nil?
|
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
|
|
|
xml.xpath('//xmlns:entry').reverse_each.map { |entry| process_entry(account, entry) }.compact
|
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-03-25 01:13:30 +00:00
|
|
|
def process_entry(account, entry)
|
|
|
|
return unless [:note, :comment, :activity].include? object_type(entry)
|
2016-02-24 00:28:53 +00:00
|
|
|
|
2016-03-25 01:13:30 +00:00
|
|
|
status = Status.find_by(uri: activity_id(entry))
|
2016-02-24 00:28:53 +00:00
|
|
|
|
2016-03-25 01:13:30 +00:00
|
|
|
# If we already have a post and the verb is now "delete", we gotta delete it and move on!
|
|
|
|
if !status.nil? && verb(entry) == :delete
|
|
|
|
delete_post!(status)
|
|
|
|
return
|
|
|
|
end
|
2016-03-16 09:46:15 +00:00
|
|
|
|
2016-03-25 01:13:30 +00:00
|
|
|
return unless status.nil?
|
2016-02-24 00:28:53 +00:00
|
|
|
|
2016-03-25 01:13:30 +00:00
|
|
|
status = Status.new(uri: activity_id(entry), url: activity_link(entry), account: account, text: content(entry), created_at: published(entry), updated_at: updated(entry))
|
2016-02-24 00:28:53 +00:00
|
|
|
|
2016-03-25 01:13:30 +00:00
|
|
|
if verb(entry) == :share
|
|
|
|
add_reblog!(entry, status)
|
|
|
|
elsif verb(entry) == :post
|
|
|
|
if thread_id(entry).nil?
|
|
|
|
add_post!(entry, status)
|
|
|
|
else
|
|
|
|
add_reply!(entry, 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-03-25 01:13:30 +00:00
|
|
|
# If we added a status, go through accounts it mentions and create respective relations
|
2016-09-06 11:30:15 +01:00
|
|
|
# Also record all media attachments for the status and for the reblogged status if present
|
2016-03-25 01:13:30 +00:00
|
|
|
unless status.new_record?
|
|
|
|
record_remote_mentions(status, entry.xpath('./xmlns:link[@rel="mentioned"]'))
|
2016-09-09 19:04:34 +01:00
|
|
|
|
2016-09-05 17:39:53 +01:00
|
|
|
process_attachments(entry, status)
|
2016-09-06 11:30:15 +01:00
|
|
|
process_attachments(entry.xpath('./activity:object'), status.reblog) if status.reblog?
|
2016-09-09 19:04:34 +01:00
|
|
|
|
2016-03-25 02:22:26 +00:00
|
|
|
DistributionWorker.perform_async(status.id)
|
2016-03-25 01:13:30 +00:00
|
|
|
end
|
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
|
|
|
|
|
|
|
return status
|
2016-03-25 01:13:30 +00:00
|
|
|
end
|
2016-02-28 20:22:56 +00:00
|
|
|
|
2016-03-25 01:13:30 +00:00
|
|
|
def record_remote_mentions(status, links)
|
|
|
|
# Here we have to do a reverse lookup of local accounts by their URL!
|
|
|
|
# It's not pretty at all! I really wish all these protocols sticked to
|
|
|
|
# using acct:username@domain only! It would make things so much easier
|
|
|
|
# and tidier
|
2016-02-28 20:22:56 +00:00
|
|
|
|
2016-03-25 01:13:30 +00:00
|
|
|
links.each do |mention_link|
|
|
|
|
href = Addressable::URI.parse(mention_link.attribute('href').value)
|
2016-02-28 20:22:56 +00:00
|
|
|
|
2016-03-25 01:13:30 +00:00
|
|
|
if href.host == Rails.configuration.x.local_domain
|
|
|
|
# A local user is mentioned
|
|
|
|
mentioned_account = Account.find_local(href.path.gsub('/users/', ''))
|
2016-03-18 23:41:29 +00:00
|
|
|
|
2016-03-25 01:13:30 +00:00
|
|
|
unless mentioned_account.nil?
|
|
|
|
mentioned_account.mentions.where(status: status).first_or_create(status: status)
|
|
|
|
NotificationMailer.mention(mentioned_account, status).deliver_later
|
|
|
|
end
|
|
|
|
else
|
|
|
|
# What to do about remote user?
|
2016-03-26 00:34:12 +00:00
|
|
|
# Are we supposed to do a search in the database by URL?
|
|
|
|
# We could technically open the URL, look for LRDD tags, get webfinger that way,
|
|
|
|
# finally acquire the acct:username@domain form, and then check DB
|
2016-02-28 20:22:56 +00:00
|
|
|
end
|
2016-02-24 00:28:53 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-05 17:39:53 +01:00
|
|
|
def process_attachments(entry, status)
|
|
|
|
entry.xpath('./xmlns:link[@rel="enclosure"]').each do |enclosure_link|
|
|
|
|
next if enclosure_link.attribute('href').nil?
|
|
|
|
|
|
|
|
media = MediaAttachment.new(account: status.account, status: status, remote_url: enclosure_link.attribute('href').value)
|
|
|
|
media.file_remote_url = enclosure_link.attribute('href').value
|
|
|
|
media.save
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-02-24 23:22:46 +00:00
|
|
|
def add_post!(_entry, status)
|
2016-02-24 00:28:53 +00:00
|
|
|
status.save!
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_reblog!(entry, status)
|
|
|
|
status.reblog = find_original_status(entry, target_id(entry))
|
2016-02-24 16:23:59 +00:00
|
|
|
|
|
|
|
if status.reblog.nil?
|
|
|
|
status.reblog = fetch_remote_status(entry)
|
|
|
|
end
|
|
|
|
|
2016-03-19 18:20:07 +00:00
|
|
|
if !status.reblog.nil?
|
|
|
|
status.save!
|
2016-03-24 12:25:33 +00:00
|
|
|
NotificationMailer.reblog(status.reblog, status.account).deliver_later if status.reblog.local?
|
2016-03-19 18:20:07 +00:00
|
|
|
end
|
2016-02-24 00:28:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def add_reply!(entry, status)
|
|
|
|
status.thread = find_original_status(entry, thread_id(entry))
|
2016-02-24 16:23:59 +00:00
|
|
|
status.save!
|
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
|
|
|
|
|
|
|
if status.thread.nil? && !thread_href(entry).nil?
|
|
|
|
ThreadResolveWorker.perform_async(status.id, thread_href(entry))
|
|
|
|
end
|
2016-02-24 00:28:53 +00:00
|
|
|
end
|
2016-02-20 21:53:20 +00:00
|
|
|
|
2016-03-16 09:46:15 +00:00
|
|
|
def delete_post!(status)
|
2016-09-19 23:39:03 +01:00
|
|
|
remove_status_service.(status)
|
2016-03-16 09:46:15 +00:00
|
|
|
end
|
|
|
|
|
2016-02-24 23:22:46 +00:00
|
|
|
def find_original_status(_xml, id)
|
2016-02-24 00:28:53 +00:00
|
|
|
return nil if id.nil?
|
2016-02-20 21:53:20 +00:00
|
|
|
|
2016-09-09 19:04:34 +01:00
|
|
|
if TagManager.instance.local_id?(id)
|
|
|
|
Status.find(TagManager.instance.unique_tag_to_local_id(id, 'Status'))
|
2016-02-24 00:28:53 +00:00
|
|
|
else
|
2016-02-24 16:23:59 +00:00
|
|
|
Status.find_by(uri: id)
|
2016-02-20 21:53:20 +00:00
|
|
|
end
|
|
|
|
end
|
2016-02-24 00:28:53 +00:00
|
|
|
|
2016-02-24 16:23:59 +00:00
|
|
|
def fetch_remote_status(xml)
|
|
|
|
username = xml.at_xpath('./activity:object/xmlns:author/xmlns:name').content
|
|
|
|
url = xml.at_xpath('./activity:object/xmlns:author/xmlns:uri').content
|
|
|
|
domain = Addressable::URI.parse(url).host
|
|
|
|
account = Account.find_by(username: username, domain: domain)
|
|
|
|
|
|
|
|
if account.nil?
|
2016-09-19 23:39:03 +01:00
|
|
|
account = follow_remote_account_service.("#{username}@#{domain}")
|
2016-02-24 16:23:59 +00:00
|
|
|
end
|
2016-02-24 00:28:53 +00:00
|
|
|
|
2016-09-18 11:28:49 +01:00
|
|
|
status = Status.new(account: account, uri: target_id(xml), text: target_content(xml), url: target_url(xml), created_at: published(xml), updated_at: updated(xml))
|
|
|
|
status.thread = find_original_status(xml, thread_id(xml))
|
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
|
|
|
status.save
|
|
|
|
|
|
|
|
if status.saved? && status.thread.nil? && !thread_href(xml).nil?
|
|
|
|
ThreadResolveWorker.perform_async(status.id, thread_href(xml))
|
|
|
|
end
|
|
|
|
|
|
|
|
status
|
2016-09-17 16:07:45 +01:00
|
|
|
rescue Goldfinger::Error, HTTP::Error
|
|
|
|
nil
|
2016-02-24 00:28:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def published(xml)
|
|
|
|
xml.at_xpath('./xmlns:published').content
|
|
|
|
end
|
|
|
|
|
|
|
|
def updated(xml)
|
|
|
|
xml.at_xpath('./xmlns:updated').content
|
|
|
|
end
|
|
|
|
|
|
|
|
def content(xml)
|
|
|
|
xml.at_xpath('./xmlns:content').content
|
|
|
|
end
|
|
|
|
|
|
|
|
def thread_id(xml)
|
2016-02-28 14:46:29 +00:00
|
|
|
xml.at_xpath('./thr:in-reply-to').attribute('ref').value
|
2016-02-24 00:28:53 +00:00
|
|
|
rescue
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
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
|
|
|
def thread_href(xml)
|
|
|
|
xml.at_xpath('./thr:in-reply-to').attribute('href').value
|
|
|
|
rescue
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2016-02-24 00:28:53 +00:00
|
|
|
def target_id(xml)
|
2016-02-24 16:23:59 +00:00
|
|
|
xml.at_xpath('.//activity:object/xmlns:id').content
|
2016-02-24 00:28:53 +00:00
|
|
|
rescue
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def activity_id(xml)
|
2016-02-24 23:22:46 +00:00
|
|
|
xml.at_xpath('./xmlns:id').content
|
2016-02-24 00:28:53 +00:00
|
|
|
end
|
|
|
|
|
2016-02-28 20:22:56 +00:00
|
|
|
def activity_link(xml)
|
|
|
|
xml.at_xpath('./xmlns:link[@rel="alternate"]').attribute('href').value
|
|
|
|
rescue
|
|
|
|
''
|
|
|
|
end
|
|
|
|
|
2016-02-24 16:23:59 +00:00
|
|
|
def target_content(xml)
|
|
|
|
xml.at_xpath('.//activity:object/xmlns:content').content
|
|
|
|
end
|
|
|
|
|
|
|
|
def target_url(xml)
|
2016-02-28 20:22:56 +00:00
|
|
|
xml.at_xpath('.//activity:object/xmlns:link[@rel="alternate"]').attribute('href').value
|
2016-02-24 16:23:59 +00:00
|
|
|
end
|
|
|
|
|
2016-02-24 00:28:53 +00:00
|
|
|
def object_type(xml)
|
|
|
|
xml.at_xpath('./activity:object-type').content.gsub('http://activitystrea.ms/schema/1.0/', '').to_sym
|
|
|
|
rescue
|
|
|
|
:note
|
|
|
|
end
|
|
|
|
|
|
|
|
def verb(xml)
|
|
|
|
xml.at_xpath('./activity:verb').content.gsub('http://activitystrea.ms/schema/1.0/', '').to_sym
|
|
|
|
rescue
|
|
|
|
:post
|
|
|
|
end
|
2016-02-24 02:05:40 +00:00
|
|
|
|
|
|
|
def follow_remote_account_service
|
2016-02-24 11:57:29 +00:00
|
|
|
@follow_remote_account_service ||= FollowRemoteAccountService.new
|
2016-02-24 02:05:40 +00:00
|
|
|
end
|
2016-02-24 23:17:01 +00:00
|
|
|
|
2016-02-28 13:26:26 +00:00
|
|
|
def update_remote_profile_service
|
|
|
|
@update_remote_profile_service ||= UpdateRemoteProfileService.new
|
|
|
|
end
|
2016-09-19 23:39:03 +01:00
|
|
|
|
|
|
|
def remove_status_service
|
|
|
|
@remove_status_service ||= RemoveStatusService.new
|
|
|
|
end
|
2016-02-20 21:53:20 +00:00
|
|
|
end
|