2019-11-07 16:08:14 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-08-05 15:29:11 +00:00
|
|
|
require 'filemagic'
|
|
|
|
|
2019-11-07 16:08:14 +00:00
|
|
|
# Define un campo de archivo
|
|
|
|
class MetadataFile < MetadataTemplate
|
|
|
|
# Una ruta vacía a la imagen con una descripción vacía
|
|
|
|
def default_value
|
2020-11-11 18:29:12 +00:00
|
|
|
super || { 'path' => nil, 'description' => nil }
|
2019-11-07 16:08:14 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def empty?
|
|
|
|
value == default_value
|
|
|
|
end
|
|
|
|
|
2022-03-18 18:42:39 +00:00
|
|
|
# No hay valores sugeridos para archivos subidos.
|
|
|
|
#
|
|
|
|
# XXX: Esto ayuda a deserializar en {Site#everything_of}
|
|
|
|
def values; end
|
|
|
|
|
2019-11-07 16:08:14 +00:00
|
|
|
def validate
|
|
|
|
super
|
|
|
|
|
2021-04-24 22:55:15 +00:00
|
|
|
errors << I18n.t("metadata.#{type}.site_invalid") if site.invalid?
|
2020-11-25 14:59:55 +00:00
|
|
|
errors << I18n.t("metadata.#{type}.path_required") if path_missing?
|
|
|
|
errors << I18n.t("metadata.#{type}.no_file_for_description") if no_file_for_description?
|
2022-03-07 23:52:33 +00:00
|
|
|
errors << I18n.t("metadata.#{type}.attachment_missing") if path? && !static_file
|
2019-11-07 16:08:14 +00:00
|
|
|
|
|
|
|
errors.compact!
|
|
|
|
errors.empty?
|
|
|
|
end
|
|
|
|
|
|
|
|
# Determina si necesitamos la imagen pero no la tenemos
|
|
|
|
def path_missing?
|
2020-09-01 21:33:10 +00:00
|
|
|
required && !path?
|
2019-11-07 16:08:14 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Determina si el archivo ya fue subido
|
|
|
|
def uploaded?
|
2021-02-23 22:00:38 +00:00
|
|
|
value['path'].is_a?(String)
|
2019-11-07 16:08:14 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Asociar la imagen subida al sitio y obtener la ruta
|
2021-02-23 22:00:38 +00:00
|
|
|
#
|
|
|
|
# XXX: Si evitamos guardar cambios con changed? no tenemos forma de
|
|
|
|
# saber que un archivo subido manualmente se convirtió en
|
|
|
|
# un Attachment y cada vez que lo editemos vamos a subir una imagen
|
|
|
|
# repetida.
|
2019-11-07 16:08:14 +00:00
|
|
|
def save
|
2020-09-01 21:33:10 +00:00
|
|
|
value['description'] = sanitize value['description']
|
2022-03-04 22:21:26 +00:00
|
|
|
value['path'] = static_file ? relative_destination_path_with_filename.to_s : nil
|
2019-11-07 16:08:14 +00:00
|
|
|
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2021-02-23 22:00:38 +00:00
|
|
|
# Almacena el archivo en el sitio y lo devuelve o lo obtiene de la
|
|
|
|
# base de datos.
|
|
|
|
#
|
|
|
|
# Existen tres casos:
|
|
|
|
#
|
|
|
|
# * El archivo fue subido a través de HTTP
|
|
|
|
# * El archivo es una ruta que apunta a un archivo asociado al sitio
|
|
|
|
# * El archivo es una ruta a un archivo dentro del repositorio
|
2019-11-07 16:08:14 +00:00
|
|
|
#
|
2021-02-23 22:00:38 +00:00
|
|
|
# XXX: La última opción provoca archivos duplicados, pero es lo mejor
|
|
|
|
# que tenemos hasta que resolvamos https://0xacab.org/sutty/sutty/-/issues/213
|
|
|
|
#
|
2022-03-04 22:21:03 +00:00
|
|
|
# @todo encontrar una forma de obtener el attachment sin tener que
|
|
|
|
# recurrir al último subido.
|
|
|
|
#
|
|
|
|
# @return [ActiveStorage::Attachment,nil]
|
2019-11-07 16:08:14 +00:00
|
|
|
def static_file
|
2021-02-23 22:00:38 +00:00
|
|
|
@static_file ||=
|
|
|
|
case value['path']
|
|
|
|
when ActionDispatch::Http::UploadedFile
|
|
|
|
site.static_files.last if site.static_files.attach(value['path'])
|
|
|
|
when String
|
2022-03-04 22:21:03 +00:00
|
|
|
if (blob_id = ActiveStorage::Blob.where(key: key_from_path).pluck(:id).first)
|
|
|
|
site.static_files.find_by(blob_id: blob_id)
|
|
|
|
elsif path? && pathname.exist? && site.static_files.attach(io: pathname.open, filename: pathname.basename)
|
2021-02-23 22:00:38 +00:00
|
|
|
site.static_files.last
|
|
|
|
end
|
2019-11-07 16:08:14 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-03-04 22:19:40 +00:00
|
|
|
# Obtiene la ruta absoluta al archivo
|
|
|
|
#
|
|
|
|
# @return [Pathname]
|
|
|
|
def pathname
|
|
|
|
raise NoMethodError unless uploaded?
|
|
|
|
|
|
|
|
@pathname ||= Pathname.new(File.join(site.path, value['path']))
|
|
|
|
end
|
|
|
|
|
2022-03-04 22:21:03 +00:00
|
|
|
# Obtiene la key del attachment a partir de la ruta
|
|
|
|
#
|
|
|
|
# @return [String]
|
2021-02-16 21:08:42 +00:00
|
|
|
def key_from_path
|
2022-03-04 22:21:03 +00:00
|
|
|
pathname.dirname.basename.to_s
|
2021-02-16 21:08:42 +00:00
|
|
|
end
|
|
|
|
|
2020-09-01 21:33:10 +00:00
|
|
|
def path?
|
2021-02-16 21:08:42 +00:00
|
|
|
value['path'].present?
|
2020-09-01 21:33:10 +00:00
|
|
|
end
|
|
|
|
|
2022-03-04 22:16:36 +00:00
|
|
|
def description?
|
|
|
|
value['description'].present?
|
|
|
|
end
|
2021-02-23 22:00:38 +00:00
|
|
|
|
2022-03-04 22:16:36 +00:00
|
|
|
private
|
2020-11-25 14:59:55 +00:00
|
|
|
|
2022-03-04 22:21:26 +00:00
|
|
|
# Obtener la ruta al archivo relativa al sitio
|
|
|
|
#
|
|
|
|
# @return [Pathname]
|
|
|
|
def destination_path
|
|
|
|
Pathname.new(static_file_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Agrega el nombre de archivo a la ruta para tener retrocompatibilidad
|
|
|
|
#
|
|
|
|
# @return [Pathname]
|
|
|
|
def destination_path_with_filename
|
|
|
|
destination_path.realpath
|
|
|
|
end
|
|
|
|
|
|
|
|
def relative_destination_path_with_filename
|
2022-03-08 16:10:34 +00:00
|
|
|
destination_path_with_filename.relative_path_from(Pathname.new(site.path).realpath)
|
2022-03-04 22:21:26 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def static_file_path
|
2022-03-09 22:32:53 +00:00
|
|
|
case static_file.blob.service.name
|
|
|
|
when :local
|
|
|
|
File.join(site.path, 'public', static_file.key, static_file.filename.to_s)
|
|
|
|
else
|
|
|
|
static_file.blob.service.path_for(static_file.key)
|
|
|
|
end
|
2022-03-04 22:21:26 +00:00
|
|
|
end
|
|
|
|
|
2020-11-25 14:59:55 +00:00
|
|
|
# No hay archivo pero se lo describió
|
|
|
|
def no_file_for_description?
|
2022-03-04 22:16:36 +00:00
|
|
|
!path? && description?
|
2020-11-25 14:59:55 +00:00
|
|
|
end
|
2019-11-07 16:08:14 +00:00
|
|
|
end
|