mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-17 04:26:21 +00:00
fix: detectar cambios de configuración por separado
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
da873d2efe
commit
04c9ff5319
1 changed files with 28 additions and 6 deletions
|
@ -49,34 +49,49 @@ class Site
|
||||||
#
|
#
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
def awaiting_publication?
|
def awaiting_publication?
|
||||||
waiting? && (post_publication_pending? || configuration_publication_pending?)
|
waiting? && (post_pending? || deploy_pending? || configuration_pending?)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Se modificaron artículos después de publicar el sitio por última
|
# Se modificaron artículos después de publicar el sitio por última
|
||||||
# vez
|
# vez
|
||||||
#
|
#
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
def post_publication_pending?
|
def post_pending?
|
||||||
last_indexed_post_time > last_publication_time
|
last_indexed_post_time > last_publication_time
|
||||||
end
|
end
|
||||||
|
|
||||||
# Se modificó el sitio después de publicarlo por última vez
|
# Se modificó el sitio después de publicarlo por última vez
|
||||||
#
|
#
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
def configuration_publication_pending?
|
def deploy_pending?
|
||||||
updated_at > last_publication_time
|
last_deploy_time > last_publication_time
|
||||||
|
end
|
||||||
|
|
||||||
|
# Se modificó la configuración del sitio
|
||||||
|
#
|
||||||
|
# @return [Boolean]
|
||||||
|
def configuration_pending?
|
||||||
|
last_configuration_time > last_publication_time
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
# Encuentra el último artículo modificado. Si no hay ninguno,
|
# Encuentra la fecha del último artículo modificado. Si no hay
|
||||||
# devuelve la fecha de modificación del sitio.
|
# ninguno, devuelve la fecha de modificación del sitio.
|
||||||
#
|
#
|
||||||
# @return [Time]
|
# @return [Time]
|
||||||
def last_indexed_post_time
|
def last_indexed_post_time
|
||||||
indexed_posts.order(updated_at: :desc).select(:updated_at).first&.updated_at || updated_at
|
indexed_posts.order(updated_at: :desc).select(:updated_at).first&.updated_at || updated_at
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Encuentra la fecha de última modificación de los métodos de
|
||||||
|
# publicación.
|
||||||
|
#
|
||||||
|
# @return [Time]
|
||||||
|
def last_deploy_time
|
||||||
|
deploys.order(updated_at: :desc).select(:updated_at).first&.updated_at || updated_at
|
||||||
|
end
|
||||||
|
|
||||||
# Encuentra la fecha de última publicación exitosa, si no hay
|
# Encuentra la fecha de última publicación exitosa, si no hay
|
||||||
# ninguno, devuelve la fecha de modificación del sitio.
|
# ninguno, devuelve la fecha de modificación del sitio.
|
||||||
#
|
#
|
||||||
|
@ -84,6 +99,13 @@ class Site
|
||||||
def last_publication_time
|
def last_publication_time
|
||||||
build_stats.jekyll.where(status: true).order(created_at: :desc).select(:created_at).first&.created_at || updated_at
|
build_stats.jekyll.where(status: true).order(created_at: :desc).select(:created_at).first&.created_at || updated_at
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Fecha de última modificación de la configuración
|
||||||
|
#
|
||||||
|
# @return [Time]
|
||||||
|
def last_configuration_time
|
||||||
|
File.mtime(config.path)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue