gitlab-org--gitlab-foss/lib/gitlab/slash_commands/issue_new.rb

45 lines
1.2 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
module Gitlab
module SlashCommands
2017-01-26 14:30:34 +00:00
class IssueNew < IssueCommand
def self.match(text)
# we can not match \n with the dot by passing the m modifier as than
2018-10-30 10:53:01 +00:00
# the title and description are not separated
/\Aissue\s+(new|create)\s+(?<title>[^\n]*)\n*(?<description>(.|\n)*)/.match(text)
end
2016-11-17 11:57:27 +00:00
def self.help_message
'issue new <title> *`⇧ Shift`*+*`↵ Enter`* <description>'
2016-11-17 11:57:27 +00:00
end
def self.allowed?(project, user)
can?(user, :create_issue, project)
end
def execute(match)
title = match[:title]
description = match[:description].to_s.rstrip
issue = create_issue(title: title, description: description)
2017-01-26 14:30:34 +00:00
if issue.persisted?
presenter(issue).present
2017-01-26 14:30:34 +00:00
else
presenter(issue).display_errors
end
end
private
def create_issue(title:, description:)
2016-11-17 14:30:04 +00:00
Issues::CreateService.new(project, current_user, title: title, description: description).execute
end
def presenter(issue)
Gitlab::SlashCommands::Presenters::IssueNew.new(issue)
end
end
end
end