2018-09-29 18:34:47 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-05-14 08:33:31 -04:00
|
|
|
module API
|
2012-11-27 14:43:39 -05:00
|
|
|
class Notes < Grape::API
|
2016-12-04 12:11:19 -05:00
|
|
|
include PaginationParams
|
2018-02-28 02:48:23 -05:00
|
|
|
helpers ::API::Helpers::NotesHelpers
|
2016-12-04 12:11:19 -05:00
|
|
|
|
2012-11-27 14:43:39 -05:00
|
|
|
before { authenticate! }
|
|
|
|
|
2019-02-21 08:34:40 -05:00
|
|
|
Helpers::NotesHelpers.noteable_types.each do |noteable_type|
|
2018-02-28 02:48:23 -05:00
|
|
|
parent_type = noteable_type.parent_class.to_s.underscore
|
|
|
|
noteables_str = noteable_type.to_s.underscore.pluralize
|
|
|
|
|
|
|
|
params do
|
|
|
|
requires :id, type: String, desc: "The ID of a #{parent_type}"
|
|
|
|
end
|
2018-11-08 07:18:17 -05:00
|
|
|
resource parent_type.pluralize.to_sym, requirements: API::NAMESPACE_OR_PROJECT_REQUIREMENTS do
|
2012-11-27 14:43:39 -05:00
|
|
|
noteables_str = noteable_type.to_s.underscore.pluralize
|
2016-11-09 09:26:27 -05:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
desc "Get a list of #{noteable_type.to_s.downcase} notes" do
|
2016-11-09 09:26:27 -05:00
|
|
|
success Entities::Note
|
|
|
|
end
|
|
|
|
params do
|
|
|
|
requires :noteable_id, type: Integer, desc: 'The ID of the noteable'
|
2017-11-29 11:22:22 -05:00
|
|
|
optional :order_by, type: String, values: %w[created_at updated_at], default: 'created_at',
|
|
|
|
desc: 'Return notes ordered by `created_at` or `updated_at` fields.'
|
|
|
|
optional :sort, type: String, values: %w[asc desc], default: 'desc',
|
|
|
|
desc: 'Return notes sorted in `asc` or `desc` order.'
|
2016-12-04 12:11:19 -05:00
|
|
|
use :pagination
|
2016-11-09 09:26:27 -05:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2016-11-09 09:26:27 -05:00
|
|
|
get ":id/#{noteables_str}/:noteable_id/notes" do
|
2018-02-28 02:48:23 -05:00
|
|
|
noteable = find_noteable(parent_type, noteables_str, params[:noteable_id])
|
2016-11-09 09:26:27 -05:00
|
|
|
|
2018-05-01 08:39:44 -04:00
|
|
|
# We exclude notes that are cross-references and that cannot be viewed
|
|
|
|
# by the current user. By doing this exclusion at this level and not
|
|
|
|
# at the DB query level (which we cannot in that case), the current
|
|
|
|
# page can have less elements than :per_page even if
|
|
|
|
# there's more than one page.
|
2019-02-16 05:03:42 -05:00
|
|
|
raw_notes = noteable.notes.with_metadata.reorder(order_options_with_tie_breaker)
|
2018-05-01 08:39:44 -04:00
|
|
|
notes =
|
|
|
|
# paginate() only works with a relation. This could lead to a
|
|
|
|
# mismatch between the pagination headers info and the actual notes
|
|
|
|
# array returned, but this is really a edge-case.
|
|
|
|
paginate(raw_notes)
|
|
|
|
.reject { |n| n.cross_reference_not_visible_for?(current_user) }
|
|
|
|
present notes, with: Entities::Note
|
2012-11-27 14:43:39 -05:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2012-11-29 14:33:41 -05:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
desc "Get a single #{noteable_type.to_s.downcase} note" do
|
2016-11-09 09:26:27 -05:00
|
|
|
success Entities::Note
|
|
|
|
end
|
|
|
|
params do
|
|
|
|
requires :note_id, type: Integer, desc: 'The ID of a note'
|
|
|
|
requires :noteable_id, type: Integer, desc: 'The ID of the noteable'
|
|
|
|
end
|
|
|
|
get ":id/#{noteables_str}/:noteable_id/notes/:note_id" do
|
2018-02-28 02:48:23 -05:00
|
|
|
noteable = find_noteable(parent_type, noteables_str, params[:noteable_id])
|
|
|
|
get_note(noteable, params[:note_id])
|
2012-11-29 14:33:41 -05:00
|
|
|
end
|
2012-11-29 15:06:24 -05:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
desc "Create a new #{noteable_type.to_s.downcase} note" do
|
2016-11-09 09:26:27 -05:00
|
|
|
success Entities::Note
|
|
|
|
end
|
|
|
|
params do
|
|
|
|
requires :noteable_id, type: Integer, desc: 'The ID of the noteable'
|
|
|
|
requires :body, type: String, desc: 'The content of a note'
|
|
|
|
optional :created_at, type: String, desc: 'The creation date of the note'
|
|
|
|
end
|
|
|
|
post ":id/#{noteables_str}/:noteable_id/notes" do
|
2018-02-28 02:48:23 -05:00
|
|
|
noteable = find_noteable(parent_type, noteables_str, params[:noteable_id])
|
2017-03-27 09:01:45 -04:00
|
|
|
|
2014-06-18 02:26:04 -04:00
|
|
|
opts = {
|
2017-01-19 16:00:47 -05:00
|
|
|
note: params[:body],
|
|
|
|
noteable_type: noteables_str.classify,
|
2018-02-28 02:48:23 -05:00
|
|
|
noteable_id: noteable.id,
|
|
|
|
created_at: params[:created_at]
|
2014-06-18 02:26:04 -04:00
|
|
|
}
|
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
note = create_note(noteable, opts)
|
2017-09-01 08:03:57 -04:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
if note.valid?
|
|
|
|
present note, with: Entities.const_get(note.class.name)
|
2014-06-10 10:56:35 -04:00
|
|
|
else
|
2018-02-28 02:48:23 -05:00
|
|
|
bad_request!("Note #{note.errors.messages}")
|
2012-11-29 15:06:24 -05:00
|
|
|
end
|
|
|
|
end
|
2014-09-02 11:12:13 -04:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
desc "Update an existing #{noteable_type.to_s.downcase} note" do
|
2016-11-09 09:26:27 -05:00
|
|
|
success Entities::Note
|
|
|
|
end
|
|
|
|
params do
|
|
|
|
requires :noteable_id, type: Integer, desc: 'The ID of the noteable'
|
|
|
|
requires :note_id, type: Integer, desc: 'The ID of a note'
|
|
|
|
requires :body, type: String, desc: 'The content of a note'
|
|
|
|
end
|
|
|
|
put ":id/#{noteables_str}/:noteable_id/notes/:note_id" do
|
2018-02-28 02:48:23 -05:00
|
|
|
noteable = find_noteable(parent_type, noteables_str, params[:noteable_id])
|
2015-07-30 08:45:54 -04:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
update_note(noteable, params[:note_id])
|
2014-09-02 11:12:13 -04:00
|
|
|
end
|
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
desc "Delete a #{noteable_type.to_s.downcase} note" do
|
2016-11-09 09:26:27 -05:00
|
|
|
success Entities::Note
|
|
|
|
end
|
|
|
|
params do
|
|
|
|
requires :noteable_id, type: Integer, desc: 'The ID of the noteable'
|
|
|
|
requires :note_id, type: Integer, desc: 'The ID of a note'
|
|
|
|
end
|
|
|
|
delete ":id/#{noteables_str}/:noteable_id/notes/:note_id" do
|
2018-02-28 02:48:23 -05:00
|
|
|
noteable = find_noteable(parent_type, noteables_str, params[:noteable_id])
|
2016-04-12 09:43:29 -04:00
|
|
|
|
2018-02-28 02:48:23 -05:00
|
|
|
delete_note(noteable, params[:note_id])
|
2016-04-05 19:21:02 -04:00
|
|
|
end
|
2012-11-27 14:43:39 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|