Files
openproject/modules/documents/app/controllers/documents_controller.rb
T
Jan Sandbrink 4bf16e5215 Freeze string literals in two more modules
Diff was achieved by running

    rubocop -A --only Style/FrozenStringLiteralComment,Layout/EmptyLineAfterMagicComment,Style/RedundantFreeze

for the module folders of the affected modules.
This change is part of the effort to slowly roll out frozen
string literals across the entire application.
2025-06-30 09:51:24 +02:00

109 lines
3.4 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 DocumentsController < ApplicationController
include AttachableServiceCall
default_search_scope :documents
model_object Document
before_action :find_project_by_project_id, only: %i[index new create]
before_action :find_model_object, except: %i[index new create]
before_action :find_project_from_association, except: %i[index new create]
before_action :authorize
def index
@group_by = %w(category date title author).include?(params[:group_by]) ? params[:group_by] : "category"
documents = @project.documents
@grouped =
case @group_by
when "date"
documents.group_by { |d| d.updated_at.to_date }
when "title"
documents.group_by { |d| d.title.first.upcase }
when "author"
documents.with_attachments.group_by { |d| d.attachments.last.author }
else
documents.includes(:category).group_by(&:category)
end
render layout: false if request.xhr?
end
def show
@attachments = @document.attachments.order(Arel.sql("created_at DESC"))
end
def new
@document = @project.documents.build
@document.attributes = document_params
end
def create
call = attachable_create_call ::Documents::CreateService,
args: document_params.merge(project: @project)
if call.success?
flash[:notice] = I18n.t(:notice_successful_create)
redirect_to project_documents_path(@project)
else
@document = call.result
render action: :new, status: :unprocessable_entity
end
end
def edit
@categories = DocumentCategory.all
end
def update
call = attachable_update_call ::Documents::UpdateService,
model: @document,
args: document_params
if call.success?
flash[:notice] = I18n.t(:notice_successful_update)
redirect_to action: "show", id: @document
else
@document = call.result
render action: :edit, status: :unprocessable_entity
end
end
def destroy
@document.destroy
redirect_to controller: "/documents", action: "index", project_id: @project
end
private
def document_params
params.fetch(:document, {}).permit("category_id", "title", "description")
end
end