2019-03-26 15:32:20 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-07-03 23:25:23 +00:00
|
|
|
# Controlador para artículos
|
2018-01-29 22:19:10 +00:00
|
|
|
class PostsController < ApplicationController
|
2018-09-28 15:47:28 +00:00
|
|
|
include Pundit
|
2020-06-08 23:25:05 +00:00
|
|
|
rescue_from Pundit::NilPolicyError, with: :page_not_found
|
|
|
|
|
2019-07-03 23:25:23 +00:00
|
|
|
before_action :authenticate_usuarie!
|
2018-01-29 22:19:10 +00:00
|
|
|
|
2021-05-09 16:08:18 +00:00
|
|
|
# TODO: Traer los comunes desde ApplicationController
|
|
|
|
breadcrumb -> { current_usuarie.email }, :edit_usuarie_registration_path
|
|
|
|
breadcrumb 'sites.index', :sites_path, match: :exact
|
|
|
|
breadcrumb -> { site.title }, -> { site_posts_path(site, locale: locale) }, match: :exact
|
|
|
|
|
2020-05-23 15:38:03 +00:00
|
|
|
# Las URLs siempre llevan el idioma actual o el de le usuarie
|
|
|
|
def default_url_options
|
2020-10-04 00:32:32 +00:00
|
|
|
{ locale: params[:locale] || current_usuarie&.lang || I18n.locale }
|
2020-05-23 15:38:03 +00:00
|
|
|
end
|
|
|
|
|
2018-01-29 22:19:10 +00:00
|
|
|
def index
|
2019-02-16 18:17:18 +00:00
|
|
|
authorize Post
|
2020-05-23 15:38:03 +00:00
|
|
|
|
2019-08-13 19:09:23 +00:00
|
|
|
@site = find_site
|
2020-05-23 15:38:03 +00:00
|
|
|
@category = params.dig(:category)
|
2020-09-25 17:07:54 +00:00
|
|
|
@layout = params.dig(:layout)
|
2020-05-23 16:52:58 +00:00
|
|
|
@locale = locale
|
2020-05-11 20:28:38 +00:00
|
|
|
|
2020-05-12 15:15:28 +00:00
|
|
|
# XXX: Cada vez que cambiamos un Post tocamos el sitio con lo que es
|
|
|
|
# más simple saber si hubo cambios.
|
|
|
|
if @category || @layout || stale?(@site)
|
2020-05-23 15:38:03 +00:00
|
|
|
@posts = @site.posts(lang: locale)
|
2020-09-25 17:07:54 +00:00
|
|
|
@posts = @posts.where(categories: @category) if @category
|
|
|
|
@posts = @posts.where(layout: @layout) if @layout
|
|
|
|
@posts = PostPolicy::Scope.new(current_usuarie, @posts).resolve
|
|
|
|
|
|
|
|
@category_name = if uuid?(@category)
|
|
|
|
@site.posts(lang: locale).find(@category, uuid: true)&.title&.value
|
|
|
|
else
|
|
|
|
@category
|
|
|
|
end
|
|
|
|
|
|
|
|
# Filtrar los posts que les invitades no pueden ver
|
|
|
|
@usuarie = @site.usuarie? current_usuarie
|
|
|
|
|
2020-05-23 15:38:03 +00:00
|
|
|
# Orden descendiente por número y luego por fecha
|
2020-05-12 15:15:28 +00:00
|
|
|
@posts.sort_by!(:order, :date).reverse!
|
|
|
|
end
|
2018-01-29 22:19:10 +00:00
|
|
|
end
|
2018-01-30 15:20:19 +00:00
|
|
|
|
|
|
|
def show
|
2021-05-09 16:08:18 +00:00
|
|
|
authorize post
|
|
|
|
breadcrumb post.title.value, ''
|
|
|
|
fresh_when post
|
2018-01-30 15:20:19 +00:00
|
|
|
end
|
2018-01-31 20:29:27 +00:00
|
|
|
|
2020-10-30 21:57:46 +00:00
|
|
|
# Genera una previsualización del artículo.
|
|
|
|
def preview
|
2021-05-09 16:08:18 +00:00
|
|
|
authorize post
|
2020-10-30 21:57:46 +00:00
|
|
|
|
2021-05-09 16:08:18 +00:00
|
|
|
render html: post.render
|
2020-10-30 21:57:46 +00:00
|
|
|
end
|
|
|
|
|
2018-02-03 22:37:09 +00:00
|
|
|
def new
|
2018-09-28 17:15:09 +00:00
|
|
|
authorize Post
|
2021-05-09 16:08:18 +00:00
|
|
|
@post = site.posts.build(lang: locale, layout: params[:layout])
|
|
|
|
|
|
|
|
breadcrumb I18n.t('loaf.breadcrumbs.posts.new', layout: @post.layout.humanized_name.downcase), ''
|
2018-02-03 22:37:09 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2018-09-28 17:15:09 +00:00
|
|
|
authorize Post
|
2021-05-09 16:08:18 +00:00
|
|
|
service = PostService.new(site: site,
|
2019-08-13 23:33:57 +00:00
|
|
|
usuarie: current_usuarie,
|
|
|
|
params: params)
|
2020-07-24 18:03:13 +00:00
|
|
|
@post = service.create
|
2018-12-14 15:12:17 +00:00
|
|
|
|
2020-07-24 18:03:13 +00:00
|
|
|
if @post.persisted?
|
2021-05-09 16:08:18 +00:00
|
|
|
site.touch
|
2020-11-20 18:01:13 +00:00
|
|
|
forget_content
|
2020-05-11 22:01:41 +00:00
|
|
|
|
2020-07-22 23:36:34 +00:00
|
|
|
redirect_to site_post_path(@site, @post)
|
2018-10-01 22:36:58 +00:00
|
|
|
else
|
2018-02-03 22:37:09 +00:00
|
|
|
render 'posts/new'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-01-31 20:29:27 +00:00
|
|
|
def edit
|
|
|
|
@site = find_site
|
2020-05-23 15:38:03 +00:00
|
|
|
@post = @site.posts(lang: locale).find params[:id]
|
2018-09-28 17:15:09 +00:00
|
|
|
|
|
|
|
authorize @post
|
2020-05-23 18:42:12 +00:00
|
|
|
|
|
|
|
@locale = locale
|
2021-05-09 16:08:18 +00:00
|
|
|
breadcrumb @post.title.value, site_post_path(@site, @post, locale: locale), match: :exact
|
2018-01-31 20:29:27 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2018-02-02 22:20:31 +00:00
|
|
|
@site = find_site
|
2020-05-23 15:38:03 +00:00
|
|
|
@post = @site.posts(lang: locale).find params[:id]
|
2018-09-28 17:15:09 +00:00
|
|
|
|
|
|
|
authorize @post
|
|
|
|
|
2019-08-16 23:12:22 +00:00
|
|
|
service = PostService.new(site: @site,
|
|
|
|
post: @post,
|
|
|
|
usuarie: current_usuarie,
|
|
|
|
params: params)
|
2018-09-28 17:35:40 +00:00
|
|
|
|
2019-08-16 23:12:22 +00:00
|
|
|
if service.update.persisted?
|
2020-05-11 22:01:41 +00:00
|
|
|
@site.touch
|
2020-11-20 18:01:13 +00:00
|
|
|
forget_content
|
2020-05-11 22:01:41 +00:00
|
|
|
|
2020-07-22 23:36:34 +00:00
|
|
|
redirect_to site_post_path(@site, @post)
|
2018-02-02 22:20:31 +00:00
|
|
|
else
|
|
|
|
render 'posts/edit'
|
|
|
|
end
|
2018-01-31 20:29:27 +00:00
|
|
|
end
|
|
|
|
|
2019-05-30 17:33:51 +00:00
|
|
|
# Eliminar artículos
|
|
|
|
def destroy
|
|
|
|
@site = find_site
|
2020-05-23 15:38:03 +00:00
|
|
|
@post = @site.posts(lang: locale).find params[:id]
|
2019-05-30 17:33:51 +00:00
|
|
|
|
|
|
|
authorize @post
|
|
|
|
|
2019-08-16 23:12:22 +00:00
|
|
|
service = PostService.new(site: @site,
|
|
|
|
post: @post,
|
|
|
|
usuarie: current_usuarie,
|
|
|
|
params: params)
|
2019-05-30 17:33:51 +00:00
|
|
|
|
2019-08-16 23:12:22 +00:00
|
|
|
# TODO: Notificar si se pudo o no
|
|
|
|
service.destroy
|
2020-05-11 22:01:41 +00:00
|
|
|
@site.touch
|
2019-08-16 23:12:22 +00:00
|
|
|
redirect_to site_posts_path(@site)
|
2019-05-30 17:33:51 +00:00
|
|
|
end
|
2019-10-18 20:35:09 +00:00
|
|
|
|
|
|
|
# Reordenar los artículos
|
|
|
|
def reorder
|
|
|
|
@site = find_site
|
|
|
|
authorize @site
|
|
|
|
|
|
|
|
service = PostService.new(site: @site,
|
|
|
|
usuarie: current_usuarie,
|
|
|
|
params: params)
|
|
|
|
|
|
|
|
service.reorder
|
2020-05-11 22:01:41 +00:00
|
|
|
@site.touch
|
2019-10-18 20:35:09 +00:00
|
|
|
redirect_to site_posts_path(@site)
|
|
|
|
end
|
2020-03-19 18:31:29 +00:00
|
|
|
|
|
|
|
# Devuelve el idioma solicitado a través de un parámetro, validando
|
2020-05-23 15:38:03 +00:00
|
|
|
# que el sitio soporte ese idioma, de lo contrario devuelve el idioma
|
|
|
|
# actual.
|
|
|
|
#
|
|
|
|
# TODO: Debería devolver un error o mostrar una página donde se
|
|
|
|
# solicite a le usuarie crear el nuevo idioma y que esto lo agregue al
|
|
|
|
# _config.yml del sitio en lugar de mezclar idiomas.
|
|
|
|
def locale
|
2021-03-03 12:43:15 +00:00
|
|
|
@site&.locales&.find(-> { I18n.locale }) do |l|
|
|
|
|
l.to_s == params[:locale]
|
2020-05-23 15:38:03 +00:00
|
|
|
end
|
2020-03-19 18:31:29 +00:00
|
|
|
end
|
2020-11-20 18:01:13 +00:00
|
|
|
|
|
|
|
# Instruye al editor a olvidarse el contenido del artículo. Usar
|
|
|
|
# cuando hayamos guardado la información correctamente.
|
|
|
|
def forget_content
|
2021-03-27 20:18:09 +00:00
|
|
|
flash[:js] = { target: 'editor', action: 'forget-content', keys: (params[:storage_keys] || []).to_json }
|
2020-11-20 18:01:13 +00:00
|
|
|
end
|
2018-01-29 22:19:10 +00:00
|
|
|
end
|