60 lines
1.7 KiB
Ruby
60 lines
1.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module ProductAnalytics
|
|
class Settings
|
|
BASE_CONFIG_KEYS = %w[product_analytics_data_collector_host cube_api_base_url cube_api_key].freeze
|
|
|
|
JITSU_CONFIG_KEYS = (%w[jitsu_host jitsu_project_xid jitsu_administrator_email jitsu_administrator_password] +
|
|
%w[product_analytics_clickhouse_connection_string] + BASE_CONFIG_KEYS).freeze
|
|
|
|
SNOWPLOW_CONFIG_KEYS = (%w[product_analytics_configurator_connection_string] +
|
|
BASE_CONFIG_KEYS).freeze
|
|
|
|
ALL_CONFIG_KEYS = (ProductAnalytics::Settings::BASE_CONFIG_KEYS + ProductAnalytics::Settings::JITSU_CONFIG_KEYS +
|
|
ProductAnalytics::Settings::SNOWPLOW_CONFIG_KEYS).freeze
|
|
|
|
def initialize(project:)
|
|
@project = project
|
|
end
|
|
|
|
def enabled?
|
|
::Gitlab::CurrentSettings.product_analytics_enabled? && configured?
|
|
end
|
|
|
|
def configured?
|
|
return configured_snowplow? if Feature.enabled?(:product_analytics_snowplow_support, @project)
|
|
|
|
JITSU_CONFIG_KEYS.all? do |key|
|
|
get_setting_value(key).present?
|
|
end
|
|
end
|
|
|
|
def configured_snowplow?
|
|
SNOWPLOW_CONFIG_KEYS.all? do |key|
|
|
get_setting_value(key).present?
|
|
end
|
|
end
|
|
|
|
ALL_CONFIG_KEYS.each do |key|
|
|
define_method key.to_sym do
|
|
get_setting_value(key)
|
|
end
|
|
end
|
|
|
|
class << self
|
|
def for_project(project)
|
|
ProductAnalytics::Settings.new(project: project)
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
# rubocop:disable GitlabSecurity/PublicSend
|
|
def get_setting_value(key)
|
|
@project.project_setting.public_send(key).presence ||
|
|
::Gitlab::CurrentSettings.public_send(key)
|
|
end
|
|
# rubocop:enable GitlabSecurity/PublicSend
|
|
end
|
|
end
|