summaryrefslogtreecommitdiff
path: root/lib/gitlab/slash_commands/run.rb
blob: 40fd7ee4f204f5869934684d20da82c24cf6966d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# frozen_string_literal: true

module Gitlab
  module SlashCommands
    # Slash command for triggering chatops jobs.
    class Run < BaseCommand
      def self.match(text)
        /\Arun\s+(?<command>\S+)(\s+(?<arguments>.+))?\z/m.match(text)
      end

      def self.help_message
        'run <command> <arguments>'
      end

      def self.available?(project)
        Chat.available? && project.builds_enabled?
      end

      def self.allowed?(project, user)
        can?(user, :create_pipeline, project)
      end

      def execute(match)
        command = Chat::Command.new(
          project: project,
          chat_name: chat_name,
          name: match[:command],
          arguments: match[:arguments],
          channel: params[:channel_id],
          response_url: params[:response_url]
        )

        presenter = Gitlab::SlashCommands::Presenters::Run.new
        pipeline = command.try_create_pipeline

        if pipeline&.persisted?
          presenter.present(pipeline)
        else
          presenter.failed_to_schedule(command.name)
        end
      end
    end
  end
end