78 lines
2.2 KiB
Ruby
78 lines
2.2 KiB
Ruby
class ForumTopicsController < ApplicationController
|
|
respond_to :html, :xml, :json
|
|
before_filter :member_only, :except => [:index, :show]
|
|
before_filter :normalize_search, :only => :index
|
|
after_filter :update_last_forum_read_at, :only => [:show]
|
|
rescue_from User::PrivilegeError, :with => "static/access_denied"
|
|
|
|
def new
|
|
@forum_topic = ForumTopic.new
|
|
@forum_topic.original_post = ForumPost.new
|
|
respond_with(@forum_topic)
|
|
end
|
|
|
|
def edit
|
|
@forum_topic = ForumTopic.find(params[:id])
|
|
check_privilege(@forum_topic)
|
|
respond_with(@forum_topic)
|
|
end
|
|
|
|
def index
|
|
@search = ForumTopic.active.search(params[:search])
|
|
@forum_topics = @search.paginate(params[:page]).order("is_sticky DESC, updated_at DESC")
|
|
respond_with(@forum_topics)
|
|
end
|
|
|
|
def show
|
|
@forum_topic = ForumTopic.find(params[:id])
|
|
@forum_posts = ForumPost.search(:topic_id_eq => @forum_topic.id).order("forum_posts.id").paginate(params[:page])
|
|
respond_with(@forum_topic)
|
|
end
|
|
|
|
def create
|
|
@forum_topic = ForumTopic.create(params[:forum_topic], :as => CurrentUser.role)
|
|
respond_with(@forum_topic)
|
|
end
|
|
|
|
def update
|
|
@forum_topic = ForumTopic.find(params[:id])
|
|
check_privilege(@forum_topic)
|
|
@forum_topic.update_attributes(params[:forum_topic], :as => CurrentUser.role)
|
|
respond_with(@forum_topic)
|
|
end
|
|
|
|
def destroy
|
|
@forum_topic = ForumTopic.find(params[:id])
|
|
check_privilege(@forum_topic)
|
|
@forum_topic.destroy
|
|
respond_with(@forum_topic)
|
|
end
|
|
|
|
private
|
|
def update_last_forum_read_at
|
|
return if CurrentUser.is_anonymous?
|
|
|
|
if CurrentUser.last_forum_read_at.nil? || CurrentUser.last_forum_read_at < @forum_topic.updated_at
|
|
CurrentUser.update_column(:last_forum_read_at, @forum_topic.updated_at)
|
|
end
|
|
end
|
|
|
|
def normalize_search
|
|
if params[:title_matches]
|
|
params[:search] ||= {}
|
|
params[:search][:title_matches] = params.delete(:title_matches)
|
|
end
|
|
|
|
if params[:title]
|
|
params[:search] ||= {}
|
|
params[:search][:title_eq] = params.delete(:title)
|
|
end
|
|
end
|
|
|
|
def check_privilege(forum_topic)
|
|
if !forum_topic.editable_by?(CurrentUser.user)
|
|
raise User::PrivilegeError
|
|
end
|
|
end
|
|
end
|