debian-mirror-gitlab/app/graphql/mutations/todos/mark_all_done.rb
2022-07-16 19:58:13 +02:00

57 lines
1.6 KiB
Ruby

# frozen_string_literal: true
module Mutations
module Todos
class MarkAllDone < ::Mutations::Todos::Base
graphql_name 'TodosMarkAllDone'
authorize :update_user
TodoableID = Types::GlobalIDType[Todoable]
argument :target_id,
TodoableID,
required: false,
description: "Global ID of the to-do item's parent. Issues, merge requests, designs, and epics are supported. " \
"If argument is omitted, all pending to-do items of the current user are marked as done."
field :todos, [::Types::TodoType],
null: false,
description: 'Updated to-do items.'
def resolve(**args)
authorize!(current_user)
updated_ids = mark_all_todos_done(**args)
{
todos: Todo.id_in(updated_ids),
errors: []
}
end
private
def mark_all_todos_done(**args)
return [] unless current_user
finder_params = { state: :pending }
if args[:target_id].present?
target = Gitlab::Graphql::Lazy.force(
GitlabSchema.find_by_gid(args[:target_id])
)
raise Gitlab::Graphql::Errors::ResourceNotAvailable, "Resource not available: #{args[:target_id]}" if target.nil?
finder_params[:type] = target.class.name
finder_params[:target_id] = target.id
end
todos = TodosFinder.new(current_user, finder_params).execute
TodoService.new.resolve_todos(todos, current_user, resolved_by_action: :api_all_done)
end
end
end
end