summaryrefslogtreecommitdiff
path: root/lib/gitlab/slash_commands/base_command.rb
blob: 0c76378d51c79a71f01337a7ca8413faebc39cb9 (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
module Gitlab
  module SlashCommands
    class BaseCommand
      QUERY_LIMIT = 5

      def self.match(_text)
        raise NotImplementedError
      end

      def self.help_message
        raise NotImplementedError
      end

      def self.available?(_project)
        raise NotImplementedError
      end

      def self.allowed?(_user, _ability)
        true
      end

      def self.can?(object, action, subject)
        Ability.allowed?(object, action, subject)
      end

      def execute(_)
        raise NotImplementedError
      end

      def collection
        raise NotImplementedError
      end

      attr_accessor :project, :current_user, :params, :chat_name

      def initialize(project, chat_name, params = {})
        @project, @current_user, @params = project, chat_name.user, params.dup
        @chat_name = chat_name
      end

      private

      # rubocop: disable CodeReuse/ActiveRecord
      def find_by_iid(iid)
        collection.find_by(iid: iid)
      end
      # rubocop: enable CodeReuse/ActiveRecord
    end
  end
end