From eec0dc46a6d6782f6aebdc759d4822ef17fd57a2 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 5 Sep 2016 18:39:53 +0200 Subject: PostStatusService can attach media to status, ProcessFeedService likewise --- app/services/process_feed_service.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'app/services/process_feed_service.rb') diff --git a/app/services/process_feed_service.rb b/app/services/process_feed_service.rb index d14b35e80..0dd22fa22 100644 --- a/app/services/process_feed_service.rb +++ b/app/services/process_feed_service.rb @@ -38,6 +38,7 @@ class ProcessFeedService < BaseService # If we added a status, go through accounts it mentions and create respective relations unless status.new_record? record_remote_mentions(status, entry.xpath('./xmlns:link[@rel="mentioned"]')) + process_attachments(entry, status) DistributionWorker.perform_async(status.id) end end @@ -68,6 +69,16 @@ class ProcessFeedService < BaseService end end + 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 + def add_post!(_entry, status) status.save! end -- cgit