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
|
2016-01-28 04:14:21 -05:00
|
|
|
settings = nil
|
|
|
|
|
2015-09-01 06:45:14 -04:00
|
|
|
if connect_to_db?
|
2016-01-21 03:01:13 -05:00
|
|
|
settings = ::ApplicationSetting.current
|
|
|
|
settings ||= ::ApplicationSetting.create_from_defaults unless ActiveRecord::Migrator.needs_migration?
|
2015-02-18 03:16:42 -05:00
|
|
|
end
|
2016-01-28 04:14:21 -05:00
|
|
|
|
|
|
|
settings || fake_application_settings
|
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'],
|
2016-01-28 04:14:21 -05:00
|
|
|
twitter_sharing_enabled: Settings.gitlab['twitter_sharing_enabled'],
|
2015-01-08 14:26:16 -05:00
|
|
|
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'],
|
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'],
|
|
|
|
restricted_signup_domains: Settings.gitlab['restricted_signup_domains'],
|
|
|
|
import_sources: ['github','bitbucket','gitlab','gitorious','google_code','fogbugz','git'],
|
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,
|
|
|
|
akismet_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
|
|
|
|
|
2016-01-28 04:14:21 -05:00
|
|
|
ENV['USE_DB'] != 'false' &&
|
2016-01-28 06:23:37 -05:00
|
|
|
active_db_connection &&
|
2016-01-28 04:14:21 -05: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
|