f3fba178b9
This removes the `ForkedProjectLink` model that has been replaced by the `ForkNetworkMember` and `ForkNetwork` combination. All existing relations have been adjusted to use these new models. The `forked_project_link` table has been dropped. The "Forks" count on the admin dashboard has been updated to count all `ForkNetworkMember` rows and deduct the number of `ForkNetwork` rows. This is because now the "root-project" of a fork network also has a `ForkNetworkMember` row. This count could become inaccurate when the root of a fork network is deleted.
36 lines
990 B
Ruby
36 lines
990 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Worker to destroy projects that do not have a namespace
|
|
#
|
|
# It destroys everything it can without having the info about the namespace it
|
|
# used to belong to. Projects in this state should be rare.
|
|
# The worker will reject doing anything for projects that *do* have a
|
|
# namespace. For those use ProjectDestroyWorker instead.
|
|
class NamespacelessProjectDestroyWorker
|
|
include ApplicationWorker
|
|
include ExceptionBacktrace
|
|
|
|
def perform(project_id)
|
|
begin
|
|
project = Project.unscoped.find(project_id)
|
|
rescue ActiveRecord::RecordNotFound
|
|
return
|
|
end
|
|
|
|
return if project.namespace # Reject doing anything for projects that *do* have a namespace
|
|
|
|
project.team.truncate
|
|
|
|
unlink_fork(project) if project.forked?
|
|
|
|
project.destroy!
|
|
end
|
|
|
|
private
|
|
|
|
def unlink_fork(project)
|
|
merge_requests = project.forked_from_project.merge_requests.opened.from_project(project)
|
|
|
|
merge_requests.update_all(state: 'closed')
|
|
end
|
|
end
|