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
|
2019-07-03 23:25:23 +00:00
|
|
|
before_action :authenticate_usuarie!
|
2018-01-29 22:19:10 +00:00
|
|
|
|
|
|
|
def index
|
2019-02-16 18:17:18 +00:00
|
|
|
authorize Post
|
2019-08-13 19:09:23 +00:00
|
|
|
@site = find_site
|
2018-02-19 21:16:48 +00:00
|
|
|
@category = session[:category] = params.dig(:category)
|
2019-08-13 19:09:23 +00:00
|
|
|
# TODO: Aplicar policy_scope
|
|
|
|
@posts = @site.posts(lang: I18n.locale)
|
2018-04-30 20:50:29 +00:00
|
|
|
|
|
|
|
if params[:sort_by].present?
|
2018-09-28 15:47:28 +00:00
|
|
|
begin
|
|
|
|
@posts.sort_by! do |p|
|
|
|
|
p.send(params[:sort_by].to_s)
|
|
|
|
end
|
|
|
|
rescue ArgumentError
|
2018-04-30 20:50:29 +00:00
|
|
|
end
|
|
|
|
end
|
2018-01-29 22:19:10 +00:00
|
|
|
end
|
2018-01-30 15:20:19 +00:00
|
|
|
|
|
|
|
def show
|
|
|
|
@site = find_site
|
2019-08-14 21:19:01 +00:00
|
|
|
@post = @site.posts.find params[:id]
|
2018-09-28 17:15:09 +00:00
|
|
|
authorize @post
|
2018-01-30 15:20:19 +00:00
|
|
|
end
|
2018-01-31 20:29:27 +00:00
|
|
|
|
2018-02-03 22:37:09 +00:00
|
|
|
def new
|
2018-09-28 17:15:09 +00:00
|
|
|
authorize Post
|
2018-02-03 22:37:09 +00:00
|
|
|
@site = find_site
|
2019-08-13 19:09:23 +00:00
|
|
|
# TODO: Implementar layout
|
|
|
|
@post = @site.posts.build(lang: I18n.locale)
|
2018-02-03 22:37:09 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2018-09-28 17:15:09 +00:00
|
|
|
authorize Post
|
2018-02-03 22:37:09 +00:00
|
|
|
@site = find_site
|
2019-08-13 23:33:57 +00:00
|
|
|
service = PostService.new(site: @site,
|
|
|
|
usuarie: current_usuarie,
|
|
|
|
params: params)
|
2018-12-14 15:12:17 +00:00
|
|
|
|
2019-08-13 23:33:57 +00:00
|
|
|
if service.create.persisted?
|
|
|
|
redirect_to site_posts_path(@site)
|
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
|
2019-08-14 21:19:01 +00:00
|
|
|
@post = @site.posts.find params[:id]
|
2018-09-28 17:15:09 +00:00
|
|
|
|
|
|
|
authorize @post
|
2018-01-31 20:29:27 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2018-02-02 22:20:31 +00:00
|
|
|
@site = find_site
|
2019-08-16 23:12:22 +00:00
|
|
|
@post = @site.posts.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?
|
|
|
|
redirect_to site_posts_path(@site)
|
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
|
2019-08-16 23:12:22 +00:00
|
|
|
@post = @site.posts.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
|
|
|
|
redirect_to site_posts_path(@site)
|
2019-05-30 17:33:51 +00:00
|
|
|
end
|
2018-01-29 22:19:10 +00:00
|
|
|
end
|