2015-01-08 12:53:35 -05:00
|
|
|
module Gitlab
|
|
|
|
module CurrentSettings
|
|
|
|
def current_application_settings
|
2016-05-27 17:28:04 -04:00
|
|
|
if RequestStore.active?
|
|
|
|
RequestStore.fetch(:current_application_settings) { ensure_application_settings! }
|
|
|
|
else
|
|
|
|
ensure_application_settings!
|
|
|
|
end
|
|
|
|
end
|
2016-01-28 04:14:21 -05:00
|
|
|
|
2016-05-27 17:28:04 -04:00
|
|
|
def ensure_application_settings!
|
2016-06-26 02:29:28 -04:00
|
|
|
if connect_to_db?
|
|
|
|
begin
|
2016-06-29 17:28:41 -04:00
|
|
|
settings = ::ApplicationSetting.current
|
2016-06-26 02:29:28 -04:00
|
|
|
# In case Redis isn't running or the Redis UNIX socket file is not available
|
|
|
|
rescue ::Redis::BaseError, ::Errno::ENOENT
|
|
|
|
settings = ::ApplicationSetting.last
|
|
|
|
end
|
2016-01-28 04:14:21 -05:00
|
|
|
|
2016-05-27 17:28:04 -04:00
|
|
|
settings ||= ::ApplicationSetting.create_from_defaults unless ActiveRecord::Migrator.needs_migration?
|
2015-01-08 13:30:35 -05:00
|
|
|
end
|
2016-05-27 17:28:04 -04:00
|
|
|
|
|
|
|
settings || fake_application_settings
|
2015-01-08 12:53:35 -05:00
|
|
|
end
|
2015-01-08 14:26:16 -05:00
|
|
|
|
2016-11-04 18:54:24 -04:00
|
|
|
def sidekiq_throttling_enabled?
|
2016-11-12 19:00:21 -05:00
|
|
|
current_application_settings.sidekiq_throttling_enabled?
|
2016-11-04 18:54:24 -04:00
|
|
|
end
|
|
|
|
|
2015-01-08 14:26:16 -05:00
|
|
|
def fake_application_settings
|
|
|
|
OpenStruct.new(
|
|
|
|
default_projects_limit: Settings.gitlab['default_projects_limit'],
|
2015-01-25 12:38:35 -05:00
|
|
|
default_branch_protection: Settings.gitlab['default_branch_protection'],
|
2015-01-08 14:26:16 -05:00
|
|
|
signup_enabled: Settings.gitlab['signup_enabled'],
|
|
|
|
signin_enabled: Settings.gitlab['signin_enabled'],
|
|
|
|
gravatar_enabled: Settings.gravatar['enabled'],
|
2016-07-25 23:59:39 -04:00
|
|
|
koding_enabled: false,
|
2016-05-09 11:12:53 -04:00
|
|
|
sign_in_text: nil,
|
|
|
|
after_sign_up_text: nil,
|
|
|
|
help_page_text: nil,
|
|
|
|
shared_runners_text: nil,
|
2015-03-20 08:11:12 -04:00
|
|
|
restricted_visibility_levels: Settings.gitlab['restricted_visibility_levels'],
|
2015-06-05 11:50:37 -04:00
|
|
|
max_attachment_size: Settings.gitlab['max_attachment_size'],
|
2015-08-12 02:13:20 -04:00
|
|
|
session_expire_delay: Settings.gitlab['session_expire_delay'],
|
2016-01-28 04:14:21 -05:00
|
|
|
default_project_visibility: Settings.gitlab.default_projects_features['visibility_level'],
|
|
|
|
default_snippet_visibility: Settings.gitlab.default_projects_features['visibility_level'],
|
2016-07-15 19:30:38 -04:00
|
|
|
domain_whitelist: Settings.gitlab['domain_whitelist'],
|
2016-12-15 11:31:14 -05:00
|
|
|
import_sources: %w[gitea github bitbucket gitlab google_code fogbugz git gitlab_project],
|
2015-11-03 08:45:41 -05:00
|
|
|
shared_runners_enabled: Settings.gitlab_ci['shared_runners_enabled'],
|
2015-11-22 08:27:30 -05:00
|
|
|
max_artifacts_size: Settings.artifacts['max_size'],
|
2016-01-28 04:14:21 -05:00
|
|
|
require_two_factor_authentication: false,
|
2016-01-09 14:30:34 -05:00
|
|
|
two_factor_grace_period: 48,
|
2016-04-12 11:07:54 -04:00
|
|
|
akismet_enabled: false,
|
|
|
|
repository_checks_enabled: true,
|
2016-05-30 11:12:50 -04:00
|
|
|
container_registry_token_expire_delay: 5,
|
2016-07-06 13:46:41 -04:00
|
|
|
user_default_external: false,
|
2016-11-04 14:53:12 -04:00
|
|
|
sidekiq_throttling_enabled: false,
|
2015-01-08 14:26:16 -05:00
|
|
|
)
|
|
|
|
end
|
2015-09-01 06:45:14 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def connect_to_db?
|
2016-01-28 06:23:37 -05:00
|
|
|
# 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-09-23 04:50:46 -04:00
|
|
|
ActiveRecord::Base.connection.table_exists?('application_settings')
|
2016-01-08 08:31:39 -05:00
|
|
|
rescue ActiveRecord::NoDatabaseError
|
|
|
|
false
|
2015-09-01 06:45:14 -04:00
|
|
|
end
|
2015-01-08 12:53:35 -05:00
|
|
|
end
|
|
|
|
end
|