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/services/work_packages/create_service.rb

115 lines
3.3 KiB

#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) 2012-2022 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 WorkPackages::CreateService < ::BaseServices::BaseCallable
include ::WorkPackages::Shared::UpdateAncestors
include ::Shared::ServiceContext
attr_accessor :user,
:contract_class
def initialize(user:, contract_class: WorkPackages::CreateContract)
self.user = user
self.contract_class = contract_class
end
def perform(work_package: WorkPackage.new,
send_notifications: true,
**attributes)
in_user_context(send_notifications) do
create(attributes, work_package)
end
end
protected
def create(attributes, work_package)
result = set_attributes(attributes, work_package)
result.success = if result.success
replace_attachments(work_package)
else
false
end
if result.success?
result.merge!(reschedule_related(work_package))
update_ancestors_all_attributes(result.all_results).each do |ancestor_result|
result.merge!(ancestor_result)
end
set_user_as_watcher(work_package)
else
result.success = false
end
result
end
def set_attributes(attributes, wp)
attributes_service_class
.new(user:,
model: wp,
contract_class:)
.call(attributes)
end
def replace_attachments(work_package)
work_package.attachments = work_package.attachments_replacements if work_package.attachments_replacements
work_package.save
end
def reschedule_related(work_package)
result = WorkPackages::SetScheduleService
.new(user:,
work_package:)
.call
result.self_and_dependent.each do |r|
unless r.result.save
result.success = false
r.errors = r.result.errors
end
end
result
end
def set_user_as_watcher(work_package)
# We don't care if it fails here. If it does
# the user simply does not become watcher
Services::CreateWatcher
.new(work_package, user)
.run(send_notifications: false)
end
def attributes_service_class
::WorkPackages::SetAttributesService
end
end