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/workers/principals/delete_job.rb

97 lines
3.0 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.
#++
class Principals::DeleteJob < ApplicationJob
queue_with_priority :below_normal
def perform(principal)
Principal.transaction do
delete_associated(principal)
replace_references(principal)
update_cost_queries(principal)
remove_members(principal)
principal.destroy
end
end
private
def replace_references(principal)
Principals::ReplaceReferencesService
.new
.call(from: principal, to: DeletedUser.first)
.tap do |call|
raise ActiveRecord::Rollback if call.failure?
end
end
def delete_associated(principal)
delete_notifications(principal)
delete_private_queries(principal)
end
def delete_notifications(principal)
::Notification.where(recipient: principal).delete_all
end
def delete_private_queries(principal)
::Query.where(user_id: principal.id, public: false).delete_all
CostQuery.where(user_id: principal.id, is_public: false).delete_all
end
def update_cost_queries(principal)
CostQuery.in_batches.each_record do |query|
serialized = query.serialized
serialized[:filters] = serialized[:filters].map do |name, options|
remove_cost_query_values(name, options, principal)
end.compact
CostQuery.where(id: query.id).update_all(serialized: serialized)
end
end
def remove_cost_query_values(name, options, principal)
options[:values].delete(principal.id.to_s) if %w[UserId AuthorId AssignedToId ResponsibleId].include?(name)
if options[:values].nil? || options[:values].any?
[name, options]
end
end
def remove_members(principal)
principal.members.each do |member|
Members::DeleteService
.new(user: User.current, contract_class: EmptyContract, model: member)
.call
end
end
end