Welcome to mirror list, hosted at ThFree Co, Russian Federation.

content_security_policy.rb « observability « concerns « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e25dc492a0837b44add19565794c7f1fa770873 (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
# frozen_string_literal: true

module Observability
  module ContentSecurityPolicy
    extend ActiveSupport::Concern

    included do
      content_security_policy_with_context do |p|
        current_group = if defined?(group)
                          group
                        else
                          defined?(project) ? project&.group : nil
                        end

        next if p.directives.blank? || !Feature.enabled?(:observability_group_tab, current_group)

        default_frame_src = p.directives['frame-src'] || p.directives['default-src']

        # When ObservabilityUI is not authenticated, it needs to be able
        # to redirect to the GL sign-in page, hence '/users/sign_in' and '/oauth/authorize'
        frame_src_values = Array.wrap(default_frame_src) | [
          Gitlab::Observability.observability_url,
          Gitlab::Utils.append_path(Gitlab.config.gitlab.url, '/users/sign_in'),
          Gitlab::Utils.append_path(Gitlab.config.gitlab.url, '/oauth/authorize')
        ]

        p.frame_src(*frame_src_values)
      end
    end
  end
end