ensl.org/app/controllers/forums_controller.rb

79 lines
1.8 KiB
Ruby
Raw Normal View History

class ForumsController < ApplicationController
before_action :get_forum, only: [:show, :edit, :update, :up, :down, :destroy]
layout 'forums'
def index
@categories = Category.domain(Category::DOMAIN_FORUMS).ordered
@nobody = true
end
def show
raise AccessError unless @forum.can_show? cuser
2014-04-13 11:16:51 +00:00
@topics = Topic.where(forum_id: @forum.id)
.joins(posts: :user)
2020-03-16 01:08:21 +00:00
.includes(:lock)
2014-04-13 11:16:51 +00:00
.group('topics.id')
.order('state DESC, (SELECT created_at FROM posts p2 WHERE p2.topic_id = topics.id ORDER BY created_at DESC LIMIT 1) DESC')
2014-04-13 11:16:51 +00:00
.paginate(page: params[:page], per_page: 30)
2020-03-15 18:31:00 +00:00
@forum.mark_as_read! for: cuser if cuser
@nobody = true
end
def new
@forum = Forum.new
raise AccessError unless @forum.can_create? cuser
end
def edit
raise AccessError unless @forum.can_update? cuser
end
def create
@forum = Forum.new(Forum.params(params, cuser))
raise AccessError unless @forum.can_create? cuser
if @forum.save
flash[:notice] = t(:forums_create)
redirect_to(@forum)
else
2014-03-31 21:33:16 +00:00
render :new
end
end
def update
raise AccessError unless @forum.can_update? cuser
if @forum.update_attributes(Forum.params(params, cuser))
flash[:notice] = t(:forums_update)
redirect_to(@forum)
else
2014-03-31 21:33:16 +00:00
render :edit
end
end
def up
raise AccessError unless @forum.can_update? cuser
@forum.move_up(category_id: @forum.category.id)
redirect_to_back
end
def down
raise AccessError unless @forum.can_update? cuser
@forum.move_down(category_id: @forum.category.id)
redirect_to_back
end
def destroy
raise AccessError unless @forum.can_destroy? cuser
@forum.destroy
redirect_to(forums_url)
end
private
def get_forum
@forum = Forum.find(params[:id])
end
end