Similarly to #2426, put creation of remote statuses in a transaction, (#3233)

so that public timeline/caching would not encounter incomplete data
master
Eugen Rochko 7 years ago committed by GitHub
parent bda7391221
commit 4a4733b397
  1. 31
      app/services/process_feed_service.rb

@ -47,25 +47,30 @@ class ProcessFeedService < BaseService
return return
end end
status, just_created = nil
Rails.logger.debug "Creating remote status #{id}" Rails.logger.debug "Creating remote status #{id}"
status, just_created = status_from_xml(@xml)
return if status.nil? ApplicationRecord.transaction do
return status unless just_created status, just_created = status_from_xml(@xml)
return if status.nil?
return status unless just_created
if verb == :share if verb == :share
original_status = shared_status_from_xml(@xml.at_xpath('.//activity:object', activity: TagManager::AS_XMLNS)) original_status = shared_status_from_xml(@xml.at_xpath('.//activity:object', activity: TagManager::AS_XMLNS))
status.reblog = original_status status.reblog = original_status
if original_status.nil? if original_status.nil?
status.destroy status.destroy
return nil return nil
elsif original_status.reblog? elsif original_status.reblog?
status.reblog = original_status.reblog status.reblog = original_status.reblog
end
end end
end
status.save! status.save!
end
notify_about_mentions!(status) unless status.reblog? notify_about_mentions!(status) unless status.reblog?
notify_about_reblog!(status) if status.reblog? && status.reblog.account.local? notify_about_reblog!(status) if status.reblog? && status.reblog.account.local?

Loading…
Cancel
Save