X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2d4263c16812a906589cbc13be26535a85691bd8..39c17737ac69d7693684fe2f95bef0ec235a28bf:/services/api/config/application.rb diff --git a/services/api/config/application.rb b/services/api/config/application.rb index 2f331eeffa..24fd61871d 100644 --- a/services/api/config/application.rb +++ b/services/api/config/application.rb @@ -1,17 +1,38 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require File.expand_path('../boot', __FILE__) require 'rails/all' require 'digest' +module Kernel + def suppress_warnings + verbose_orig = $VERBOSE + begin + $VERBOSE = nil + yield + ensure + $VERBOSE = verbose_orig + end + end +end + if defined?(Bundler) - # If you precompile assets before deploying to production, use this line - Bundler.require(*Rails.groups(:assets => %w(development test))) - # If you want your assets lazily compiled in production, use this line - # Bundler.require(:default, :assets, Rails.env) + suppress_warnings do + # If you precompile assets before deploying to production, use this line + Bundler.require(*Rails.groups(:assets => %w(development test))) + # If you want your assets lazily compiled in production, use this line + # Bundler.require(:default, :assets, Rails.env) + end end module Server class Application < Rails::Application + # The following is to avoid SafeYAML's warning message + SafeYAML::OPTIONS[:default_mode] = :safe + # Settings in config/environments/* take precedence over those specified here. # Application configuration should go into files in config/initializers # -- all .rb files in that directory are automatically loaded. @@ -25,38 +46,44 @@ module Server # Activate observers that should always be running. # config.active_record.observers = :cacher, :garbage_collector, :forum_observer - - # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. - # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. - # config.time_zone = 'Central Time (US & Canada)' + config.active_record.schema_format = :sql # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] # config.i18n.default_locale = :de - # Configure the default encoding used in templates for Ruby 1.9. - config.encoding = "utf-8" - # Configure sensitive parameters which will be filtered from the log file. config.filter_parameters += [:password] - # Enable the asset pipeline - config.assets.enabled = true + # Load entire application at startup. + config.eager_load = true + + config.active_record.raise_in_transactional_callbacks = true - # Version of your assets, change this if you want to expire all your assets - config.assets.version = '1.0' + config.active_support.test_order = :sorted - config.force_ssl = true + config.action_dispatch.perform_deep_munge = false - def config.uuid_prefix(x=nil) - if x and @uuid_prefix - raise "uuid_prefix was already set to #{@uuid_prefix}" + I18n.enforce_available_locales = false + + # Before using the filesystem backend for Rails.cache, check + # whether we own the relevant directory. If we don't, using it is + # likely to either fail or (if we're root) pollute it and cause + # other processes to fail later. + default_cache_path = Rails.root.join('tmp', 'cache') + if not File.owned?(default_cache_path) + if File.exist?(default_cache_path) + why = "owner (uid=#{File::Stat.new(default_cache_path).uid}) " + + "is not me (uid=#{Process.euid})" + else + why = "does not exist" end - @uuid_prefix ||= Digest::MD5.hexdigest(x || `hostname`.strip).to_i(16).to_s(36)[-5..-1] - end - def config.uuid_prefix=(x) - @uuid_prefix = x + STDERR.puts("Defaulting to memory cache, " + + "because #{default_cache_path} #{why}") + config.cache_store = :memory_store + else + require Rails.root.join('lib/safer_file_store') + config.cache_store = ::SaferFileStore.new(default_cache_path) end end - end