mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 12:06:21 +00:00
34 lines
692 B
Ruby
34 lines
692 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Almacena el UUID de otro Post y actualiza el valor en el Post
|
|
# relacionado.
|
|
class MetadataBelongsTo < MetadataRelatedPosts
|
|
include Metadata::InverseConcern
|
|
|
|
# TODO: Convertir algunos tipos de valores en módulos para poder
|
|
# implementar varios tipos de campo sin repetir código
|
|
#
|
|
# @include MetadataString
|
|
#
|
|
# Una string vacía
|
|
def default_value
|
|
''
|
|
end
|
|
|
|
# Obtiene el valor desde el documento.
|
|
#
|
|
# @return [String]
|
|
def document_value
|
|
document.data[name.to_s]
|
|
end
|
|
|
|
def indexable_values
|
|
posts.find_by_post_uuid(value).try(:title)
|
|
end
|
|
|
|
private
|
|
|
|
def sanitize(uuid)
|
|
uuid.to_s.gsub(/[^a-f0-9\-]/i, '')
|
|
end
|
|
end
|