5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-23 01:06:22 +00:00
panel/app/models/activity_pub/object.rb

43 lines
1 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
# Almacena objetos de ActivityPub, como Note, Article, etc.
2024-02-21 15:46:38 +00:00
class ActivityPub
class Object < ApplicationRecord
include ActivityPub::Concerns::JsonLdConcern
# Los objetos son únicos a toda la base de datos
2024-03-06 20:45:21 +00:00
validates :uri, presence: true, url: true, uniqueness: true
2024-02-21 15:46:38 +00:00
has_many :activity_pubs, as: :object
# Encontrar le Actor por su relación con el objeto
#
# @return [ActivityPub::Actor,nil]
def actor
ActivityPub::Actor.find_by(uri: actor_uri)
end
# @return [String]
def actor_uri
content['attributedTo']
end
2024-03-07 19:54:09 +00:00
def actor_type?
false
end
def object_type?
true
end
2024-03-18 14:55:38 +00:00
# Poder explorar propiedades remotas
#
# @return [DistributedPress::V1::Social::ReferencedObject]
def referenced(site)
require 'distributed_press/v1/social/referenced_object'
@referenced ||= DistributedPress::V1::Social::ReferencedObject.new(object: content, dereferencer: site.social_inbox.dereferencer)
end
2024-02-21 15:46:38 +00:00
end
end