40 lines
1.3 KiB
Ruby
40 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# please require all dependencies below:
|
|
require_relative 'wrapper' unless defined?(::Gitlab::Redis::Wrapper)
|
|
|
|
module Gitlab
|
|
module Redis
|
|
class SharedState < ::Gitlab::Redis::Wrapper
|
|
SESSION_NAMESPACE = 'session:gitlab'
|
|
USER_SESSIONS_NAMESPACE = 'session:user:gitlab'
|
|
USER_SESSIONS_LOOKUP_NAMESPACE = 'session:lookup:user:gitlab'
|
|
IP_SESSIONS_LOOKUP_NAMESPACE = 'session:lookup:ip:gitlab2'
|
|
DEFAULT_REDIS_SHARED_STATE_URL = 'redis://localhost:6382'
|
|
REDIS_SHARED_STATE_CONFIG_ENV_VAR_NAME = 'GITLAB_REDIS_SHARED_STATE_CONFIG_FILE'
|
|
|
|
class << self
|
|
def default_url
|
|
DEFAULT_REDIS_SHARED_STATE_URL
|
|
end
|
|
|
|
def config_file_name
|
|
# if ENV set for this class, use it even if it points to a file does not exist
|
|
file_name = ENV[REDIS_SHARED_STATE_CONFIG_ENV_VAR_NAME]
|
|
return file_name if file_name
|
|
|
|
# otherwise, if config files exists for this class, use it
|
|
file_name = config_file_path('redis.shared_state.yml')
|
|
return file_name if File.file?(file_name)
|
|
|
|
# this will force use of DEFAULT_REDIS_SHARED_STATE_URL when config file is absent
|
|
super
|
|
end
|
|
|
|
def instrumentation_class
|
|
::Gitlab::Instrumentation::Redis::SharedState
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|