Files
openproject/modules/documents/app/models/document.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

74 lines
2.7 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 Document < ApplicationRecord
belongs_to :project
belongs_to :category, class_name: "DocumentCategory"
acts_as_attachable delete_permission: :manage_documents,
add_permission: :manage_documents
acts_as_journalized
acts_as_event title: Proc.new { |o| "#{Document.model_name.human}: #{o.title}" },
url: Proc.new { |o| { controller: "/documents", action: "show", id: o.id } },
author: Proc.new { |o|
o.attachments.find(:first, order: "#{Attachment.table_name}.created_at ASC").try(:author)
}
acts_as_searchable columns: ["title", "#{table_name}.description"],
include: :project,
references: :projects,
date_column: "#{table_name}.created_at"
validates_presence_of :project, :title, :category
validates_length_of :title, maximum: 60
scope :visible, ->(user = User.current) {
includes(:project)
.references(:projects)
.merge(Project.allowed_to(user, :view_documents))
}
scope :with_attachments, lambda {
includes(:attachments)
.where.not(attachments: { container_id: nil })
.references(:attachments)
}
after_initialize :set_default_category
def visible?(user = User.current)
!user.nil? && user.allowed_in_project?(:view_documents, project)
end
def set_default_category
self.category ||= DocumentCategory.default if new_record?
end
end