This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2018-03-04 00:19:11 -08: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
|
|
|
|
|
2018-05-18 02:33:56 -07:00
|
|
|
status = status_from_uri(object_uri)
|
|
|
|
status ||= fetch_remote_original_status
|
2018-03-04 00:19:11 -08:00
|
|
|
|
2018-05-18 02:33:56 -07:00
|
|
|
return unless !status.nil? && status.account_id == @account.id && !@account.pinned?(status)
|
2018-03-04 00:19:11 -08:00
|
|
|
|
|
|
|
StatusPin.create!(account: @account, status: status)
|
|
|
|
end
|
|
|
|
end
|