2016-11-15 17:56:29 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-24 13:57:29 +02:00
|
|
|
class ProcessFeedService < BaseService
|
2017-12-06 12:41:57 +02:00
|
|
|
def call(body, account, **options)
|
2017-10-08 18:34:34 +03:00
|
|
|
@options = options
|
|
|
|
|
2016-02-20 23:53:20 +02:00
|
|
|
xml = Nokogiri::XML(body)
|
2016-11-13 20:12:40 +02:00
|
|
|
xml.encoding = 'utf-8'
|
2016-11-08 02:32:34 +02:00
|
|
|
|
2017-04-08 14:26:03 +03:00
|
|
|
update_author(body, account)
|
2016-11-08 02:32:34 +02:00
|
|
|
process_entries(xml, account)
|
2016-03-25 03:13:30 +02:00
|
|
|
end
|
2016-02-20 23:53:20 +02:00
|
|
|
|
2016-03-25 03:13:30 +02:00
|
|
|
private
|
2016-02-28 15:26:26 +02:00
|
|
|
|
2017-04-08 14:26:03 +03:00
|
|
|
def update_author(body, account)
|
2017-04-05 22:41:50 +03:00
|
|
|
RemoteProfileUpdateWorker.perform_async(account.id, body.force_encoding('UTF-8'), true)
|
2016-11-08 02:32:34 +02:00
|
|
|
end
|
2016-02-24 02:28:53 +02:00
|
|
|
|
2016-11-08 02:32:34 +02:00
|
|
|
def process_entries(xml, account)
|
2017-09-19 19:08:08 +03:00
|
|
|
xml.xpath('//xmlns:entry', xmlns: OStatus::TagManager::XMLNS).reverse_each.map { |entry| process_entry(entry, account) }.compact
|
2016-11-08 02:32:34 +02:00
|
|
|
end
|
2016-03-16 11:46:15 +02:00
|
|
|
|
2017-07-18 17:39:47 +03:00
|
|
|
def process_entry(xml, account)
|
2017-10-08 18:34:34 +03:00
|
|
|
activity = OStatus::Activity::General.new(xml, account, @options)
|
2017-07-18 17:39:47 +03:00
|
|
|
activity.specialize&.perform if activity.status?
|
|
|
|
rescue ActiveRecord::RecordInvalid => e
|
2017-07-19 17:02:03 +03:00
|
|
|
Rails.logger.debug "Nothing was saved for #{activity.id} because: #{e}"
|
2017-07-18 17:39:47 +03:00
|
|
|
nil
|
2016-09-20 01:39:03 +03:00
|
|
|
end
|
2016-02-20 23:53:20 +02:00
|
|
|
end
|