2018-03-04 03:19:11 -05: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-16 18:49:55 -05:00
|
|
|
status = status_from_object
|
2018-03-04 03:19:11 -05:00
|
|
|
|
2018-05-18 05:33:56 -04:00
|
|
|
return unless !status.nil? && status.account_id == @account.id && !@account.pinned?(status)
|
2018-03-04 03:19:11 -05:00
|
|
|
|
|
|
|
StatusPin.create!(account: @account, status: status)
|
|
|
|
end
|
|
|
|
end
|