gitlabhq/lib/api/issues.rb

103 lines
3.3 KiB
Ruby
Raw Normal View History

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:
# 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:
# 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])
present @issue, with: Entities::Issue
2012-07-24 14:19:51 +02:00
end
# Create a new project issue
#
# Parameters:
# 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
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
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:
# 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?
IssueObserver.current_user = current_user
2012-09-16 18:51:04 +02:00
if @issue.update_attributes attrs
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
# Delete a project issue (deprecated)
2012-07-24 14:19:51 +02:00
#
# Parameters:
# 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