2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-24 11:57:29 +00:00
|
|
|
class ProcessFeedService < BaseService
|
2016-02-20 21:53:20 +00:00
|
|
|
def call(body, account)
|
|
|
|
xml = Nokogiri::XML(body)
|
2016-11-13 18:12:40 +00:00
|
|
|
xml.encoding = 'utf-8'
|
2016-11-08 00:32:34 +00:00
|
|
|
|
2017-04-08 12:26:03 +01:00
|
|
|
update_author(body, account)
|
2016-11-08 00:32:34 +00:00
|
|
|
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
|
|
|
|
2017-04-08 12:26:03 +01:00
|
|
|
def update_author(body, account)
|
2017-04-05 20:41:50 +01:00
|
|
|
RemoteProfileUpdateWorker.perform_async(account.id, body.force_encoding('UTF-8'), true)
|
2016-11-08 00:32:34 +00:00
|
|
|
end
|
2016-02-24 00:28:53 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def process_entries(xml, account)
|
2016-11-30 20:32:11 +00:00
|
|
|
xml.xpath('//xmlns:entry', xmlns: TagManager::XMLNS).reverse_each.map { |entry| ProcessEntry.new.call(entry, account) }.compact
|
2016-11-08 00:32:34 +00:00
|
|
|
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-11-18 22:19:38 +00:00
|
|
|
rescue ActiveRecord::RecordInvalid => e
|
|
|
|
Rails.logger.debug "Nothing was saved for #{id} because: #{e}"
|
|
|
|
nil
|
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}"
|
2017-01-27 15:55:06 +00:00
|
|
|
status, just_created = status_from_xml(@xml)
|
2016-11-05 14:20:05 +00:00
|
|
|
|
2017-01-14 01:22:16 +00:00
|
|
|
return if status.nil?
|
2017-01-27 15:55:06 +00:00
|
|
|
return status unless just_created
|
2017-01-20 17:31:49 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
if verb == :share
|
2017-04-27 16:06:47 +01:00
|
|
|
original_status = shared_status_from_xml(@xml.at_xpath('.//activity:object', activity: TagManager::AS_XMLNS))
|
|
|
|
status.reblog = original_status
|
2016-11-08 18:37:08 +00:00
|
|
|
|
|
|
|
if original_status.nil?
|
|
|
|
status.destroy
|
|
|
|
return nil
|
2016-11-09 23:15:49 +00:00
|
|
|
elsif original_status.reblog?
|
|
|
|
status.reblog = original_status.reblog
|
2016-11-08 18:37:08 +00:00
|
|
|
end
|
2016-11-08 00:32:34 +00:00
|
|
|
end
|
2016-09-09 19:04:34 +01:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
status.save!
|
2016-11-21 08:56:01 +00:00
|
|
|
|
2017-03-13 15:34:15 +00:00
|
|
|
notify_about_mentions!(status) unless status.reblog?
|
|
|
|
notify_about_reblog!(status) if status.reblog? && status.reblog.account.local?
|
2016-11-08 00:32:34 +00:00
|
|
|
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
|
|
|
|
2017-03-13 15:34:15 +00:00
|
|
|
def notify_about_mentions!(status)
|
|
|
|
status.mentions.includes(:account).each do |mention|
|
|
|
|
mentioned_account = mention.account
|
|
|
|
next unless mentioned_account.local?
|
|
|
|
NotifyService.new.call(mentioned_account, mention)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def notify_about_reblog!(status)
|
|
|
|
NotifyService.new.call(status.reblog.account, status)
|
|
|
|
end
|
|
|
|
|
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
|
|
|
|
2017-04-27 16:06:47 +01:00
|
|
|
def shared_status_from_xml(entry)
|
|
|
|
status = find_status(id(entry))
|
|
|
|
|
|
|
|
return status unless status.nil?
|
|
|
|
|
|
|
|
FetchRemoteStatusService.new.call(url(entry))
|
|
|
|
end
|
|
|
|
|
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))
|
2017-01-27 15:55:06 +00:00
|
|
|
|
|
|
|
return [status, false] unless status.nil?
|
2016-11-08 00:32:34 +00:00
|
|
|
|
2016-11-09 23:15:49 +00:00
|
|
|
# If status embeds an author, find that author
|
|
|
|
# If that author cannot be found, don't record the status (do not misattribute)
|
|
|
|
if account?(entry)
|
|
|
|
begin
|
|
|
|
account = find_or_resolve_account(acct(entry))
|
2017-01-27 15:55:06 +00:00
|
|
|
return [nil, false] if account.nil?
|
2016-11-09 23:15:49 +00:00
|
|
|
rescue Goldfinger::Error
|
2017-01-27 15:55:06 +00:00
|
|
|
return [nil, false]
|
2016-11-09 23:15:49 +00:00
|
|
|
end
|
|
|
|
else
|
|
|
|
account = @account
|
2016-11-08 18:37:08 +00:00
|
|
|
end
|
|
|
|
|
2017-01-27 15:55:06 +00:00
|
|
|
return [nil, false] if account.suspended?
|
2016-12-05 21:59:30 +00:00
|
|
|
|
2016-11-15 15:56:29 +00:00
|
|
|
status = Status.create!(
|
2016-11-08 00:32:34 +00:00
|
|
|
uri: id(entry),
|
|
|
|
url: url(entry),
|
2016-11-08 18:37:08 +00:00
|
|
|
account: account,
|
2016-11-08 00:32:34 +00:00
|
|
|
text: content(entry),
|
2017-01-24 23:49:08 +00:00
|
|
|
spoiler_text: content_warning(entry),
|
2017-02-09 19:25:39 +00:00
|
|
|
created_at: published(entry),
|
2017-02-11 14:10:22 +00:00
|
|
|
reply: thread?(entry),
|
2017-04-16 19:32:17 +01:00
|
|
|
language: content_language(entry),
|
2017-02-11 14:10:22 +00:00
|
|
|
visibility: visibility_scope(entry)
|
2016-11-15 15:56:29 +00:00
|
|
|
)
|
2016-11-08 00:32:34 +00:00
|
|
|
|
|
|
|
if thread?(entry)
|
2016-11-08 18:37:08 +00:00
|
|
|
Rails.logger.debug "Trying to attach #{status.id} (#{id(entry)}) to #{thread(entry).first}"
|
2016-11-08 00:32:34 +00:00
|
|
|
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
|
|
|
|
2017-01-27 15:55:06 +00:00
|
|
|
[status, true]
|
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 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)
|
2016-12-11 21:23:11 +00:00
|
|
|
|
2016-12-12 20:12:19 +00:00
|
|
|
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-30 20:32:11 +00:00
|
|
|
xml.xpath('./xmlns:link[@rel="mentioned"]', xmlns: TagManager::XMLNS).each do |link|
|
2017-02-11 14:10:22 +00:00
|
|
|
next if [TagManager::TYPES[:group], TagManager::TYPES[:collection]].include? link['ostatus:object-type']
|
2016-09-05 17:39:53 +01:00
|
|
|
|
2017-04-16 17:01:48 +01:00
|
|
|
mentioned_account = account_from_href(link['href'])
|
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
|
|
|
|
2017-03-13 15:34:15 +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
|
|
|
|
2017-04-16 17:01:48 +01:00
|
|
|
def account_from_href(href)
|
2017-04-25 01:47:31 +01:00
|
|
|
url = Addressable::URI.parse(href).normalize
|
2017-04-16 17:01:48 +01:00
|
|
|
|
|
|
|
if TagManager.instance.web_domain?(url.host)
|
|
|
|
Account.find_local(url.path.gsub('/users/', ''))
|
|
|
|
else
|
|
|
|
Account.find_by(uri: href) || Account.find_by(url: href) || FetchRemoteAccountService.new.call(href)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def hashtags_from_xml(parent, xml)
|
2017-04-16 11:51:30 +01:00
|
|
|
tags = xml.xpath('./xmlns:category', xmlns: TagManager::XMLNS).map { |category| category['term'] }.select(&:present?)
|
2016-11-08 00:32:34 +00:00
|
|
|
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)
|
2017-04-16 11:51:30 +01:00
|
|
|
do_not_download = DomainBlock.find_by(domain: parent.account.domain)&.reject_media?
|
2017-01-23 20:36:08 +00:00
|
|
|
|
2016-11-30 20:32:11 +00:00
|
|
|
xml.xpath('./xmlns:link[@rel="enclosure"]', xmlns: TagManager::XMLNS).each do |link|
|
2016-11-08 00:32:34 +00:00
|
|
|
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'])
|
2017-04-25 01:47:31 +01:00
|
|
|
parsed_url = Addressable::URI.parse(link['href']).normalize
|
2017-02-22 18:55:14 +00:00
|
|
|
|
2017-04-29 23:23:45 +01:00
|
|
|
next if !%w(http https).include?(parsed_url.scheme) || parsed_url.host.empty?
|
2017-04-16 11:51:30 +01:00
|
|
|
|
|
|
|
media.save
|
|
|
|
|
|
|
|
next if do_not_download
|
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
|
2016-11-18 22:16:34 +00:00
|
|
|
rescue OpenURI::HTTPError, Paperclip::Errors::NotIdentifiedByImageMagickError
|
2016-11-08 00:32:34 +00:00
|
|
|
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)
|
2016-11-30 20:32:11 +00:00
|
|
|
xml.at_xpath('./xmlns:id', xmlns: TagManager::XMLNS).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)
|
2016-11-30 20:32:11 +00:00
|
|
|
raw = xml.at_xpath('./activity:verb', activity: TagManager::AS_XMLNS).content
|
|
|
|
TagManager::VERBS.key(raw)
|
2016-11-08 00:32:34 +00:00
|
|
|
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)
|
2016-11-30 20:32:11 +00:00
|
|
|
raw = xml.at_xpath('./activity:object-type', activity: TagManager::AS_XMLNS).content
|
|
|
|
TagManager::TYPES.key(raw)
|
2016-11-08 00:32:34 +00:00
|
|
|
rescue
|
|
|
|
:activity
|
|
|
|
end
|
2016-02-24 00:28:53 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def url(xml = @xml)
|
2016-11-30 20:32:11 +00:00
|
|
|
link = xml.at_xpath('./xmlns:link[@rel="alternate"]', xmlns: TagManager::XMLNS)
|
2016-11-08 18:09:22 +00:00
|
|
|
link.nil? ? nil : link['href']
|
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)
|
2016-11-30 20:32:11 +00:00
|
|
|
xml.at_xpath('./xmlns:content', xmlns: TagManager::XMLNS).content
|
2016-11-08 00:32:34 +00:00
|
|
|
end
|
2016-02-24 16:23:59 +00:00
|
|
|
|
2017-04-16 19:32:17 +01:00
|
|
|
def content_language(xml = @xml)
|
|
|
|
xml.at_xpath('./xmlns:content', xmlns: TagManager::XMLNS)['xml:lang']&.presence || 'en'
|
|
|
|
end
|
|
|
|
|
2017-01-24 23:49:08 +00:00
|
|
|
def content_warning(xml = @xml)
|
2017-01-25 15:53:30 +00:00
|
|
|
xml.at_xpath('./xmlns:summary', xmlns: TagManager::XMLNS)&.content || ''
|
2017-01-24 23:49:08 +00:00
|
|
|
end
|
|
|
|
|
2017-02-11 14:10:22 +00:00
|
|
|
def visibility_scope(xml = @xml)
|
|
|
|
xml.at_xpath('./mastodon:scope', mastodon: TagManager::MTDN_XMLNS)&.content&.to_sym || :public
|
|
|
|
end
|
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def published(xml = @xml)
|
2016-11-30 20:32:11 +00:00
|
|
|
xml.at_xpath('./xmlns:published', xmlns: TagManager::XMLNS).content
|
2016-11-08 00:32:34 +00:00
|
|
|
end
|
2016-02-24 16:23:59 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def thread?(xml = @xml)
|
2016-11-30 20:32:11 +00:00
|
|
|
!xml.at_xpath('./thr:in-reply-to', thr: TagManager::THR_XMLNS).nil?
|
2016-11-08 00:32:34 +00:00
|
|
|
end
|
2016-02-24 00:28:53 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def thread(xml = @xml)
|
2016-11-30 20:32:11 +00:00
|
|
|
thr = xml.at_xpath('./thr:in-reply-to', thr: TagManager::THR_XMLNS)
|
2016-11-08 00:32:34 +00:00
|
|
|
[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)
|
2016-11-30 20:32:11 +00:00
|
|
|
!xml.at_xpath('./xmlns:author', xmlns: TagManager::XMLNS).nil?
|
2016-11-08 00:32:34 +00:00
|
|
|
end
|
2016-02-24 23:17:01 +00:00
|
|
|
|
2016-11-08 00:32:34 +00:00
|
|
|
def acct(xml = @xml)
|
2016-11-30 20:32:11 +00:00
|
|
|
username = xml.at_xpath('./xmlns:author/xmlns:name', xmlns: TagManager::XMLNS).content
|
|
|
|
url = xml.at_xpath('./xmlns:author/xmlns:uri', xmlns: TagManager::XMLNS).content
|
2017-04-25 01:47:31 +01:00
|
|
|
domain = Addressable::URI.parse(url).normalize.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
|