mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-17 04:26:21 +00:00
fix: detectar si el sitio o los artículos fueron modificados luego de publicar
This commit is contained in:
parent
498c8cc5ad
commit
da873d2efe
1 changed files with 39 additions and 2 deletions
|
@ -41,11 +41,48 @@ class Site
|
|||
build_stats.jekyll.where(status: true).count.zero?
|
||||
end
|
||||
|
||||
# Hubo cambios desde la última publicación?
|
||||
# Cambios posibles luego de la última publicación exitosa:
|
||||
#
|
||||
# * Artículos modificados
|
||||
# * Configuración modificada
|
||||
# * Métodos de publicación añadidos
|
||||
#
|
||||
# @return [Boolean]
|
||||
def awaiting_publication?
|
||||
waiting? && updated_at >= (indexed_posts.order(updated_at: :desc).select(:updated_at).first&.updated_at || 1.second.ago)
|
||||
waiting? && (post_publication_pending? || configuration_publication_pending?)
|
||||
end
|
||||
|
||||
# Se modificaron artículos después de publicar el sitio por última
|
||||
# vez
|
||||
#
|
||||
# @return [Boolean]
|
||||
def post_publication_pending?
|
||||
last_indexed_post_time > last_publication_time
|
||||
end
|
||||
|
||||
# Se modificó el sitio después de publicarlo por última vez
|
||||
#
|
||||
# @return [Boolean]
|
||||
def configuration_publication_pending?
|
||||
updated_at > last_publication_time
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
# Encuentra el último artículo modificado. Si no hay ninguno,
|
||||
# devuelve la fecha de modificación del sitio.
|
||||
#
|
||||
# @return [Time]
|
||||
def last_indexed_post_time
|
||||
indexed_posts.order(updated_at: :desc).select(:updated_at).first&.updated_at || updated_at
|
||||
end
|
||||
|
||||
# Encuentra la fecha de última publicación exitosa, si no hay
|
||||
# ninguno, devuelve la fecha de modificación del sitio.
|
||||
#
|
||||
# @return [Time]
|
||||
def last_publication_time
|
||||
build_stats.jekyll.where(status: true).order(created_at: :desc).select(:created_at).first&.created_at || updated_at
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue