2015-01-08 12:53:35 -05:00
|
|
|
module Gitlab
|
|
|
|
module CurrentSettings
|
|
|
|
def current_application_settings
|
2015-02-18 03:16:42 -05:00
|
|
|
key = :current_application_settings
|
|
|
|
|
|
|
|
RequestStore.store[key] ||= begin
|
2015-09-01 06:45:14 -04:00
|
|
|
if connect_to_db?
|
2015-03-01 10:06:46 -05:00
|
|
|
ApplicationSetting.current || ApplicationSetting.create_from_defaults
|
2015-02-18 03:16:42 -05:00
|
|
|
else
|
|
|
|
fake_application_settings
|
|
|
|
end
|
2015-01-08 13:30:35 -05:00
|
|
|
end
|
2015-01-08 12:53:35 -05: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'],
|
|
|
|
sign_in_text: Settings.extra['sign_in_text'],
|
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'],
|
2015-11-03 08:45:41 -05:00
|
|
|
import_sources: Settings.gitlab['import_sources'],
|
|
|
|
shared_runners_enabled: Settings.gitlab_ci['shared_runners_enabled'],
|
2015-10-12 17:47:32 -04:00
|
|
|
max_artifacts_size: Ci::Settings.gitlab_ci['max_artifacts_size'],
|
2015-01-08 14:26:16 -05:00
|
|
|
)
|
|
|
|
end
|
2015-09-01 06:45:14 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def connect_to_db?
|
|
|
|
use_db = if ENV['USE_DB'] == "false"
|
|
|
|
false
|
|
|
|
else
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
use_db && ActiveRecord::Base.connection.active? && ActiveRecord::Base.connection.table_exists?('application_settings')
|
|
|
|
end
|
2015-01-08 12:53:35 -05:00
|
|
|
end
|
|
|
|
end
|