summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/limit.rb
blob: c22a3c503d5951f5e1ba2337364ce4080ecd457f (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
# frozen_string_literal: true

module Gitlab
  module Ci
    ##
    # Abstract base class for CI/CD Quotas
    #
    class Limit
      LimitExceededError = Class.new(StandardError)

      def initialize(_context, _resource)
      end

      def enabled?
        raise NotImplementedError
      end

      def exceeded?
        raise NotImplementedError
      end

      def message
        raise NotImplementedError
      end

      def log_error!(extra_context = {})
        error = LimitExceededError.new(message)
        # TODO: change this to Gitlab::ErrorTracking.log_exception(error, extra_context)
        # https://gitlab.com/gitlab-org/gitlab/issues/32906
        ::Gitlab::ErrorTracking.track_exception(error, extra_context)
      end
    end
  end
end