2018-03-04 19:19:11 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::Activity::Add < 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'
|
|
|
|
add_featured_tags
|
|
|
|
else
|
|
|
|
add_featured
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def add_featured
|
2022-01-17 10:49:55 +11:00
|
|
|
status = status_from_object
|
2018-03-04 19:19:11 +11:00
|
|
|
|
2018-05-18 19:33:56 +10:00
|
|
|
return unless !status.nil? && status.account_id == @account.id && !@account.pinned?(status)
|
2018-03-04 19:19:11 +11:00
|
|
|
|
|
|
|
StatusPin.create!(account: @account, status: status)
|
|
|
|
end
|
2022-10-22 20:49:41 +11:00
|
|
|
|
|
|
|
def add_featured_tags
|
|
|
|
name = @object['name']&.delete_prefix('#')
|
|
|
|
|
|
|
|
FeaturedTag.create!(account: @account, name: name) if name.present?
|
|
|
|
end
|
2018-03-04 19:19:11 +11:00
|
|
|
end
|