This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-02-22 07:00:20 -08:00
|
|
|
class ProcessFeedService
|
2016-02-20 13:53:20 -08:00
|
|
|
def call(body, account)
|
|
|
|
xml = Nokogiri::XML(body)
|
|
|
|
|
|
|
|
xml.xpath('/xmlns:feed/xmlns:entry').each do |entry|
|
|
|
|
uri = entry.at_xpath('./xmlns:id').content
|
|
|
|
status = Status.find_by(uri: uri)
|
|
|
|
|
|
|
|
next unless status.nil?
|
|
|
|
|
|
|
|
status = Status.new
|
|
|
|
status.account = account
|
|
|
|
status.uri = uri
|
|
|
|
status.text = entry.at_xpath('./xmlns:content').content
|
|
|
|
status.created_at = entry.at_xpath('./xmlns:published').content
|
|
|
|
status.updated_at = entry.at_xpath('./xmlns:updated').content
|
|
|
|
status.save!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|