5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-28 18:26:21 +00:00

Merge branch 'issue-17333' into production.panel.sutty.nl

This commit is contained in:
f 2024-10-02 13:30:11 -03:00
commit f28c89adf4
No known key found for this signature in database

View file

@ -1,24 +1,21 @@
# frozen_string_literal: true
class MetadataDate < MetadataTemplate
# La fecha de hoy si no hay nada
# La fecha de hoy si no hay nada. Podemos traer un valor por defecto
# desde el esquema, siempre y cuando pueda considerarse una fecha
# válida.
#
# @return [Date,nil]
def default_value
case (dv = super)
when String
if dv.present?
begin
Date.parse(dv)
rescue Date::Error => e
ExceptionNotifier.notify_exception(e, data: { site: site.name, post: post.id, name:, type: })
nil
end
else
if (dv = super.presence)
begin
Date.parse(dv)
# XXX: Notificar para que sepamos que el esquema no es válido.
# TODO: Validar el valor por defecto en sutty-schema-validator.
rescue Date::Error => e
ExceptionNotifier.notify_exception(e, data: { site: site.name, post: post.id, name:, type: })
nil
end
else
Date.today
end
end