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.
118 lines
3.4 KiB
118 lines
3.4 KiB
#-- 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 Versions
|
|
class BaseContract < ::ModelContract
|
|
include AssignableValuesContract
|
|
|
|
def self.model
|
|
Version
|
|
end
|
|
|
|
delegate :available_custom_fields,
|
|
:new_record?,
|
|
to: :model
|
|
|
|
validate :user_allowed_to_manage
|
|
validate :validate_project_is_set
|
|
validate :validate_sharing_included
|
|
|
|
attribute :name
|
|
attribute :description
|
|
attribute :start_date
|
|
attribute :effective_date
|
|
attribute :status
|
|
attribute :sharing
|
|
attribute :wiki_page_title do
|
|
validate_page_title_in_wiki
|
|
end
|
|
|
|
def assignable_statuses
|
|
Version::VERSION_STATUSES
|
|
end
|
|
|
|
# Returns the sharings that +user+ can set the version to
|
|
def assignable_sharings
|
|
Version::VERSION_SHARINGS.select do |s|
|
|
if model.sharing_was == s
|
|
true
|
|
else
|
|
case s
|
|
when 'system'
|
|
# Only admin users can set a systemwide sharing
|
|
user.admin?
|
|
when 'hierarchy', 'tree'
|
|
# Only users allowed to manage versions of the root project can
|
|
# set sharing to hierarchy or tree
|
|
model.project.nil? || user.allowed_to?(:manage_versions, model.project.root)
|
|
else
|
|
true
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
def assignable_wiki_pages
|
|
wiki = model.project.wiki
|
|
|
|
if wiki
|
|
wiki.pages
|
|
else
|
|
WikiPage.where('1=0')
|
|
end
|
|
end
|
|
|
|
def assignable_custom_field_values(custom_field)
|
|
custom_field.possible_values
|
|
end
|
|
|
|
private
|
|
|
|
def validate_sharing_included
|
|
if model.sharing_changed? && !assignable_sharings.include?(model.sharing)
|
|
errors.add :sharing, :inclusion
|
|
end
|
|
end
|
|
|
|
def user_allowed_to_manage
|
|
if model.project && !user.allowed_to?(:manage_versions, model.project)
|
|
errors.add :base, :error_unauthorized
|
|
end
|
|
end
|
|
|
|
def validate_project_is_set
|
|
errors.add :project_id, :blank if model.project.nil?
|
|
end
|
|
|
|
def validate_page_title_in_wiki
|
|
return unless model.wiki_page_title.present? && model.project&.wiki
|
|
|
|
errors.add :wiki_page_title, :inclusion unless model.project.wiki.find_page(model.wiki_page_title)
|
|
end
|
|
end
|
|
end
|
|
|