2018-09-29 18:34:47 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-05-14 08:33:31 -04:00
|
|
|
module API
|
2020-10-14 20:08:42 -04:00
|
|
|
class Notes < ::API::Base
|
2016-12-04 12:11:19 -05:00
|
|
|
include PaginationParams
|
2018-02-28 02:48:23 -05:00
|
|
|
helpers ::API::Helpers::NotesHelpers
|
2021-02-09 16:09:19 -05:00
|
|
|
helpers Helpers::RateLimiter
|
2016-12-04 12:11:19 -05:00
|
|
|
|
2012-11-27 14:43:39 -05:00
|
|
|
before { authenticate! }
|
|
|
|
|
2020-10-29 14:09:11 -04:00
|
|
|
Helpers::NotesHelpers.feature_category_per_noteable_type.each do |noteable_type, feature_category|
|
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
|
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.'
|
2020-01-03 04:07:33 -05:00
|
|
|
optional :activity_filter, type: String, values: UserPreference::NOTES_FILTERS.stringify_keys.keys, default: 'all_notes',
|
|
|
|
desc: 'The type of notables which are returned.'
|
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
|
2020-10-29 14:09:11 -04:00
|
|
|
get ":id/#{noteables_str}/:noteable_id/notes", feature_category: feature_category do
|
2020-01-24 16:09:09 -05:00
|
|
|
noteable = find_noteable(noteable_type, 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.
|
2020-01-03 04:07:33 -05:00
|
|
|
notes_filter = UserPreference::NOTES_FILTERS[params[:activity_filter].to_sym]
|
|
|
|
raw_notes = noteable.notes.with_metadata.with_notes_filter(notes_filter).reorder(order_options_with_tie_breaker)
|
2019-08-22 03:19:44 -04:00
|
|
|
|
|
|
|
# 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.
|
|
|
|
notes = paginate(raw_notes)
|
|
|
|
notes = prepare_notes_for_rendering(notes)
|
2020-02-23 22:09:05 -05:00
|
|
|
notes = notes.select { |note| note.readable_by?(current_user) }
|
2018-05-01 08:39:44 -04:00
|
|
|
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
|
2020-10-29 14:09:11 -04:00
|
|
|
get ":id/#{noteables_str}/:noteable_id/notes/:note_id", feature_category: feature_category do
|
2020-01-24 16:09:09 -05:00
|
|
|
noteable = find_noteable(noteable_type, params[:noteable_id])
|
2018-02-28 02:48:23 -05:00
|
|
|
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'
|
2020-07-15 11:09:21 -04:00
|
|
|
optional :confidential, type: Boolean, desc: 'Confidentiality note flag, default is false'
|
2016-11-09 09:26:27 -05:00
|
|
|
optional :created_at, type: String, desc: 'The creation date of the note'
|
|
|
|
end
|
2020-10-29 14:09:11 -04:00
|
|
|
post ":id/#{noteables_str}/:noteable_id/notes", feature_category: feature_category do
|
2021-02-11 07:08:52 -05:00
|
|
|
allowlist =
|
|
|
|
Gitlab::CurrentSettings.current_application_settings.notes_create_limit_allowlist
|
|
|
|
check_rate_limit! :notes_create, [current_user], allowlist
|
2020-01-24 16:09:09 -05:00
|
|
|
noteable = find_noteable(noteable_type, 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,
|
2020-07-15 11:09:21 -04:00
|
|
|
confidential: params[:confidential],
|
2018-02-28 02:48:23 -05:00
|
|
|
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
|
|
|
|
2020-03-23 08:09:47 -04:00
|
|
|
if note.errors.keys == [:commands_only]
|
|
|
|
status 202
|
|
|
|
present note, with: Entities::NoteCommands
|
|
|
|
elsif note.valid?
|
2019-10-15 23:06:12 -04:00
|
|
|
present note, with: Entities.const_get(note.class.name, false)
|
2014-06-10 10:56:35 -04:00
|
|
|
else
|
2020-03-23 08:09:47 -04:00
|
|
|
note.errors.delete(:commands_only) if note.errors.has_key?(:commands)
|
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'
|
2020-07-29 17:09:52 -04:00
|
|
|
optional :body, type: String, allow_blank: false, desc: 'The content of a note'
|
|
|
|
optional :confidential, type: Boolean, desc: 'Confidentiality note flag'
|
2016-11-09 09:26:27 -05:00
|
|
|
end
|
2020-10-29 14:09:11 -04:00
|
|
|
put ":id/#{noteables_str}/:noteable_id/notes/:note_id", feature_category: feature_category do
|
2020-01-24 16:09:09 -05:00
|
|
|
noteable = find_noteable(noteable_type, 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
|
2020-01-24 16:09:09 -05:00
|
|
|
noteable = find_noteable(noteable_type, 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
|