debian-mirror-gitlab/lib/api/todos.rb

112 lines
3.1 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2016-08-24 12:49:21 +05:30
module API
2020-07-28 23:09:34 +05:30
class Todos < Grape::API::Instance
2017-08-17 22:00:37 +05:30
include PaginationParams
2016-08-24 12:49:21 +05:30
before { authenticate! }
ISSUABLE_TYPES = {
2017-08-17 22:00:37 +05:30
'merge_requests' => ->(iid) { find_merge_request_with_access(iid) },
'issues' => ->(iid) { find_project_issue(iid) }
}.freeze
2016-08-24 12:49:21 +05:30
2016-11-03 12:29:30 +05:30
params do
requires :id, type: String, desc: 'The ID of a project'
end
2019-03-02 22:35:43 +05:30
resource :projects, requirements: API::NAMESPACE_OR_PROJECT_REQUIREMENTS do
2016-08-24 12:49:21 +05:30
ISSUABLE_TYPES.each do |type, finder|
2017-08-17 22:00:37 +05:30
type_id_str = "#{type.singularize}_iid".to_sym
2016-08-24 12:49:21 +05:30
2016-11-03 12:29:30 +05:30
desc 'Create a todo on an issuable' do
success Entities::Todo
end
params do
2017-08-17 22:00:37 +05:30
requires type_id_str, type: Integer, desc: 'The IID of an issuable'
2016-11-03 12:29:30 +05:30
end
2016-08-24 12:49:21 +05:30
post ":id/#{type}/:#{type_id_str}/todo" do
issuable = instance_exec(params[type_id_str], &finder)
todo = TodoService.new.mark_todo(issuable, current_user).first
if todo
present todo, with: Entities::Todo, current_user: current_user
else
not_modified!
end
end
end
end
resource :todos do
helpers do
2020-04-08 14:13:33 +05:30
def find_todos
TodosFinder.new(current_user, params).execute
end
2019-07-07 11:18:12 +05:30
def issuable_and_awardable?(type)
2019-12-21 20:55:43 +05:30
obj_type = Object.const_get(type, false)
2019-07-07 11:18:12 +05:30
(obj_type < Issuable) && (obj_type < Awardable)
rescue NameError
false
end
def batch_load_issuable_metadata(todos, options)
# This should be paginated and will cause Rails to SELECT for all the Todos
todos_by_type = todos.group_by(&:target_type)
todos_by_type.keys.each do |type|
next unless issuable_and_awardable?(type)
collection = todos_by_type[type]
next unless collection
targets = collection.map(&:target)
2020-06-23 00:09:42 +05:30
options[type] = { issuable_metadata: Gitlab::IssuableMetadata.new(current_user, targets).data }
2019-07-07 11:18:12 +05:30
end
end
2016-08-24 12:49:21 +05:30
end
2016-11-03 12:29:30 +05:30
desc 'Get a todo list' do
success Entities::Todo
end
2017-08-17 22:00:37 +05:30
params do
use :pagination
end
2016-08-24 12:49:21 +05:30
get do
2019-09-30 21:07:59 +05:30
todos = paginate(find_todos.with_entity_associations)
2019-07-07 11:18:12 +05:30
options = { with: Entities::Todo, current_user: current_user }
batch_load_issuable_metadata(todos, options)
present todos, options
2016-08-24 12:49:21 +05:30
end
2016-11-03 12:29:30 +05:30
desc 'Mark a todo as done' do
success Entities::Todo
end
params do
requires :id, type: Integer, desc: 'The ID of the todo being marked as done'
end
2017-08-17 22:00:37 +05:30
post ':id/mark_as_done' do
2018-03-17 18:26:18 +05:30
todo = current_user.todos.find(params[:id])
2016-08-24 12:49:21 +05:30
2020-06-23 00:09:42 +05:30
TodoService.new.resolve_todo(todo, current_user, resolved_by_action: :api_done)
2017-09-10 17:25:29 +05:30
present todo, with: Entities::Todo, current_user: current_user
2016-08-24 12:49:21 +05:30
end
2016-11-03 12:29:30 +05:30
desc 'Mark all todos as done'
2017-08-17 22:00:37 +05:30
post '/mark_as_done' do
2016-08-24 12:49:21 +05:30
todos = find_todos
2020-06-23 00:09:42 +05:30
TodoService.new.resolve_todos(todos, current_user, resolved_by_action: :api_all_done)
2017-08-17 22:00:37 +05:30
no_content!
2016-08-24 12:49:21 +05:30
end
end
end
end
2019-10-12 21:52:04 +05:30
API::Todos.prepend_if_ee('EE::API::Todos')