2021-05-06 15:52:30 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Post
|
|
|
|
# Vuelve indexables a los Posts
|
|
|
|
module Indexable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2021-05-06 22:46:36 +00:00
|
|
|
# Indexa o reindexa el Post
|
|
|
|
after_save :index!
|
|
|
|
|
2021-05-06 15:52:30 +00:00
|
|
|
# Devuelve una versión indexable del Post
|
|
|
|
#
|
|
|
|
# @return [IndexedPosts]
|
|
|
|
def to_index
|
2021-05-06 22:46:36 +00:00
|
|
|
IndexedPost.find_or_create_by(id: uuid.value).tap do |indexed_post|
|
2021-05-06 15:52:30 +00:00
|
|
|
indexed_post.layout = layout.name
|
|
|
|
indexed_post.site_id = site.id
|
|
|
|
indexed_post.path = path.basename
|
|
|
|
indexed_post.locale = IndexedPost.to_dictionary(locale: locale.value)
|
|
|
|
indexed_post.title = title.value
|
|
|
|
indexed_post.front_matter = indexable_front_matter
|
|
|
|
indexed_post.content = indexable_content
|
2021-05-06 22:07:11 +00:00
|
|
|
indexed_post.created_at = date.value
|
|
|
|
indexed_post.order = attribute?(:order) ? order.value : 0
|
2021-05-06 15:52:30 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2021-05-06 22:46:36 +00:00
|
|
|
# Indexa o reindexa el Post
|
|
|
|
#
|
|
|
|
# @return [Boolean]
|
|
|
|
def index!
|
|
|
|
to_index.save
|
|
|
|
end
|
|
|
|
|
2021-05-06 15:52:30 +00:00
|
|
|
# Los metadatos que se almacenan como objetos JSON. Empezamos con
|
|
|
|
# las categorías porque se usan para filtrar en el listado de
|
|
|
|
# artículos.
|
|
|
|
#
|
|
|
|
# @return [Hash]
|
|
|
|
def indexable_front_matter
|
|
|
|
return {} unless attribute? :categories
|
|
|
|
|
|
|
|
{ categories: categories.indexable_values }
|
|
|
|
end
|
|
|
|
|
|
|
|
# Devuelve un documento indexable en texto plano
|
|
|
|
#
|
|
|
|
# XXX: No memoizamos para permitir actualizaciones, aunque
|
|
|
|
# probablemente se indexe una sola vez.
|
|
|
|
#
|
|
|
|
# @return [String]
|
|
|
|
def indexable_content
|
|
|
|
indexable_attributes.map do |attr|
|
|
|
|
self[attr].to_s
|
|
|
|
end.join("\n")
|
|
|
|
end
|
|
|
|
|
|
|
|
def indexable_attributes
|
|
|
|
@indexable_attributes ||= attributes.select do |attr|
|
|
|
|
self[attr].indexable?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|