debian-mirror-gitlab/lib/gitlab/current_settings.rb

72 lines
2.4 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
module Gitlab
module CurrentSettings
def current_application_settings
if RequestStore.active?
RequestStore.fetch(:current_application_settings) { ensure_application_settings! }
else
ensure_application_settings!
end
end
2016-04-02 18:10:28 +05:30
2017-09-10 17:25:29 +05:30
delegate :sidekiq_throttling_enabled?, to: :current_application_settings
def fake_application_settings(defaults = ::ApplicationSetting.defaults)
FakeApplicationSettings.new(defaults)
end
private
def ensure_application_settings!
2017-09-10 17:25:29 +05:30
return in_memory_application_settings if ENV['IN_MEMORY_APPLICATION_SETTINGS'] == 'true'
cached_application_settings || uncached_application_settings
end
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
def cached_application_settings
begin
::ApplicationSetting.cached
rescue ::Redis::BaseError, ::Errno::ENOENT, ::Errno::EADDRNOTAVAIL
2016-08-24 12:49:21 +05:30
# In case Redis isn't running or the Redis UNIX socket file is not available
2017-09-10 17:25:29 +05:30
end
end
2016-04-02 18:10:28 +05:30
2017-09-10 17:25:29 +05:30
def uncached_application_settings
return fake_application_settings unless connect_to_db?
db_settings = ::ApplicationSetting.current
# If there are pending migrations, it's possible there are columns that
# need to be added to the application settings. To prevent Rake tasks
# and other callers from failing, use any loaded settings and return
# defaults for missing columns.
if ActiveRecord::Migrator.needs_migration?
defaults = ::ApplicationSetting.defaults
defaults.merge!(db_settings.attributes.symbolize_keys) if db_settings.present?
return fake_application_settings(defaults)
2015-04-26 12:48:37 +05:30
end
2017-09-10 17:25:29 +05:30
return db_settings if db_settings.present?
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
::ApplicationSetting.create_from_defaults || in_memory_application_settings
end
2017-08-17 22:00:37 +05:30
def in_memory_application_settings
@in_memory_application_settings ||= ::ApplicationSetting.new(::ApplicationSetting.defaults)
rescue ActiveRecord::StatementInvalid, ActiveRecord::UnknownAttributeError
2017-09-10 17:25:29 +05:30
# In case migrations the application_settings table is not created yet,
# we fallback to a simple OpenStruct
2017-08-17 22:00:37 +05:30
fake_application_settings
2015-04-26 12:48:37 +05:30
end
2015-09-25 12:07:36 +05:30
def connect_to_db?
2016-04-02 18:10:28 +05:30
# When the DBMS is not available, an exception (e.g. PG::ConnectionBad) is raised
active_db_connection = ActiveRecord::Base.connection.active? rescue false
active_db_connection &&
2016-11-03 12:29:30 +05:30
ActiveRecord::Base.connection.table_exists?('application_settings')
rescue ActiveRecord::NoDatabaseError
false
2015-09-25 12:07:36 +05:30
end
2015-04-26 12:48:37 +05:30
end
end