boards_controller.rb
110 lines
| 3.2 KiB
| text/x-ruby
|
RubyLexer
|
r6077 | # Redmine - project management software | ||
|
r9453 | # Copyright (C) 2006-2012 Jean-Philippe Lang | ||
|
r526 | # | ||
# This program is free software; you can redistribute it and/or | ||||
# modify it under the terms of the GNU General Public License | ||||
# as published by the Free Software Foundation; either version 2 | ||||
# of the License, or (at your option) any later version. | ||||
|
r6679 | # | ||
|
r526 | # This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||||
# GNU General Public License for more details. | ||||
|
r6679 | # | ||
|
r526 | # You should have received a copy of the GNU General Public License | ||
# along with this program; if not, write to the Free Software | ||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||||
class BoardsController < ApplicationController | ||||
|
r2829 | default_search_scope :messages | ||
|
r7901 | before_filter :find_project_by_project_id, :find_board_if_available, :authorize | ||
|
r6077 | accept_rss_auth :index, :show | ||
|
r526 | |||
helper :sort | ||||
include SortHelper | ||||
|
r527 | helper :watchers | ||
|
r6679 | |||
|
r526 | def index | ||
|
r9961 | @boards = @project.boards.includes(:last_message => :author).all | ||
|
r526 | # show the board if there is only one | ||
if @boards.size == 1 | ||||
@board = @boards.first | ||||
show | ||||
end | ||||
end | ||||
def show | ||||
|
r2590 | respond_to do |format| | ||
format.html { | ||||
sort_init 'updated_on', 'desc' | ||||
sort_update 'created_on' => "#{Message.table_name}.created_on", | ||||
'replies' => "#{Message.table_name}.replies_count", | ||||
'updated_on' => "#{Message.table_name}.updated_on" | ||||
|
r6679 | |||
|
r2590 | @topic_count = @board.topics.count | ||
@topic_pages = Paginator.new self, @topic_count, per_page_option, params['page'] | ||||
|
r10704 | @topics = @board.topics. | ||
reorder("#{Message.table_name}.sticky DESC"). | ||||
includes(:author, {:last_reply => :author}). | ||||
limit(@topic_pages.items_per_page). | ||||
offset(@topic_pages.current.offset). | ||||
order(sort_clause). | ||||
all | ||||
|
r9225 | @message = Message.new(:board => @board) | ||
|
r2590 | render :action => 'show', :layout => !request.xhr? | ||
} | ||||
format.atom { | ||||
|
r10704 | @messages = @board.messages. | ||
reorder('created_on DESC'). | ||||
includes(:author, :board). | ||||
limit(Setting.feeds_limit.to_i). | ||||
all | ||||
|
r2590 | render_feed(@messages, :title => "#{@project}: #{@board}") | ||
} | ||||
end | ||||
|
r526 | end | ||
|
r6679 | |||
|
r526 | def new | ||
|
r9020 | @board = @project.boards.build | ||
@board.safe_attributes = params[:board] | ||||
|
r7900 | end | ||
def create | ||||
|
r9020 | @board = @project.boards.build | ||
@board.safe_attributes = params[:board] | ||||
|
r7900 | if @board.save | ||
|
r526 | flash[:notice] = l(:notice_successful_create) | ||
|
r3420 | redirect_to_settings_in_projects | ||
|
r7900 | else | ||
render :action => 'new' | ||||
|
r526 | end | ||
end | ||||
def edit | ||||
|
r7900 | end | ||
def update | ||||
|
r9020 | @board.safe_attributes = params[:board] | ||
if @board.save | ||||
|
r3420 | redirect_to_settings_in_projects | ||
|
r7900 | else | ||
render :action => 'edit' | ||||
|
r526 | end | ||
end | ||||
def destroy | ||||
@board.destroy | ||||
|
r3420 | redirect_to_settings_in_projects | ||
|
r526 | end | ||
|
r6679 | |||
|
r526 | private | ||
|
r3420 | def redirect_to_settings_in_projects | ||
redirect_to :controller => 'projects', :action => 'settings', :id => @project, :tab => 'boards' | ||||
end | ||||
|
r3421 | def find_board_if_available | ||
|
r526 | @board = @project.boards.find(params[:id]) if params[:id] | ||
rescue ActiveRecord::RecordNotFound | ||||
render_404 | ||||
end | ||||
end | ||||