kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
148 lines
3.8 KiB
148 lines
3.8 KiB
#-- encoding: UTF-8
|
|
|
|
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) 2012-2021 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.
|
|
#++
|
|
|
|
module Projects
|
|
class BaseContract < ::ModelContract
|
|
include AssignableValuesContract
|
|
include AssignableCustomFieldValues
|
|
include Projects::Archiver
|
|
|
|
attribute :name
|
|
attribute :identifier
|
|
attribute :description
|
|
attribute :public
|
|
attribute :active do
|
|
validate_active_present
|
|
validate_changing_active
|
|
end
|
|
attribute :parent do
|
|
validate_parent_assignable
|
|
end
|
|
attribute :status do
|
|
validate_status_code_included
|
|
end
|
|
attribute :templated do
|
|
validate_templated_set_by_admin
|
|
end
|
|
|
|
validate :validate_user_allowed_to_manage
|
|
|
|
def assignable_parents
|
|
Project
|
|
.allowed_to(user, :add_subprojects)
|
|
.where.not(id: model.self_and_descendants)
|
|
end
|
|
|
|
def available_custom_fields
|
|
if user.admin?
|
|
model.available_custom_fields
|
|
else
|
|
model.available_custom_fields.select(&:visible?)
|
|
end
|
|
end
|
|
|
|
def assignable_versions
|
|
model.assignable_versions
|
|
end
|
|
|
|
def assignable_status_codes
|
|
Projects::Status.codes.keys
|
|
end
|
|
|
|
private
|
|
|
|
def validate_parent_assignable
|
|
if model.parent &&
|
|
model.parent_id_changed? &&
|
|
!assignable_parents.where(id: parent.id).exists?
|
|
errors.add(:parent, :does_not_exist)
|
|
end
|
|
end
|
|
|
|
def validate_active_present
|
|
if model.active.nil?
|
|
errors.add(:active, :blank)
|
|
end
|
|
end
|
|
|
|
def validate_user_allowed_to_manage
|
|
with_unchanged_id do
|
|
with_active_assumed do
|
|
errors.add :base, :error_unauthorized unless user.allowed_to?(manage_permission, model)
|
|
end
|
|
end
|
|
end
|
|
|
|
def validate_status_code_included
|
|
errors.add :status, :inclusion if model.status&.code && !Projects::Status.codes.keys.include?(model.status.code.to_s)
|
|
end
|
|
|
|
def validate_templated_set_by_admin
|
|
if model.templated_changed? && !user.admin?
|
|
errors.add :templated, :error_unauthorized
|
|
end
|
|
end
|
|
|
|
def manage_permission
|
|
raise NotImplementedError
|
|
end
|
|
|
|
def with_unchanged_id
|
|
project_id = model.id
|
|
model.id = model.id_was
|
|
|
|
yield
|
|
ensure
|
|
model.id = project_id
|
|
end
|
|
|
|
def with_active_assumed
|
|
active = model.active
|
|
model.active = true
|
|
|
|
yield
|
|
ensure
|
|
model.active = active
|
|
end
|
|
|
|
def validate_changing_active
|
|
return unless model.active_changed?
|
|
|
|
RequiresAdminGuard.validate_admin_only(user, errors)
|
|
|
|
if model.active?
|
|
# switched to active -> unarchiving
|
|
validate_all_ancestors_active
|
|
else
|
|
validate_no_foreign_wp_references
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|