2013-02-06 03:16:51 +08:00
|
|
|
require File.expand_path('../boot', __FILE__)
|
|
|
|
require 'rails/all'
|
|
|
|
|
|
|
|
# Plugin related stuff
|
2013-05-02 05:10:51 +08:00
|
|
|
require_relative '../lib/discourse_plugin_registry'
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-12-20 13:17:21 +08:00
|
|
|
# Global config
|
|
|
|
require_relative '../app/models/global_setting'
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
if defined?(Bundler)
|
2013-03-23 23:02:59 +08:00
|
|
|
Bundler.require(*Rails.groups(assets: %w(development test profile)))
|
2014-01-14 13:59:55 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
# PATCH DB configuration
|
|
|
|
class Rails::Application::Configuration
|
|
|
|
|
|
|
|
def database_configuration_with_global_config
|
|
|
|
if Rails.env == "production"
|
|
|
|
GlobalSetting.database_config
|
|
|
|
else
|
|
|
|
database_configuration_without_global_config
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
alias_method_chain :database_configuration, :global_config
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
module Discourse
|
|
|
|
class Application < Rails::Application
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
require 'discourse'
|
2013-05-30 13:53:40 +08:00
|
|
|
require 'js_locale_helper'
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-05-14 13:20:28 +08:00
|
|
|
# mocha hates us, active_support/testing/mochaing.rb line 2 is requiring the wrong
|
|
|
|
# require, patched in source, on upgrade remove this
|
|
|
|
if Rails.env.test? || Rails.env.development?
|
|
|
|
require "mocha/version"
|
|
|
|
require "mocha/deprecation"
|
|
|
|
if Mocha::VERSION == "0.13.3" && Rails::VERSION::STRING == "3.2.12"
|
|
|
|
Mocha::Deprecation.mode = :disabled
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
# Custom directories with classes and modules you want to be autoloadable.
|
2013-05-23 12:52:12 +08:00
|
|
|
config.autoload_paths += Dir["#{config.root}/app/serializers"]
|
|
|
|
config.autoload_paths += Dir["#{config.root}/lib/validators/"]
|
2013-10-01 15:04:02 +08:00
|
|
|
config.autoload_paths += Dir["#{config.root}/app"]
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
# Only load the plugins named here, in the order given (default is alphabetical).
|
|
|
|
# :all can be used as a placeholder for all plugins not explicitly named.
|
|
|
|
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
|
|
|
|
|
|
|
config.assets.paths += %W(#{config.root}/config/locales)
|
|
|
|
|
2013-11-06 19:39:08 +08:00
|
|
|
# explicitly precompile any images in plugins ( /assets/images ) path
|
|
|
|
config.assets.precompile += [lambda do |filename, path|
|
|
|
|
path =~ /assets\/images/ && !%w(.js .css).include?(File.extname(filename))
|
|
|
|
end]
|
|
|
|
|
2014-04-09 22:06:42 +08:00
|
|
|
config.assets.precompile += ['vendor.js', 'common.css', 'desktop.css', 'mobile.css', 'admin.js', 'admin.css', 'shiny/shiny.css', 'preload_store.js', 'browser-update.js', 'embed.css', 'break_string.js']
|
2013-04-29 08:02:04 +08:00
|
|
|
|
|
|
|
# Precompile all defer
|
2013-04-29 14:52:56 +08:00
|
|
|
Dir.glob("#{config.root}/app/assets/javascripts/defer/*.js").each do |file|
|
2013-04-29 15:11:20 +08:00
|
|
|
config.assets.precompile << "defer/#{File.basename(file)}"
|
2013-04-29 08:02:04 +08:00
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-03-01 03:31:39 +08:00
|
|
|
# Precompile all available locales
|
2013-04-29 14:52:56 +08:00
|
|
|
Dir.glob("#{config.root}/app/assets/javascripts/locales/*.js.erb").each do |file|
|
2013-03-06 22:45:07 +08:00
|
|
|
config.assets.precompile << "locales/#{file.match(/([a-z_A-Z]+\.js)\.erb$/)[1]}"
|
2013-03-01 03:31:39 +08:00
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
# Activate observers that should always be running.
|
|
|
|
config.active_record.observers = [
|
|
|
|
:user_email_observer,
|
2013-02-26 00:42:20 +08:00
|
|
|
:user_action_observer,
|
2013-02-06 03:16:51 +08:00
|
|
|
:post_alert_observer,
|
|
|
|
:search_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 = 'Eastern Time (US & Canada)'
|
|
|
|
|
2013-11-19 23:42:28 +08:00
|
|
|
# auto-load server locale in plugins
|
|
|
|
config.i18n.load_path += Dir["#{Rails.root}/plugins/*/config/locales/server.*.yml"]
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
# Configure the default encoding used in templates for Ruby 1.9.
|
2013-02-18 14:34:43 +08:00
|
|
|
config.encoding = 'utf-8'
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
# Configure sensitive parameters which will be filtered from the log file.
|
2014-01-06 20:03:53 +08:00
|
|
|
config.filter_parameters += [
|
|
|
|
:password,
|
|
|
|
:pop3s_polling_password,
|
|
|
|
:s3_secret_access_key,
|
|
|
|
:twitter_consumer_secret,
|
|
|
|
:facebook_app_secret,
|
|
|
|
:github_client_secret,
|
|
|
|
:discourse_org_access_key,
|
|
|
|
]
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
# Enable the asset pipeline
|
|
|
|
config.assets.enabled = true
|
|
|
|
|
|
|
|
# Version of your assets, change this if you want to expire all your assets
|
|
|
|
config.assets.version = '1.2.4'
|
|
|
|
|
|
|
|
# We need to be able to spin threads
|
|
|
|
config.active_record.thread_safe!
|
|
|
|
|
2013-02-26 00:42:20 +08:00
|
|
|
# see: http://stackoverflow.com/questions/11894180/how-does-one-correctly-add-custom-sql-dml-in-migrations/11894420#11894420
|
2013-02-06 03:16:51 +08:00
|
|
|
config.active_record.schema_format = :sql
|
|
|
|
|
2013-02-26 00:42:20 +08:00
|
|
|
# per https://www.owasp.org/index.php/Password_Storage_Cheat_Sheet
|
2013-02-06 03:16:51 +08:00
|
|
|
config.pbkdf2_iterations = 64000
|
2013-07-23 09:36:01 +08:00
|
|
|
config.pbkdf2_algorithm = "sha256"
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-10-10 11:16:09 +08:00
|
|
|
# rack lock is nothing but trouble, get rid of it
|
|
|
|
# for some reason still seeing it in Rails 4
|
|
|
|
config.middleware.delete Rack::Lock
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
# route all exceptions via our router
|
|
|
|
config.exceptions_app = self.routes
|
|
|
|
|
|
|
|
# Our templates shouldn't start with 'discourse/templates'
|
|
|
|
config.handlebars.templates_root = 'discourse/templates'
|
|
|
|
|
2013-03-11 20:33:20 +08:00
|
|
|
require 'discourse_redis'
|
2014-05-07 06:23:52 +08:00
|
|
|
require 'logster/redis_store'
|
2013-02-06 03:16:51 +08:00
|
|
|
# Use redis for our cache
|
2013-03-11 20:33:20 +08:00
|
|
|
config.cache_store = DiscourseRedis.new_redis_store
|
2014-05-07 06:23:52 +08:00
|
|
|
$redis = DiscourseRedis.new
|
|
|
|
Logster.store = Logster::RedisStore.new($redis)
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-04-11 14:24:08 +08:00
|
|
|
# we configure rack cache on demand in an initializer
|
|
|
|
# our setup does not use rack cache and instead defers to nginx
|
2013-02-06 03:16:51 +08:00
|
|
|
config.action_dispatch.rack_cache = nil
|
|
|
|
|
2013-04-11 14:24:08 +08:00
|
|
|
# ember stuff only used for asset precompliation, production variant plays up
|
|
|
|
config.ember.variant = :development
|
2013-09-17 02:08:55 +08:00
|
|
|
config.ember.ember_location = "#{Rails.root}/vendor/assets/javascripts/production/ember.js"
|
|
|
|
config.ember.handlebars_location = "#{Rails.root}/vendor/assets/javascripts/handlebars.js"
|
2013-04-11 14:24:08 +08:00
|
|
|
|
2013-08-26 10:52:36 +08:00
|
|
|
require 'auth'
|
2014-02-05 13:20:28 +08:00
|
|
|
Discourse.activate_plugins! unless Rails.env.test? and ENV['LOAD_PLUGINS'] != "1"
|
2013-08-01 13:59:57 +08:00
|
|
|
|
2013-02-26 00:42:20 +08:00
|
|
|
config.after_initialize do
|
2013-09-17 08:23:21 +08:00
|
|
|
# So open id logs somewhere sane
|
2013-02-06 03:16:51 +08:00
|
|
|
OpenID::Util.logger = Rails.logger
|
2013-09-17 08:23:21 +08:00
|
|
|
if plugins = Discourse.plugins
|
|
|
|
plugins.each{|plugin| plugin.notify_after_initialize}
|
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
2013-09-16 10:58:26 +08:00
|
|
|
|
2013-11-20 07:10:12 +08:00
|
|
|
if ENV['RBTRACE'] == "1"
|
|
|
|
require 'rbtrace'
|
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
end
|