Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/todos/destroy/unauthorized_features_service.rb')
-rw-r--r--app/services/todos/destroy/unauthorized_features_service.rb43
1 files changed, 43 insertions, 0 deletions
diff --git a/app/services/todos/destroy/unauthorized_features_service.rb b/app/services/todos/destroy/unauthorized_features_service.rb
new file mode 100644
index 00000000000..513def10575
--- /dev/null
+++ b/app/services/todos/destroy/unauthorized_features_service.rb
@@ -0,0 +1,43 @@
+# frozen_string_literal: true
+
+module Todos
+ module Destroy
+ class UnauthorizedFeaturesService < ::Todos::Destroy::BaseService
+ attr_reader :project_id, :user_id
+
+ BATCH_SIZE = 1000
+
+ def initialize(project_id, user_id = nil)
+ @project_id = project_id
+ @user_id = user_id
+ end
+
+ # rubocop: disable CodeReuse/ActiveRecord
+ def execute
+ return if user_id && authorized_users.where(user_id: user_id).exists?
+
+ related_todos.each_batch(of: BATCH_SIZE) do |batch|
+ pending_delete = without_authorized(batch).includes(:target, :user).reject do |todo|
+ Ability.allowed?(todo.user, :read_todo, todo, scope: :user)
+ end
+ Todo.where(id: pending_delete).delete_all if pending_delete.present?
+ end
+ end
+ # rubocop: enable CodeReuse/ActiveRecord
+
+ private
+
+ def related_todos
+ base_scope = Todo.for_project(project_id)
+ base_scope = base_scope.for_user(user_id) if user_id
+ base_scope
+ end
+
+ # Compatibility for #authorized_users in this class we always work
+ # with 1 project for queries efficiency
+ def project_ids
+ [project_id]
+ end
+ end
+ end
+end