summaryrefslogtreecommitdiff
path: root/lib/gitlab/chat/responder/base.rb
blob: f1ad0e3679369165bd130a308d61195606c3462a (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
# frozen_string_literal: true

module Gitlab
  module Chat
    module Responder
      class Base
        attr_reader :build

        # build - The `Ci::Build` that was executed.
        def initialize(build)
          @build = build
        end

        def pipeline
          build.pipeline
        end

        def project
          pipeline.project
        end

        def success(*)
          raise NotImplementedError, 'You must implement #success(output)'
        end

        def failure
          raise NotImplementedError, 'You must implement #failure'
        end

        def send_response(output)
          raise NotImplementedError, 'You must implement #send_response(output)'
        end

        def scheduled_output
          raise NotImplementedError, 'You must implement #scheduled_output'
        end
      end
    end
  end
end