has_one :stream_entry, as: :activity, dependent: :destroy
has_many :favourites, inverse_of: :status, dependent: :destroy
- has_many :reblogs, foreign_key: 'reblog_of_id', class_name: 'Status', inverse_of: :reblog
+ has_many :reblogs, foreign_key: 'reblog_of_id', class_name: 'Status', inverse_of: :reblog, dependent: :destroy
has_many :replies, foreign_key: 'in_reply_to_id', class_name: 'Status', inverse_of: :thread
has_many :mentioned_accounts, class_name: 'Mention', dependent: :destroy
status = Status.find_by(uri: activity_id(entry))
+ # If we already have a post and the verb is now "delete", we gotta delete it and move on!
+ if verb(entry) == :delete
+ delete_post!(status)
+ next
+ end
+
next unless status.nil?
status = Status.new(uri: activity_id(entry), url: activity_link(entry), account: account, text: content(entry), created_at: published(entry), updated_at: updated(entry))
- if object_type(entry) == :comment
+ if object_type(entry) == :comment && verb(entry) == :post
add_reply!(entry, status)
elsif verb(entry) == :share
add_reblog!(entry, status)
- else
+ elsif verb(entry) == :post
add_post!(entry, status)
end
status.save!
end
+ def delete_post!(status)
+ status.destroy!
+ end
+
def find_original_status(_xml, id)
return nil if id.nil?