mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
137 lines
3.8 KiB
Ruby
137 lines
3.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) the OpenProject GmbH
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# 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.
|
|
#
|
|
# 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.
|
|
#
|
|
# 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.
|
|
#
|
|
# See COPYRIGHT and LICENSE files for more details.
|
|
#++
|
|
|
|
class ForumsController < ApplicationController
|
|
default_search_scope :messages
|
|
before_action :find_project_by_project_id
|
|
before_action :new_forum, only: %i[new create]
|
|
before_action :find_forum, only: %i[show edit update move destroy]
|
|
|
|
before_action :authorize
|
|
|
|
accept_key_auth :show
|
|
|
|
include SortHelper
|
|
include PaginationHelper
|
|
|
|
def index
|
|
@forums = @project.forums
|
|
end
|
|
|
|
current_menu_item [:index, :show] do
|
|
:forums
|
|
end
|
|
|
|
def show # rubocop:disable Metrics/AbcSize
|
|
sort_init "updated_at", "desc"
|
|
sort_update "created_at" => "#{Message.table_name}.created_at",
|
|
"replies" => "#{Message.table_name}.replies_count",
|
|
"updated_at" => "#{Message.table_name}.updated_at"
|
|
|
|
respond_to do |format|
|
|
format.html do
|
|
set_topics
|
|
@message = Message.new
|
|
render action: "show", layout: !request.xhr?
|
|
end
|
|
# The JSON template does not exist anymore, this never rendered
|
|
# format.json do
|
|
# set_topics
|
|
# render template: "messages/index"
|
|
# end
|
|
format.atom do
|
|
@messages = @forum
|
|
.messages
|
|
.order(["#{Message.table_name}.sticked_on ASC", sort_clause].compact.join(", "))
|
|
.includes(:author, :forum)
|
|
.limit(Setting.feeds_limit.to_i)
|
|
|
|
render_feed(@messages, title: "#{@project}: #{@forum}")
|
|
end
|
|
end
|
|
end
|
|
|
|
def set_topics
|
|
@topics = @forum
|
|
.topics
|
|
.order(["#{Message.table_name}.sticked_on ASC", sort_clause].compact.join(", "))
|
|
.includes(:author, last_reply: :author)
|
|
.page(page_param)
|
|
.per_page(per_page_param)
|
|
end
|
|
|
|
def new; end
|
|
|
|
def edit; end
|
|
|
|
def create
|
|
if @forum.save
|
|
flash[:notice] = I18n.t(:notice_successful_create)
|
|
redirect_to project_forums_path(@project)
|
|
else
|
|
render :new
|
|
end
|
|
end
|
|
|
|
def update
|
|
if @forum.update(permitted_params.forum)
|
|
flash[:notice] = I18n.t(:notice_successful_update)
|
|
redirect_to project_forums_path(@project)
|
|
else
|
|
render :edit, status: :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
def move
|
|
@forum.update!(permitted_params.forum_move)
|
|
|
|
flash[:notice] = t(:notice_successful_update)
|
|
redirect_to project_forums_path(@project)
|
|
end
|
|
|
|
def destroy
|
|
@forum.destroy!
|
|
|
|
flash[:notice] = I18n.t(:notice_successful_delete)
|
|
redirect_to project_forums_path(@project)
|
|
end
|
|
|
|
private
|
|
|
|
def find_forum
|
|
@forum = @project.forums.find(params[:id])
|
|
end
|
|
|
|
def new_forum
|
|
@forum = Forum.new(permitted_params.forum?)
|
|
@forum.project = @project
|
|
end
|
|
end
|