2018-03-04 19:19:11 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::Activity::Remove < ActivityPub::Activity
|
|
|
|
def perform
|
2022-10-22 20:49:41 +11:00
|
|
|
return if @json['target'].blank?
|
2018-03-04 19:19:11 +11:00
|
|
|
|
2022-10-22 20:49:41 +11:00
|
|
|
case value_or_id(@json['target'])
|
|
|
|
when @account.featured_collection_url
|
|
|
|
case @object['type']
|
|
|
|
when 'Hashtag'
|
|
|
|
remove_featured_tags
|
|
|
|
else
|
|
|
|
remove_featured
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def remove_featured
|
2018-03-04 19:19:11 +11:00
|
|
|
status = status_from_uri(object_uri)
|
|
|
|
|
2018-05-18 19:33:56 +10:00
|
|
|
return unless !status.nil? && status.account_id == @account.id
|
2018-03-04 19:19:11 +11:00
|
|
|
|
|
|
|
pin = StatusPin.find_by(account: @account, status: status)
|
|
|
|
pin&.destroy!
|
|
|
|
end
|
2022-10-22 20:49:41 +11:00
|
|
|
|
|
|
|
def remove_featured_tags
|
|
|
|
name = @object['name']&.delete_prefix('#')
|
|
|
|
|
|
|
|
return if name.blank?
|
|
|
|
|
|
|
|
featured_tag = FeaturedTag.by_name(name).find_by(account: @account)
|
|
|
|
featured_tag&.destroy!
|
|
|
|
end
|
2018-03-04 19:19:11 +11:00
|
|
|
end
|