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

scan_configuration.rb « security « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eaccbb3be7e6d6783e85495db86b700c3c87d66e (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
# frozen_string_literal: true

module Gitlab
  module Security
    class ScanConfiguration
      include ::Gitlab::Utils::StrongMemoize
      include Gitlab::Routing.url_helpers

      attr_reader :type

      def initialize(project:, type:, configured: false)
        @project = project
        @type = type
        @configured = configured
      end

      def available?
        # SAST and Secret Detection are always available, but this isn't
        # reflected by our license model yet.
        # TODO: https://gitlab.com/gitlab-org/gitlab/-/issues/333113
        %i[sast secret_detection].include?(type)
      end

      def configured?
        configured
      end

      def configuration_path
        configurable_scans[type]
      end

      private

      attr_reader :project, :configured

      def configurable_scans
        strong_memoize(:configurable_scans) do
          {
            sast: project_security_configuration_sast_path(project)
          }
        end
      end
    end
  end
end

Gitlab::Security::ScanConfiguration.prepend_mod_with('Gitlab::Security::ScanConfiguration')