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

57 lines
2.2 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
module Gitlab
module CurrentSettings
def current_application_settings
key = :current_application_settings
RequestStore.store[key] ||= begin
2016-04-02 18:10:28 +05:30
settings = nil
2015-09-25 12:07:36 +05:30
if connect_to_db?
2016-04-02 18:10:28 +05:30
settings = ::ApplicationSetting.current
settings ||= ::ApplicationSetting.create_from_defaults unless ActiveRecord::Migrator.needs_migration?
2015-04-26 12:48:37 +05:30
end
2016-04-02 18:10:28 +05:30
settings || fake_application_settings
2015-04-26 12:48:37 +05:30
end
end
def fake_application_settings
OpenStruct.new(
default_projects_limit: Settings.gitlab['default_projects_limit'],
default_branch_protection: Settings.gitlab['default_branch_protection'],
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'],
restricted_visibility_levels: Settings.gitlab['restricted_visibility_levels'],
2015-09-11 14:41:01 +05:30
max_attachment_size: Settings.gitlab['max_attachment_size'],
2015-09-25 12:07:36 +05:30
session_expire_delay: Settings.gitlab['session_expire_delay'],
2016-04-02 18:10:28 +05:30
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-26 14:37:03 +05:30
shared_runners_enabled: Settings.gitlab_ci['shared_runners_enabled'],
max_artifacts_size: Settings.artifacts['max_size'],
2016-04-02 18:10:28 +05:30
require_two_factor_authentication: false,
two_factor_grace_period: 48,
2016-06-02 11:05:42 +05:30
akismet_enabled: false,
repository_checks_enabled: true,
2015-04-26 12:48:37 +05:30
)
end
2015-09-25 12:07:36 +05:30
private
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
ENV['USE_DB'] != 'false' &&
active_db_connection &&
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