gitlab-org--gitlab-foss/lib/api/todos.rb

80 lines
2.1 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-03-11 19:04:42 +00:00
module API
class Todos < Grape::API
2016-12-04 17:11:19 +00:00
include PaginationParams
2016-03-11 19:04:42 +00:00
before { authenticate! }
ISSUABLE_TYPES = {
'merge_requests' => ->(iid) { find_merge_request_with_access(iid) },
'issues' => ->(iid) { find_project_issue(iid) }
2017-02-21 23:32:18 +00:00
}.freeze
2016-10-14 07:16:55 +00:00
params do
requires :id, type: String, desc: 'The ID of a project'
end
resource :projects, requirements: API::NAMESPACE_OR_PROJECT_REQUIREMENTS do
ISSUABLE_TYPES.each do |type, finder|
type_id_str = "#{type.singularize}_iid".to_sym
2016-10-14 07:16:55 +00:00
desc 'Create a todo on an issuable' do
success Entities::Todo
end
params do
requires type_id_str, type: Integer, desc: 'The IID of an issuable'
2016-10-14 07:16:55 +00:00
end
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
2016-03-11 19:04:42 +00:00
resource :todos do
helpers do
def find_todos
TodosFinder.new(current_user, params).execute
end
end
2016-10-14 07:16:55 +00:00
desc 'Get a todo list' do
success Entities::Todo
end
2016-12-04 17:11:19 +00:00
params do
use :pagination
end
2016-03-11 19:04:42 +00:00
get do
2016-12-04 17:11:19 +00:00
present paginate(find_todos), with: Entities::Todo, current_user: current_user
2016-03-11 19:04:42 +00:00
end
2016-10-14 07:16:55 +00:00
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
post ':id/mark_as_done' do
TodoService.new.mark_todos_as_done_by_ids(params[:id], current_user)
todo = current_user.todos.find(params[:id])
2016-03-11 19:04:42 +00:00
present todo, with: Entities::Todo, current_user: current_user
2016-03-11 19:04:42 +00:00
end
2016-10-14 07:16:55 +00:00
desc 'Mark all todos as done'
post '/mark_as_done' do
2016-05-21 17:01:11 +00:00
todos = find_todos
TodoService.new.mark_todos_as_done(todos, current_user)
no_content!
2016-03-11 19:04:42 +00:00
end
end
end
end