2018-03-04 19:19:11 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::Activity::Add < ActivityPub::Activity
|
|
|
|
def perform
|
|
|
|
return unless @json['target'].present? && value_or_id(@json['target']) == @account.featured_collection_url
|
|
|
|
|
2022-01-17 10:49:55 +11:00
|
|
|
status = status_from_object
|
2018-03-04 19:19:11 +11:00
|
|
|
|
2022-02-02 23:53:35 +11:00
|
|
|
return unless !status.nil? && status.account_id == @account.id && !@account.pinned?(status) && status.distributable?
|
2018-03-04 19:19:11 +11:00
|
|
|
|
|
|
|
StatusPin.create!(account: @account, status: status)
|
|
|
|
end
|
|
|
|
end
|