mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
110 lines
3.1 KiB
Ruby
110 lines
3.1 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.
|
|
#++
|
|
|
|
module ProjectPhases
|
|
class ActivationService < ::BaseServices::BaseContracted
|
|
alias_method :project, :model
|
|
|
|
attr_reader :definitions
|
|
|
|
def initialize(user:, project:, definitions:, contract_class: nil, contract_options: {})
|
|
super(user:, contract_class:, contract_options:)
|
|
self.model = project
|
|
@definitions = definitions
|
|
end
|
|
|
|
private
|
|
|
|
def persist(service_call)
|
|
active = params[:active]
|
|
|
|
upsert(active:)
|
|
|
|
if (phase = reschedule_from_phase)
|
|
service_call = reschedule_following_phases(phase)
|
|
end
|
|
|
|
project.touch_and_save_journals
|
|
|
|
service_call
|
|
end
|
|
|
|
def upsert(active:)
|
|
Project::Phase.upsert_all(
|
|
definitions.map do |definition|
|
|
{
|
|
project_id: project.id,
|
|
definition_id: definition.id,
|
|
active:
|
|
}
|
|
end,
|
|
unique_by: %i[project_id definition_id]
|
|
)
|
|
end
|
|
|
|
def reschedule_following_phases(phase)
|
|
from = initial_reschedule_date(phase)
|
|
|
|
RescheduleService.new(user:, project:)
|
|
.call(phases: phase.following_phases, from:)
|
|
end
|
|
|
|
def reschedule_from_phase
|
|
first_definition = definitions.min_by(&:position)
|
|
return unless first_definition
|
|
|
|
phase = project.phases.find_by(definition_id: first_definition.id)
|
|
preceding_phase = preceding_active_phase(phase)
|
|
|
|
if preceding_phase
|
|
preceding_phase
|
|
elsif phase.any_date_set?
|
|
phase
|
|
end
|
|
end
|
|
|
|
def preceding_active_phase(phase)
|
|
project.available_phases.reverse.find { it.any_date_set? && it.position < phase.position }
|
|
end
|
|
|
|
def initial_reschedule_date(phase)
|
|
if phase.date_range_set?
|
|
phase.active? ? phase.finish_date + 1 : phase.start_date
|
|
else
|
|
phase.start_date || phase.finish_date
|
|
end
|
|
end
|
|
|
|
def default_contract_class
|
|
ProjectPhases::ActivationContract
|
|
end
|
|
end
|
|
end
|