summaryrefslogtreecommitdiff
path: root/app/controllers/projects/environments/prometheus_api_controller.rb
blob: 98fcc594d6e3c4dfb666ed88a0146c9dafb1eb0d (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
# frozen_string_literal: true

class Projects::Environments::PrometheusApiController < Projects::ApplicationController
  include RenderServiceResults

  before_action :authorize_read_prometheus!
  before_action :environment

  def proxy
    variable_substitution_result =
      variable_substitution_service.new(environment, permit_params).execute

    if variable_substitution_result[:status] == :error
      return error_response(variable_substitution_result)
    end

    prometheus_result = Prometheus::ProxyService.new(
      environment,
      proxy_method,
      proxy_path,
      variable_substitution_result[:params]
    ).execute

    return continue_polling_response if prometheus_result.nil?
    return error_response(prometheus_result) if prometheus_result[:status] == :error

    success_response(prometheus_result)
  end

  private

  def variable_substitution_service
    Prometheus::ProxyVariableSubstitutionService
  end

  def permit_params
    params.permit!
  end

  def environment
    @environment ||= project.environments.find(params[:id])
  end

  def proxy_method
    request.method
  end

  def proxy_path
    params[:proxy_path]
  end
end