gitlab-org--gitlab-foss/lib/api/issues.rb

221 lines
8.4 KiB
Ruby
Raw Normal View History

module API
2012-07-24 12:19:51 +00:00
class Issues < Grape::API
2016-11-07 14:15:14 +00:00
include PaginationParams
2012-07-24 12:19:51 +00:00
before { authenticate! }
2014-08-14 10:41:16 +00:00
helpers do
def find_issues(args = {})
args = params.merge(args)
args.delete(:id)
args[:milestone_title] = args.delete(:milestone)
args[:label_name] = args.delete(:labels)
issues = IssuesFinder.new(current_user, args).execute
issues.reorder(args[:order_by] => args[:sort])
2014-09-04 22:01:12 +00:00
end
2016-11-07 14:15:14 +00:00
params :issues_params do
optional :labels, type: String, desc: 'Comma-separated list of label names'
optional :milestone, type: String, desc: 'Milestone title'
2016-11-07 14:15:14 +00:00
optional :order_by, type: String, values: %w[created_at updated_at], default: 'created_at',
desc: 'Return issues ordered by `created_at` or `updated_at` fields.'
optional :sort, type: String, values: %w[asc desc], default: 'desc',
desc: 'Return issues sorted in `asc` or `desc` order.'
2017-01-04 09:07:00 +00:00
optional :milestone, type: String, desc: 'Return issues for a specific milestone'
2017-02-23 13:29:35 +00:00
optional :iids, type: Array[Integer], desc: 'The IID array of issues'
optional :search, type: String, desc: 'Search issues for text present in the title or description'
2016-11-07 14:15:14 +00:00
use :pagination
end
2016-11-07 14:15:14 +00:00
params :issue_params do
optional :description, type: String, desc: 'The description of an issue'
optional :assignee_id, type: Integer, desc: 'The ID of a user to assign issue'
optional :milestone_id, type: Integer, desc: 'The ID of a milestone to assign issue'
optional :labels, type: String, desc: 'Comma-separated list of label names'
optional :due_date, type: String, desc: 'Date time string in the format YEAR-MONTH-DAY'
optional :confidential, type: Boolean, desc: 'Boolean parameter if the issue should be confidential'
end
2014-08-14 10:41:16 +00:00
end
2012-07-24 12:19:51 +00:00
resource :issues do
2016-11-07 14:15:14 +00:00
desc "Get currently authenticated user's issues" do
success Entities::IssueBasic
2016-11-07 14:15:14 +00:00
end
params do
optional :state, type: String, values: %w[opened closed all], default: 'all',
desc: 'Return opened, closed, or all issues'
use :issues_params
end
2012-07-24 12:19:51 +00:00
get do
issues = find_issues(scope: 'authored')
2016-09-09 14:16:14 +00:00
present paginate(issues), with: Entities::IssueBasic, current_user: current_user
2012-07-24 12:19:51 +00:00
end
end
2016-11-07 14:15:14 +00:00
params do
requires :id, type: String, desc: 'The ID of a group'
end
resource :groups, requirements: { id: %r{[^/]+} } do
2016-11-07 14:15:14 +00:00
desc 'Get a list of group issues' do
success Entities::IssueBasic
2016-11-07 14:15:14 +00:00
end
params do
optional :state, type: String, values: %w[opened closed all], default: 'all',
2016-11-07 14:15:14 +00:00
desc: 'Return opened, closed, or all issues'
use :issues_params
end
get ":id/issues" do
group = find_group!(params[:id])
issues = find_issues(group_id: group.id)
2016-09-09 14:16:14 +00:00
present paginate(issues), with: Entities::IssueBasic, current_user: current_user
end
end
params do
requires :id, type: String, desc: 'The ID of a project'
end
resource :projects, requirements: { id: %r{[^/]+} } do
include TimeTrackingEndpoints
2016-11-07 14:15:14 +00:00
desc 'Get a list of project issues' do
success Entities::IssueBasic
2016-11-07 14:15:14 +00:00
end
params do
optional :state, type: String, values: %w[opened closed all], default: 'all',
desc: 'Return opened, closed, or all issues'
use :issues_params
end
2012-07-24 12:19:51 +00:00
get ":id/issues" do
project = find_project!(params[:id])
issues = find_issues(project_id: project.id)
2017-01-04 08:23:46 +00:00
present paginate(issues), with: Entities::IssueBasic, current_user: current_user, project: user_project
2012-07-24 12:19:51 +00:00
end
2016-11-07 14:15:14 +00:00
desc 'Get a single project issue' do
success Entities::Issue
end
params do
requires :issue_iid, type: Integer, desc: 'The internal ID of a project issue'
2016-11-07 14:15:14 +00:00
end
get ":id/issues/:issue_iid" do
issue = find_project_issue(params[:issue_iid])
2016-11-07 14:15:14 +00:00
present issue, with: Entities::Issue, current_user: current_user, project: user_project
2012-07-24 12:19:51 +00:00
end
2016-11-07 14:15:14 +00:00
desc 'Create a new project issue' do
success Entities::Issue
end
params do
requires :title, type: String, desc: 'The title of an issue'
optional :created_at, type: DateTime,
desc: 'Date time when the issue was created. Available only for admins and project owners.'
optional :merge_request_to_resolve_discussions_of, type: Integer,
2016-11-07 14:15:14 +00:00
desc: 'The IID of a merge request for which to resolve discussions'
optional :discussion_to_resolve, type: String,
desc: 'The ID of a discussion to resolve, also pass `merge_request_to_resolve_discussions_of`'
2016-11-07 14:15:14 +00:00
use :issue_params
end
2016-07-12 15:59:21 +00:00
post ':id/issues' do
2016-11-07 14:15:14 +00:00
# Setting created_at time only allowed for admins and project owners
unless current_user.admin? || user_project.owner == current_user
params.delete(:created_at)
end
2016-11-07 14:15:14 +00:00
issue_params = declared_params(include_missing: false)
2016-11-07 14:15:14 +00:00
issue = ::Issues::CreateService.new(user_project,
current_user,
issue_params.merge(request: request, api: true)).execute
if issue.spam?
render_api_error!({ error: 'Spam detected' }, 400)
end
if issue.valid?
present issue, with: Entities::Issue, current_user: current_user, project: user_project
else
render_validation_error!(issue)
2012-07-24 12:19:51 +00:00
end
end
desc 'Update an existing issue' do
success Entities::Issue
end
params do
requires :issue_iid, type: Integer, desc: 'The internal ID of a project issue'
2016-11-07 14:15:14 +00:00
optional :title, type: String, desc: 'The title of an issue'
optional :updated_at, type: DateTime,
desc: 'Date time when the issue was updated. Available only for admins and project owners.'
optional :state_event, type: String, values: %w[reopen close], desc: 'State of the issue'
2016-11-07 14:15:14 +00:00
use :issue_params
at_least_one_of :title, :description, :assignee_id, :milestone_id,
:labels, :created_at, :due_date, :confidential, :state_event
end
put ':id/issues/:issue_iid' do
issue = user_project.issues.find_by!(iid: params.delete(:issue_iid))
authorize! :update_issue, issue
2016-11-07 14:15:14 +00:00
# Setting created_at time only allowed for admins and project owners
unless current_user.admin? || user_project.owner == current_user
params.delete(:updated_at)
end
2016-07-15 14:21:53 +00:00
2017-02-14 19:07:11 +00:00
update_params = declared_params(include_missing: false).merge(request: request, api: true)
2016-11-07 14:15:14 +00:00
issue = ::Issues::UpdateService.new(user_project,
current_user,
2017-02-14 19:07:11 +00:00
update_params).execute(issue)
render_spam_error! if issue.spam?
2013-06-11 15:15:18 +00:00
if issue.valid?
present issue, with: Entities::Issue, current_user: current_user, project: user_project
else
render_validation_error!(issue)
2012-07-24 12:19:51 +00:00
end
end
2016-11-07 14:15:14 +00:00
desc 'Move an existing issue' do
success Entities::Issue
end
params do
requires :issue_iid, type: Integer, desc: 'The internal ID of a project issue'
2016-11-07 14:15:14 +00:00
requires :to_project_id, type: Integer, desc: 'The ID of the new project'
end
post ':id/issues/:issue_iid/move' do
issue = user_project.issues.find_by(iid: params[:issue_iid])
2016-11-07 14:15:14 +00:00
not_found!('Issue') unless issue
2016-04-07 12:07:17 +00:00
2016-11-07 14:15:14 +00:00
new_project = Project.find_by(id: params[:to_project_id])
not_found!('Project') unless new_project
2016-04-07 12:07:17 +00:00
begin
issue = ::Issues::MoveService.new(user_project, current_user).execute(issue, new_project)
present issue, with: Entities::Issue, current_user: current_user, project: user_project
2016-04-07 12:07:17 +00:00
rescue ::Issues::MoveService::MoveError => error
render_api_error!(error.message, 400)
end
end
2016-11-07 14:15:14 +00:00
desc 'Delete a project issue'
params do
requires :issue_iid, type: Integer, desc: 'The internal ID of a project issue'
2016-11-07 14:15:14 +00:00
end
delete ":id/issues/:issue_iid" do
issue = user_project.issues.find_by(iid: params[:issue_iid])
2016-11-07 14:15:14 +00:00
not_found!('Issue') unless issue
2016-02-26 08:55:43 +00:00
2016-03-21 13:12:52 +00:00
authorize!(:destroy_issue, issue)
2016-02-26 08:55:43 +00:00
issue.destroy
2012-07-24 12:19:51 +00:00
end
end
end
end