20c2e90222
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
145 lines
4.8 KiB
Ruby
145 lines
4.8 KiB
Ruby
module API
|
|
# Issues API
|
|
class Issues < Grape::API
|
|
before { authenticate! }
|
|
|
|
helpers do
|
|
def filter_issues_state(issues, state = nil)
|
|
case state
|
|
when 'opened' then issues.opened
|
|
when 'closed' then issues.closed
|
|
else issues
|
|
end
|
|
end
|
|
end
|
|
|
|
resource :issues do
|
|
# Get currently authenticated user's issues
|
|
#
|
|
# Parameters:
|
|
# state (optional) - Return "opened" or "closed" issues
|
|
#
|
|
# Example Requests:
|
|
# GET /issues
|
|
# GET /issues?state=opened
|
|
# GET /issues?state=closed
|
|
get do
|
|
present paginate(filter_issues_state(current_user.issues, params['state'])), with: Entities::Issue
|
|
end
|
|
end
|
|
|
|
resource :projects do
|
|
# Get a list of project issues
|
|
#
|
|
# Parameters:
|
|
# id (required) - The ID of a project
|
|
# state (optional) - Return "opened" or "closed" issues
|
|
#
|
|
# Example Requests:
|
|
# GET /projects/:id/issues
|
|
# GET /projects/:id/issues?state=opened
|
|
# GET /projects/:id/issues?state=closed
|
|
get ":id/issues" do
|
|
present paginate(filter_issues_state(user_project.issues, params['state'])), with: Entities::Issue
|
|
end
|
|
|
|
# Get a single project issue
|
|
#
|
|
# Parameters:
|
|
# id (required) - The ID of a project
|
|
# 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
|
|
end
|
|
|
|
# Create a new project issue
|
|
#
|
|
# Parameters:
|
|
# id (required) - The ID of a project
|
|
# 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]
|
|
attrs = attributes_for_keys [:title, :description, :assignee_id, :milestone_id]
|
|
|
|
# Validate label names in advance
|
|
if (errors = validate_label_params(params)).any?
|
|
render_api_error!({ labels: errors }, 400)
|
|
end
|
|
|
|
issue = ::Issues::CreateService.new(user_project, current_user, attrs).execute
|
|
|
|
if issue.valid?
|
|
# Find or create labels and attach to issue. Labels are valid because
|
|
# we already checked its name, so there can't be an error here
|
|
if params[:labels].present?
|
|
issue.add_labels_by_names(params[:labels].split(','))
|
|
end
|
|
|
|
present issue, with: Entities::Issue
|
|
else
|
|
not_found!
|
|
end
|
|
end
|
|
|
|
# Update an existing issue
|
|
#
|
|
# Parameters:
|
|
# id (required) - The ID of a project
|
|
# 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
|
|
# state_event (optional) - The state event of an issue (close|reopen)
|
|
# Example Request:
|
|
# PUT /projects/:id/issues/:issue_id
|
|
put ":id/issues/:issue_id" do
|
|
issue = user_project.issues.find(params[:issue_id])
|
|
authorize! :modify_issue, issue
|
|
attrs = attributes_for_keys [:title, :description, :assignee_id, :milestone_id, :state_event]
|
|
|
|
# Validate label names in advance
|
|
if (errors = validate_label_params(params)).any?
|
|
render_api_error!({ labels: errors }, 400)
|
|
end
|
|
|
|
issue = ::Issues::UpdateService.new(user_project, current_user, attrs).execute(issue)
|
|
|
|
if issue.valid?
|
|
# Find or create labels and attach to issue. Labels are valid because
|
|
# we already checked its name, so there can't be an error here
|
|
unless params[:labels].nil?
|
|
issue.remove_labels
|
|
# Create and add labels to the new created issue
|
|
issue.add_labels_by_names(params[:labels].split(','))
|
|
end
|
|
|
|
present issue, with: Entities::Issue
|
|
else
|
|
not_found!
|
|
end
|
|
end
|
|
|
|
# Delete a project issue (deprecated)
|
|
#
|
|
# Parameters:
|
|
# id (required) - The ID of a project
|
|
# issue_id (required) - The ID of a project issue
|
|
# Example Request:
|
|
# DELETE /projects/:id/issues/:issue_id
|
|
delete ":id/issues/:issue_id" do
|
|
not_allowed!
|
|
end
|
|
end
|
|
end
|
|
end
|