2013-05-14 08:33:31 -04:00
|
|
|
module API
|
2012-11-27 14:43:39 -05:00
|
|
|
# Notes API
|
|
|
|
class Notes < Grape::API
|
|
|
|
before { authenticate! }
|
|
|
|
|
2013-01-30 00:15:13 -05:00
|
|
|
NOTEABLE_TYPES = [Issue, MergeRequest, Snippet]
|
2012-11-27 14:43:39 -05:00
|
|
|
|
|
|
|
resource :projects do
|
|
|
|
# Get a list of project wall notes
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 12:47:04 -05:00
|
|
|
# id (required) - The ID of a project
|
2012-11-27 14:43:39 -05:00
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/notes
|
|
|
|
get ":id/notes" do
|
2013-01-04 11:50:31 -05:00
|
|
|
@notes = user_project.notes.common
|
2013-03-19 06:35:55 -04:00
|
|
|
|
|
|
|
# Get recent notes if recent = true
|
|
|
|
@notes = @notes.order('id DESC') if params[:recent]
|
|
|
|
|
2012-11-27 14:43:39 -05:00
|
|
|
present paginate(@notes), with: Entities::Note
|
|
|
|
end
|
|
|
|
|
2012-12-01 05:20:45 -05:00
|
|
|
# Get a single project wall note
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 12:47:04 -05:00
|
|
|
# id (required) - The ID of a project
|
2012-12-01 05:20:45 -05:00
|
|
|
# note_id (required) - The ID of a note
|
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/notes/:note_id
|
|
|
|
get ":id/notes/:note_id" do
|
2013-01-04 11:50:31 -05:00
|
|
|
@note = user_project.notes.common.find(params[:note_id])
|
2012-12-01 05:20:45 -05:00
|
|
|
present @note, with: Entities::Note
|
|
|
|
end
|
|
|
|
|
2012-11-29 18:52:56 -05:00
|
|
|
# Create a new project wall note
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 12:47:04 -05:00
|
|
|
# id (required) - The ID of a project
|
2012-11-29 18:52:56 -05:00
|
|
|
# body (required) - The content of a note
|
|
|
|
# Example Request:
|
|
|
|
# POST /projects/:id/notes
|
|
|
|
post ":id/notes" do
|
2013-02-27 11:50:30 -05:00
|
|
|
required_attributes! [:body]
|
2013-02-20 16:17:05 -05:00
|
|
|
|
2012-11-29 18:52:56 -05:00
|
|
|
@note = user_project.notes.new(note: params[:body])
|
|
|
|
@note.author = current_user
|
|
|
|
|
|
|
|
if @note.save
|
|
|
|
present @note, with: Entities::Note
|
|
|
|
else
|
2013-02-06 10:34:06 -05:00
|
|
|
# :note is exposed as :body, but :note is set on error
|
2013-02-13 09:48:52 -05:00
|
|
|
bad_request!(:note) if @note.errors[:note].any?
|
2012-11-29 18:52:56 -05:00
|
|
|
not_found!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-11-27 14:43:39 -05:00
|
|
|
NOTEABLE_TYPES.each do |noteable_type|
|
|
|
|
noteables_str = noteable_type.to_s.underscore.pluralize
|
|
|
|
noteable_id_str = "#{noteable_type.to_s.underscore}_id"
|
|
|
|
|
|
|
|
# Get a list of project +noteable+ notes
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 12:47:04 -05:00
|
|
|
# id (required) - The ID of a project
|
2012-11-27 14:43:39 -05:00
|
|
|
# noteable_id (required) - The ID of an issue or snippet
|
|
|
|
# Example Request:
|
2012-11-29 14:21:14 -05:00
|
|
|
# GET /projects/:id/issues/:noteable_id/notes
|
|
|
|
# GET /projects/:id/snippets/:noteable_id/notes
|
2012-11-27 14:43:39 -05:00
|
|
|
get ":id/#{noteables_str}/:#{noteable_id_str}/notes" do
|
|
|
|
@noteable = user_project.send(:"#{noteables_str}").find(params[:"#{noteable_id_str}"])
|
|
|
|
present paginate(@noteable.notes), with: Entities::Note
|
|
|
|
end
|
2012-11-29 14:33:41 -05:00
|
|
|
|
|
|
|
# Get a single +noteable+ note
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 12:47:04 -05:00
|
|
|
# id (required) - The ID of a project
|
2012-11-29 14:33:41 -05:00
|
|
|
# noteable_id (required) - The ID of an issue or snippet
|
|
|
|
# note_id (required) - The ID of a note
|
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/issues/:noteable_id/notes/:note_id
|
|
|
|
# GET /projects/:id/snippets/:noteable_id/notes/:note_id
|
|
|
|
get ":id/#{noteables_str}/:#{noteable_id_str}/notes/:note_id" do
|
|
|
|
@noteable = user_project.send(:"#{noteables_str}").find(params[:"#{noteable_id_str}"])
|
|
|
|
@note = @noteable.notes.find(params[:note_id])
|
|
|
|
present @note, with: Entities::Note
|
|
|
|
end
|
2012-11-29 15:06:24 -05:00
|
|
|
|
|
|
|
# Create a new +noteable+ note
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 12:47:04 -05:00
|
|
|
# id (required) - The ID of a project
|
2012-11-29 15:06:24 -05:00
|
|
|
# noteable_id (required) - The ID of an issue or snippet
|
|
|
|
# body (required) - The content of a note
|
|
|
|
# Example Request:
|
|
|
|
# POST /projects/:id/issues/:noteable_id/notes
|
|
|
|
# POST /projects/:id/snippets/:noteable_id/notes
|
|
|
|
post ":id/#{noteables_str}/:#{noteable_id_str}/notes" do
|
2013-02-27 12:12:02 -05:00
|
|
|
required_attributes! [:body]
|
2013-02-20 16:17:05 -05:00
|
|
|
|
2012-11-29 15:06:24 -05:00
|
|
|
@noteable = user_project.send(:"#{noteables_str}").find(params[:"#{noteable_id_str}"])
|
|
|
|
@note = @noteable.notes.new(note: params[:body])
|
|
|
|
@note.author = current_user
|
|
|
|
@note.project = user_project
|
|
|
|
|
|
|
|
if @note.save
|
|
|
|
present @note, with: Entities::Note
|
|
|
|
else
|
|
|
|
not_found!
|
|
|
|
end
|
|
|
|
end
|
2012-11-27 14:43:39 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|