2012-07-24 14:19:51 +02:00
|
|
|
module Gitlab
|
|
|
|
# Issues API
|
|
|
|
class Issues < Grape::API
|
|
|
|
before { authenticate! }
|
|
|
|
|
|
|
|
resource :issues do
|
|
|
|
# Get currently authenticated user's issues
|
|
|
|
#
|
|
|
|
# Example Request:
|
|
|
|
# GET /issues
|
|
|
|
get do
|
2012-09-03 13:46:29 +02:00
|
|
|
present paginate(current_user.issues), with: Entities::Issue
|
2012-07-24 14:19:51 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
resource :projects do
|
|
|
|
# Get a list of project issues
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-07-24 14:19:51 +02:00
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/issues
|
|
|
|
get ":id/issues" do
|
2012-09-03 13:46:29 +02:00
|
|
|
present paginate(user_project.issues), with: Entities::Issue
|
2012-07-24 14:19:51 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
# Get a single project issue
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-07-24 14:19:51 +02:00
|
|
|
# issue_id (required) - The ID of a project issue
|
|
|
|
# Example Request:
|
|
|
|
# GET /projects/:id/issues/:issue_id
|
|
|
|
get ":id/issues/:issue_id" do
|
|
|
|
@issue = user_project.issues.find(params[:issue_id])
|
2012-08-11 00:07:50 +02:00
|
|
|
present @issue, with: Entities::Issue
|
2012-07-24 14:19:51 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
# Create a new project issue
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-07-24 14:19:51 +02:00
|
|
|
# title (required) - The title of an issue
|
|
|
|
# description (optional) - The description of an issue
|
|
|
|
# assignee_id (optional) - The ID of a user to assign issue
|
|
|
|
# milestone_id (optional) - The ID of a milestone to assign issue
|
|
|
|
# labels (optional) - The labels of an issue
|
|
|
|
# Example Request:
|
|
|
|
# POST /projects/:id/issues
|
|
|
|
post ":id/issues" do
|
2013-02-27 17:50:30 +01:00
|
|
|
required_attributes! [:title]
|
2012-09-16 19:08:57 +02:00
|
|
|
attrs = attributes_for_keys [:title, :description, :assignee_id, :milestone_id]
|
2012-09-16 18:51:04 +02:00
|
|
|
attrs[:label_list] = params[:labels] if params[:labels].present?
|
|
|
|
@issue = user_project.issues.new attrs
|
2012-07-24 14:19:51 +02:00
|
|
|
@issue.author = current_user
|
|
|
|
if @issue.save
|
2012-08-11 00:07:50 +02:00
|
|
|
present @issue, with: Entities::Issue
|
2012-07-24 14:19:51 +02:00
|
|
|
else
|
2012-09-10 09:41:46 +02:00
|
|
|
not_found!
|
2012-07-24 14:19:51 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update an existing issue
|
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-07-24 14:19:51 +02:00
|
|
|
# issue_id (required) - The ID of a project issue
|
|
|
|
# title (optional) - The title of an issue
|
|
|
|
# description (optional) - The description of an issue
|
|
|
|
# assignee_id (optional) - The ID of a user to assign issue
|
|
|
|
# milestone_id (optional) - The ID of a milestone to assign issue
|
|
|
|
# labels (optional) - The labels of an issue
|
2013-02-18 10:10:58 +01:00
|
|
|
# state (optional) - The state of an issue (close|reopen)
|
2012-07-24 14:19:51 +02:00
|
|
|
# Example Request:
|
|
|
|
# PUT /projects/:id/issues/:issue_id
|
|
|
|
put ":id/issues/:issue_id" do
|
|
|
|
@issue = user_project.issues.find(params[:issue_id])
|
2012-09-10 08:06:11 +02:00
|
|
|
authorize! :modify_issue, @issue
|
|
|
|
|
2013-02-18 10:10:58 +01:00
|
|
|
attrs = attributes_for_keys [:title, :description, :assignee_id, :milestone_id, :state_event]
|
2012-09-16 18:51:04 +02:00
|
|
|
attrs[:label_list] = params[:labels] if params[:labels].present?
|
2013-01-02 19:25:25 +01:00
|
|
|
IssueObserver.current_user = current_user
|
2012-09-16 18:51:04 +02:00
|
|
|
if @issue.update_attributes attrs
|
2012-08-11 00:07:50 +02:00
|
|
|
present @issue, with: Entities::Issue
|
2012-07-24 14:19:51 +02:00
|
|
|
else
|
2012-09-10 09:41:46 +02:00
|
|
|
not_found!
|
2012-07-24 14:19:51 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-08-22 19:26:09 +02:00
|
|
|
# Delete a project issue (deprecated)
|
2012-07-24 14:19:51 +02:00
|
|
|
#
|
|
|
|
# Parameters:
|
2012-12-21 18:47:04 +01:00
|
|
|
# id (required) - The ID of a project
|
2012-07-24 14:19:51 +02:00
|
|
|
# issue_id (required) - The ID of a project issue
|
|
|
|
# Example Request:
|
|
|
|
# DELETE /projects/:id/issues/:issue_id
|
|
|
|
delete ":id/issues/:issue_id" do
|
2012-09-10 09:41:46 +02:00
|
|
|
not_allowed!
|
2012-07-24 14:19:51 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|