0
0
Fork 0

Respect "delete" verb on remote feeds

This commit is contained in:
Eugen Rochko 2016-03-16 10:46:15 +01:00
parent 1eb65e2acc
commit 75b3339a99
3 changed files with 15 additions and 3 deletions

View file

@ -16,15 +16,21 @@ class ProcessFeedService < BaseService
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
@ -71,6 +77,10 @@ class ProcessFeedService < BaseService
status.save!
end
def delete_post!(status)
status.destroy!
end
def find_original_status(_xml, id)
return nil if id.nil?