proxy_variable_substitution_service.rb 2.7 KB
Newer Older
1 2 3 4 5 6
# frozen_string_literal: true

module Prometheus
  class ProxyVariableSubstitutionService < BaseService
    include Stepable

7 8
    steps :validate_variables,
      :add_params_to_result,
9
      :substitute_params,
10 11
      :substitute_ruby_variables,
      :substitute_liquid_variables
12 13 14 15 16 17 18 19 20 21 22

    def initialize(environment, params = {})
      @environment, @params = environment, params.deep_dup
    end

    def execute
      execute_steps
    end

    private

23 24 25 26 27 28 29 30 31 32
    def validate_variables(_result)
      return success unless variables

      unless variables.is_a?(Array) && variables.size.even?
        return error(_('Optional parameter "variables" must be an array of keys and values. Ex: [key1, value1, key2, value2]'))
      end

      success
    end

33 34 35 36 37 38
    def add_params_to_result(result)
      result[:params] = params

      success(result)
    end

39 40 41 42 43 44 45 46 47 48
    def substitute_params(result)
      start_time = result[:params][:start_time]
      end_time = result[:params][:end_time]

      result[:params][:start] = start_time if start_time
      result[:params][:end]   = end_time if end_time

      success(result)
    end

49 50 51 52 53 54 55 56 57 58 59
    def substitute_liquid_variables(result)
      return success(result) unless query(result)

      result[:params][:query] =
        TemplateEngines::LiquidService.new(query(result)).render(full_context)

      success(result)
    rescue TemplateEngines::LiquidService::RenderError => e
      error(e.message)
    end

60
    def substitute_ruby_variables(result)
61
      return success(result) unless query(result)
62 63 64

      # The % operator doesn't replace variables if the hash contains string
      # keys.
65
      result[:params][:query] = query(result) % predefined_context.symbolize_keys
66 67 68 69

      success(result)
    rescue TypeError, ArgumentError => exception
      log_error(exception.message)
70 71
      Gitlab::ErrorTracking.track_exception(exception, {
        template_string: query(result),
72 73 74 75 76 77 78 79 80 81
        variables: predefined_context
      })

      error(_('Malformed string'))
    end

    def predefined_context
      @predefined_context ||= Gitlab::Prometheus::QueryVariables.call(@environment)
    end

82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
    def full_context
      @full_context ||= predefined_context.reverse_merge(variables_hash)
    end

    def variables
      params[:variables]
    end

    def variables_hash
      # .each_slice(2) converts ['key1', 'value1', 'key2', 'value2'] into
      # [['key1', 'value1'], ['key2', 'value2']] which is then converted into
      # a hash by to_h: {'key1' => 'value1', 'key2' => 'value2'}
      # to_h will raise an ArgumentError if the number of elements in the original
      # array is not even.
      variables&.each_slice(2).to_h
    end

    def query(result)
      result[:params][:query]
101 102 103
    end
  end
end