2019-03-26 15:32:20 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-01-29 22:19:10 +00:00
|
|
|
# Un sitio es un directorio dentro del directorio de sitios de cada
|
|
|
|
# Usuaria
|
2019-07-03 22:04:50 +00:00
|
|
|
class Site < ApplicationRecord
|
2019-07-03 23:40:24 +00:00
|
|
|
include FriendlyId
|
|
|
|
|
2019-07-11 19:00:28 +00:00
|
|
|
validates :name, uniqueness: true, hostname: true
|
2019-07-17 22:18:48 +00:00
|
|
|
validates :design_id, presence: true
|
2019-07-25 18:51:32 +00:00
|
|
|
validate :deploy_local_presence
|
2019-07-26 01:11:01 +00:00
|
|
|
validates_inclusion_of :status, in: %w[waiting enqueued building]
|
2019-07-31 20:55:34 +00:00
|
|
|
validates_presence_of :title
|
|
|
|
validates :description, length: { in: 50..160 }
|
2019-07-25 18:51:32 +00:00
|
|
|
|
2019-07-03 23:40:24 +00:00
|
|
|
friendly_id :name, use: %i[finders]
|
|
|
|
|
2019-07-17 22:18:48 +00:00
|
|
|
belongs_to :design
|
2019-07-19 22:37:53 +00:00
|
|
|
belongs_to :licencia
|
2019-07-17 22:18:48 +00:00
|
|
|
|
2019-07-24 23:51:29 +00:00
|
|
|
has_many :deploys
|
2019-08-02 00:20:42 +00:00
|
|
|
has_many :build_stats, through: :deploys
|
2019-07-06 00:21:49 +00:00
|
|
|
has_many :roles
|
2019-07-08 17:08:06 +00:00
|
|
|
has_many :usuaries, -> { where('roles.rol = ?', 'usuarie') },
|
|
|
|
through: :roles
|
|
|
|
has_many :invitades, -> { where('roles.rol = ?', 'invitade') },
|
|
|
|
through: :roles, source: :usuarie
|
2019-07-03 22:04:50 +00:00
|
|
|
|
2019-07-12 18:22:37 +00:00
|
|
|
# Clonar el directorio de esqueleto antes de crear el sitio
|
|
|
|
before_create :clone_skel!
|
2019-07-12 18:34:16 +00:00
|
|
|
# Elimina el directorio al destruir un sitio
|
|
|
|
before_destroy :remove_directories!
|
2019-07-12 18:22:37 +00:00
|
|
|
# Carga el sitio Jekyll una vez que se inicializa el modelo o después
|
|
|
|
# de crearlo
|
2019-08-06 23:17:29 +00:00
|
|
|
after_initialize :load_jekyll
|
|
|
|
after_create :load_jekyll
|
2019-07-13 00:20:36 +00:00
|
|
|
# Cambiar el nombre del directorio
|
|
|
|
before_update :update_name!
|
2019-07-31 20:55:34 +00:00
|
|
|
# Guardar la configuración si hubo cambios
|
|
|
|
after_save :sync_attributes_with_config!
|
2019-07-03 23:25:23 +00:00
|
|
|
|
2019-07-25 18:51:32 +00:00
|
|
|
accepts_nested_attributes_for :deploys, allow_destroy: true
|
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
# El sitio en Jekyll
|
|
|
|
attr_accessor :jekyll
|
|
|
|
|
2019-08-01 23:13:38 +00:00
|
|
|
# No permitir HTML en estos atributos
|
|
|
|
def title=(title)
|
|
|
|
super(title.strip_tags)
|
|
|
|
end
|
|
|
|
|
|
|
|
def description=(description)
|
|
|
|
super(description.strip_tags)
|
|
|
|
end
|
|
|
|
|
2019-07-16 19:47:44 +00:00
|
|
|
# El repositorio git para este sitio
|
|
|
|
def repository
|
|
|
|
@repository ||= Site::Repository.new path
|
|
|
|
end
|
|
|
|
|
|
|
|
# TODO: Mover esta consulta a la base de datos para no traer un montón
|
|
|
|
# de cosas a la memoria
|
2019-07-04 00:47:59 +00:00
|
|
|
def invitade?(usuarie)
|
|
|
|
invitades.pluck(:id).include? usuarie.id
|
|
|
|
end
|
|
|
|
|
|
|
|
def usuarie?(usuarie)
|
|
|
|
usuaries.pluck(:id).include? usuarie.id
|
2019-07-03 23:25:23 +00:00
|
|
|
end
|
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
# Este sitio acepta invitades?
|
|
|
|
def invitades?
|
|
|
|
config.fetch('invitades', false)
|
|
|
|
end
|
|
|
|
|
2019-07-03 23:25:23 +00:00
|
|
|
# Traer la ruta del sitio
|
|
|
|
def path
|
2019-07-13 00:20:36 +00:00
|
|
|
File.join(Site.site_path, name)
|
|
|
|
end
|
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
# La ruta anterior
|
|
|
|
def path_was
|
2019-07-13 00:20:36 +00:00
|
|
|
File.join(Site.site_path, name_was)
|
2019-07-03 23:25:23 +00:00
|
|
|
end
|
2018-01-29 22:19:10 +00:00
|
|
|
|
2018-09-28 14:34:37 +00:00
|
|
|
def cover
|
|
|
|
"/covers/#{name}.png"
|
|
|
|
end
|
|
|
|
|
2018-09-05 20:25:47 +00:00
|
|
|
# Define si el sitio tiene un glosario
|
|
|
|
def glossary?
|
2019-07-30 20:05:46 +00:00
|
|
|
config.fetch('glossary', false)
|
2018-09-05 20:25:47 +00:00
|
|
|
end
|
|
|
|
|
2018-05-08 21:14:00 +00:00
|
|
|
# Obtiene la lista de traducciones actuales
|
|
|
|
#
|
2019-08-06 23:17:29 +00:00
|
|
|
# Siempre tiene que tener algo porque las traducciones están
|
|
|
|
# incorporadas a los sitios de Sutty, aunque les usuaries no traduzcan
|
|
|
|
# sus sitios.
|
|
|
|
def translations
|
|
|
|
config.fetch('translations', I18n.available_locales.map(&:to_s))
|
2018-05-11 16:24:30 +00:00
|
|
|
end
|
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
# Devuelve el idioma por defecto del sitio, el primero de la lista.
|
|
|
|
def default_language
|
|
|
|
translations.first
|
2018-02-22 19:01:11 +00:00
|
|
|
end
|
2019-08-06 23:17:29 +00:00
|
|
|
alias default_lang default_language
|
2018-02-22 19:01:11 +00:00
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
# Lee el sitio y todos los artículos
|
2018-02-19 19:33:28 +00:00
|
|
|
def read
|
|
|
|
@jekyll.read
|
|
|
|
end
|
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
# Trae los datos del directorio _data dentro del sitio
|
|
|
|
#
|
|
|
|
# XXX: Leer directamente sin pasar por Jekyll
|
2018-02-09 21:28:27 +00:00
|
|
|
def data
|
2019-08-06 23:17:29 +00:00
|
|
|
read if @jekyll.data.empty?
|
2018-02-09 21:28:27 +00:00
|
|
|
|
|
|
|
@jekyll.data
|
|
|
|
end
|
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
# Traer las colecciones. Todos los artículos van a estar dentro de
|
|
|
|
# colecciones.
|
|
|
|
def collections
|
|
|
|
read if @jekyll.collections.empty?
|
2018-05-14 17:17:13 +00:00
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
@jekyll.collections
|
2018-02-22 19:01:11 +00:00
|
|
|
end
|
2018-01-29 22:19:10 +00:00
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
# Traer la configuración de forma modificable
|
|
|
|
def config
|
|
|
|
@config ||= Site::Config.new(self)
|
2018-05-08 21:57:11 +00:00
|
|
|
end
|
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
# Los posts en el idioma actual o en uno en particular
|
2018-02-22 19:01:11 +00:00
|
|
|
#
|
2019-08-06 23:17:29 +00:00
|
|
|
# @param lang: [String|Symbol] traer los artículos de este idioma
|
|
|
|
def posts(lang: nil)
|
|
|
|
@posts ||= {}
|
|
|
|
lang ||= I18n.locale
|
2019-03-26 15:32:20 +00:00
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
return @posts[lang] if @posts[lang].present?
|
2018-04-27 18:48:26 +00:00
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
@posts[lang] = PostRelation.new site: self
|
2018-02-03 22:37:09 +00:00
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
# No fallar si no existe colección para este idioma
|
|
|
|
# XXX: queremos fallar silenciosamente?
|
|
|
|
(collections[lang.to_s].try(:docs) || []).each do |doc|
|
|
|
|
layout = layouts[doc.data['layout'].to_sym]
|
2018-01-29 22:19:10 +00:00
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
@posts[lang].build(document: doc, layout: layout, lang: lang)
|
2018-02-23 19:20:51 +00:00
|
|
|
end
|
2018-01-29 22:19:10 +00:00
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
@posts[lang]
|
2018-02-03 23:41:02 +00:00
|
|
|
end
|
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
# Obtiene todas las plantillas de artículos
|
|
|
|
#
|
|
|
|
# @return { post: Layout }
|
|
|
|
def layouts
|
|
|
|
@layouts ||= data.fetch('layouts', {}).map do |name, metadata|
|
|
|
|
{ name.to_sym => Layout.new(site: self,
|
|
|
|
name: name.to_sym,
|
|
|
|
metadata: metadata) }
|
|
|
|
end.inject(:merge)
|
2018-02-08 14:05:05 +00:00
|
|
|
end
|
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
# Trae todos los valores disponibles para un campo
|
|
|
|
#
|
|
|
|
# TODO: Traer recursivamente, si el campo contiene Hash
|
|
|
|
#
|
|
|
|
# @return Array
|
2018-02-27 23:32:10 +00:00
|
|
|
def everything_of(attr, lang: nil)
|
2019-08-06 23:17:29 +00:00
|
|
|
posts(lang: lang).map do |p|
|
|
|
|
# XXX: Tener cuidado con los métodos que no existan
|
|
|
|
p.send(attr).try :value
|
2018-09-27 18:17:34 +00:00
|
|
|
end.flatten.uniq.compact
|
2018-02-03 23:41:02 +00:00
|
|
|
end
|
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
# Poner en la cola de compilación
|
2019-07-26 01:11:01 +00:00
|
|
|
def enqueue!
|
|
|
|
!enqueued? && update_attribute(:status, 'enqueued')
|
2018-02-20 17:47:11 +00:00
|
|
|
end
|
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
# Está en la cola de compilación?
|
2018-02-20 17:47:11 +00:00
|
|
|
def enqueued?
|
2019-07-26 01:11:01 +00:00
|
|
|
status == 'enqueued'
|
2018-02-20 17:47:11 +00:00
|
|
|
end
|
|
|
|
|
2018-04-27 18:48:26 +00:00
|
|
|
# Verifica si los posts están ordenados
|
2019-08-06 23:17:29 +00:00
|
|
|
def ordered?(lang: nil)
|
|
|
|
posts(lang: lang).map(&:order).all?
|
2018-04-27 18:48:26 +00:00
|
|
|
end
|
|
|
|
|
2018-04-30 18:51:39 +00:00
|
|
|
# Reordena la colección usando la posición informada
|
|
|
|
#
|
|
|
|
# new_order es un hash cuya key es la posición actual del post y el
|
|
|
|
# valor la posición nueva
|
2019-08-06 23:17:29 +00:00
|
|
|
#
|
|
|
|
# TODO: Refactorizar y testear
|
2019-07-03 22:04:50 +00:00
|
|
|
def reorder_collection(collection, new_order)
|
2018-05-02 17:23:45 +00:00
|
|
|
# Tenemos que pasar el mismo orden
|
2018-04-30 18:51:39 +00:00
|
|
|
return if new_order.values.map(&:to_i).sort != new_order.keys.map(&:to_i).sort
|
|
|
|
|
2018-05-02 17:23:45 +00:00
|
|
|
# Solo traer los posts que vamos a modificar
|
|
|
|
posts_to_order = posts_for(collection).values_at(*new_order.keys.map(&:to_i))
|
|
|
|
|
2018-04-30 18:51:39 +00:00
|
|
|
# Recorre todos los posts y asigna el nuevo orden
|
|
|
|
posts_to_order.each_with_index do |p, i|
|
2018-05-02 17:23:45 +00:00
|
|
|
# Usar el index si el artículo no estaba ordenado, para tener una
|
|
|
|
# ruta de adopción
|
|
|
|
oo = (p.order || i).to_s
|
|
|
|
no = new_order[oo].to_i
|
|
|
|
# No modificar nada si no hace falta
|
|
|
|
next if p.order == no
|
|
|
|
|
|
|
|
p.update_attributes order: no
|
2018-04-27 18:48:26 +00:00
|
|
|
p.save
|
|
|
|
end
|
|
|
|
|
2018-05-02 17:23:45 +00:00
|
|
|
posts_to_order.map(&:ordered?).all?
|
2018-04-27 18:48:26 +00:00
|
|
|
end
|
2018-04-30 18:51:39 +00:00
|
|
|
|
|
|
|
# Reordena la colección usando la posición actual de los artículos
|
|
|
|
def reorder_collection!(collection = 'posts')
|
2019-03-26 15:32:20 +00:00
|
|
|
order = Hash[posts_for(collection).count.times.map { |i| [i.to_s, i.to_s] }]
|
2018-04-30 18:51:39 +00:00
|
|
|
reorder_collection collection, order
|
|
|
|
end
|
2019-03-26 15:32:20 +00:00
|
|
|
alias reorder_posts! reorder_collection!
|
2018-04-27 18:48:26 +00:00
|
|
|
|
2018-07-02 22:07:06 +00:00
|
|
|
# Obtener una ruta disponible para Sutty
|
2019-08-06 23:17:29 +00:00
|
|
|
#
|
|
|
|
# TODO: Refactorizar y testear
|
2018-07-02 22:07:06 +00:00
|
|
|
def get_url_for_sutty(path)
|
|
|
|
# Remover los puntos para que no nos envíen a ../../
|
|
|
|
File.join('/', 'sites', id, path.gsub('..', ''))
|
|
|
|
end
|
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
# Cargar el sitio Jekyll
|
|
|
|
#
|
2019-07-30 20:05:46 +00:00
|
|
|
# TODO: En lugar de leer todo junto de una vez, extraer la carga de
|
|
|
|
# documentos de Jekyll hacia Sutty para que podamos leer los datos que
|
|
|
|
# necesitamos.
|
2019-08-06 23:17:29 +00:00
|
|
|
def load_jekyll
|
|
|
|
return unless name.present? && File.directory?(path)
|
|
|
|
|
|
|
|
Dir.chdir(path) do
|
|
|
|
@jekyll = Jekyll::Site.new(jekyll_config)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def jekyll_config
|
2018-05-08 20:51:14 +00:00
|
|
|
# Pasamos destination porque configuration() toma el directorio
|
2019-08-06 23:17:29 +00:00
|
|
|
# actual
|
2018-05-08 20:51:14 +00:00
|
|
|
#
|
|
|
|
# Especificamos `safe` para no cargar los _plugins, que interfieren
|
2019-08-06 23:17:29 +00:00
|
|
|
# entre sitios incluso.
|
|
|
|
#
|
|
|
|
# excerpt_separator está vacío para no incorporar el Excerpt en los
|
|
|
|
# metadatos de Document
|
|
|
|
configuration =
|
|
|
|
::Jekyll.configuration('source' => path,
|
|
|
|
'destination' => File.join(path, '_site'),
|
|
|
|
'safe' => true, 'watch' => false,
|
|
|
|
'quiet' => true, 'excerpt_separator' => '')
|
2018-02-19 19:33:28 +00:00
|
|
|
|
|
|
|
# No necesitamos cargar plugins en este momento
|
2018-07-09 15:11:13 +00:00
|
|
|
%w[plugins gems theme].each do |unneeded|
|
2019-08-06 23:17:29 +00:00
|
|
|
configuration[unneeded] = [] if configuration.key? unneeded
|
2018-02-19 19:33:28 +00:00
|
|
|
end
|
|
|
|
|
2018-02-22 19:01:11 +00:00
|
|
|
# Si estamos usando nuestro propio plugin de i18n, los posts están
|
|
|
|
# en "colecciones"
|
2019-08-06 23:17:29 +00:00
|
|
|
translations.each do |i|
|
|
|
|
configuration['collections'][i] = {}
|
2018-02-22 19:01:11 +00:00
|
|
|
end
|
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
configuration
|
2018-02-19 19:33:28 +00:00
|
|
|
end
|
2019-07-04 00:47:59 +00:00
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
# Devuelve el dominio actual
|
2019-07-25 18:51:32 +00:00
|
|
|
def self.domain
|
|
|
|
ENV.fetch('SUTTY', 'sutty.nl')
|
|
|
|
end
|
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
# El directorio donde se almacenan los sitios
|
|
|
|
def self.site_path
|
|
|
|
File.join(Rails.root, '_sites')
|
|
|
|
end
|
|
|
|
|
2019-07-04 00:47:59 +00:00
|
|
|
private
|
|
|
|
|
2019-07-12 18:22:37 +00:00
|
|
|
# Clona el esqueleto de Sutty para crear el sitio nuevo, no pasa nada
|
|
|
|
# si el sitio ya existe
|
|
|
|
def clone_skel!
|
|
|
|
return if File.directory? path
|
|
|
|
|
|
|
|
Rugged::Repository.clone_at ENV['SKEL_SUTTY'], path
|
|
|
|
end
|
|
|
|
|
2019-07-12 19:11:07 +00:00
|
|
|
# Elimina el directorio del sitio
|
2019-07-12 18:34:16 +00:00
|
|
|
def remove_directories!
|
|
|
|
FileUtils.rm_rf path
|
|
|
|
end
|
2019-07-13 00:20:36 +00:00
|
|
|
|
|
|
|
def update_name!
|
|
|
|
return unless name_changed?
|
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
FileUtils.mv path_was, path
|
2019-07-13 00:20:36 +00:00
|
|
|
end
|
2019-07-25 18:51:32 +00:00
|
|
|
|
2019-07-31 20:55:34 +00:00
|
|
|
# Sincroniza algunos atributos del sitio con su configuración y
|
|
|
|
# guarda los cambios
|
2019-08-06 23:17:29 +00:00
|
|
|
#
|
|
|
|
# TODO: Guardar la configuración también, quizás aprovechando algún
|
|
|
|
# método de ActiveRecord para que lance un salvado recursivo.
|
2019-07-31 20:55:34 +00:00
|
|
|
def sync_attributes_with_config!
|
|
|
|
config.theme = design.gem unless design_id_changed?
|
|
|
|
config.description = description unless description_changed?
|
|
|
|
config.title = title unless title_changed?
|
|
|
|
end
|
|
|
|
|
2019-07-25 18:51:32 +00:00
|
|
|
# Valida si el sitio tiene al menos una forma de alojamiento asociada
|
|
|
|
# y es la local
|
|
|
|
#
|
|
|
|
# TODO: Volver opcional el alojamiento local, pero ahora mismo está
|
|
|
|
# atado a la generación del sitio así que no puede faltar
|
|
|
|
def deploy_local_presence
|
|
|
|
# Usamos size porque queremos saber la cantidad de deploys sin
|
|
|
|
# guardar también
|
|
|
|
return if deploys.size.positive? && deploys.map(&:type).include?('DeployLocal')
|
|
|
|
|
|
|
|
errors.add(:deploys, I18n.t('activerecord.errors.models.site.attributes.deploys.deploy_local_presence'))
|
|
|
|
end
|
2018-01-29 22:19:10 +00:00
|
|
|
end
|