OpenProject is the leading open source project management software.
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.
 
 
 
 
 
 
openproject/app/contracts/time_entries/base_contract.rb

84 lines
2.3 KiB

#-- encoding: UTF-8
#-- copyright
# OpenProject is a project management system.
# Copyright (C) 2012-2017 the OpenProject Foundation (OPF)
#
# 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-2017 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 doc/COPYRIGHT.rdoc for more details.
#++
require 'model_contract'
module TimeEntries
class BaseContract < ::ModelContract
def self.model
TimeEntry
end
def validate
validate_hours_are_in_range
validate_project_is_set
validate_work_package
super
end
attribute :project_id
attribute :work_package_id
attribute :activity_id
attribute :hours
attribute :comments
attribute :spent_on
attribute :tyear
attribute :tmonth
attribute :tweek
private
def validate_work_package
return unless model.work_package || model.work_package_id_changed?
if work_package_invisible? ||
work_package_not_in_project?
errors.add :work_package_id, :invalid
end
end
def validate_hours_are_in_range
errors.add :hours, :invalid if model.hours&.negative?
end
def validate_project_is_set
errors.add :project_id, :invalid if model.project.nil?
end
def work_package_invisible?
model.work_package.nil? || !model.work_package.visible?(user)
end
def work_package_not_in_project?
model.work_package && model.project != model.work_package.project
end
end
end