summaryrefslogtreecommitdiff
path: root/lib/gitlab/chat_commands/command.rb
blob: 431449759012ae3b051470e2bb9d088c2c28653e (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
45
46
47
48
49
50
51
52
53
54
55
module Gitlab
  module ChatCommands
    class Command < BaseCommand
      COMMANDS = [
        Gitlab::ChatCommands::IssueShow,
        Gitlab::ChatCommands::IssueCreate,
      ].freeze

      def execute
        klass, match = fetch_klass

        if klass
          present klass.new(project, current_user, params).execute(match)
        else
          help(help_messages)
        end
      end

      private

      def fetch_klass
        match = nil
        service = available_commands.find do |klass|
          match = klass.match(command)
        end

        [service, match]
      end

      def help_messages
        available_commands.map do |klass|
          klass.help_message
        end
      end

      def available_commands
        COMMANDS.select do |klass|
          klass.available?(project)
        end
      end

      def command
        params[:text]
      end

      def present(resource)
        Mattermost::Presenter.present(resource)
      end

      def help(messages)
        Mattermost::Presenter.help(messages, params[:command])
      end
    end
  end
end