2013-05-30 18:41:29 -04:00
|
|
|
require 'cache'
|
2013-08-23 02:21:52 -04:00
|
|
|
require_dependency 'plugin/instance'
|
2013-10-09 00:10:37 -04:00
|
|
|
require_dependency 'auth/default_current_user_provider'
|
2013-05-30 18:41:29 -04:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
module Discourse
|
|
|
|
|
2014-02-20 22:30:25 -05:00
|
|
|
class SidekiqExceptionHandler
|
|
|
|
extend Sidekiq::ExceptionHandler
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.handle_exception(ex, context=nil, parent_logger = nil)
|
|
|
|
context ||= {}
|
|
|
|
parent_logger ||= SidekiqExceptionHandler
|
|
|
|
|
|
|
|
cm = RailsMultisite::ConnectionManagement
|
|
|
|
parent_logger.handle_exception(ex, {
|
|
|
|
current_db: cm.current_db,
|
|
|
|
current_hostname: cm.current_hostname
|
|
|
|
}.merge(context))
|
|
|
|
end
|
|
|
|
|
2013-06-18 20:31:19 -04:00
|
|
|
# Expected less matches than what we got in a find
|
|
|
|
class TooManyMatches < Exception; end
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
# When they try to do something they should be logged in for
|
2013-02-05 14:16:51 -05:00
|
|
|
class NotLoggedIn < Exception; end
|
|
|
|
|
|
|
|
# When the input is somehow bad
|
|
|
|
class InvalidParameters < Exception; end
|
|
|
|
|
|
|
|
# When they don't have permission to do something
|
|
|
|
class InvalidAccess < Exception; end
|
|
|
|
|
|
|
|
# When something they want is not found
|
|
|
|
class NotFound < Exception; end
|
|
|
|
|
2013-06-04 18:34:53 -04:00
|
|
|
# When a setting is missing
|
|
|
|
class SiteSettingMissing < Exception; end
|
|
|
|
|
2013-11-05 13:04:47 -05:00
|
|
|
# When ImageMagick is missing
|
|
|
|
class ImageMagickMissing < Exception; end
|
|
|
|
|
2013-11-25 18:21:41 -05:00
|
|
|
class InvalidPost < Exception; end
|
|
|
|
|
2014-02-12 23:37:28 -05:00
|
|
|
# When read-only mode is enabled
|
|
|
|
class ReadOnly < Exception; end
|
|
|
|
|
2013-07-29 01:13:13 -04:00
|
|
|
# Cross site request forgery
|
|
|
|
class CSRF < Exception; end
|
|
|
|
|
2013-12-23 18:50:36 -05:00
|
|
|
def self.filters
|
2014-01-14 12:48:57 -05:00
|
|
|
@filters ||= [:latest, :unread, :new, :starred, :read, :posted]
|
2013-12-23 18:50:36 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.anonymous_filters
|
2014-01-14 12:48:57 -05:00
|
|
|
@anonymous_filters ||= [:latest]
|
2013-12-23 18:50:36 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.logged_in_filters
|
|
|
|
@logged_in_filters ||= Discourse.filters - Discourse.anonymous_filters
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.top_menu_items
|
2014-01-14 12:48:57 -05:00
|
|
|
@top_menu_items ||= Discourse.filters + [:category, :categories, :top]
|
2013-12-23 18:50:36 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.anonymous_top_menu_items
|
2014-01-14 12:48:57 -05:00
|
|
|
@anonymous_top_menu_items ||= Discourse.anonymous_filters + [:category, :categories, :top]
|
2013-12-23 18:50:36 -05:00
|
|
|
end
|
|
|
|
|
2013-08-01 01:59:57 -04:00
|
|
|
def self.activate_plugins!
|
2013-08-23 02:21:52 -04:00
|
|
|
@plugins = Plugin::Instance.find_all("#{Rails.root}/plugins")
|
2013-12-23 18:50:36 -05:00
|
|
|
@plugins.each { |plugin| plugin.activate! }
|
2013-08-01 01:59:57 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.plugins
|
|
|
|
@plugins
|
|
|
|
end
|
|
|
|
|
2014-01-14 20:07:42 -05:00
|
|
|
def self.assets_digest
|
|
|
|
@assets_digest ||= begin
|
|
|
|
digest = Digest::MD5.hexdigest(ActionView::Base.assets_manifest.assets.values.sort.join)
|
|
|
|
|
|
|
|
channel = "/global/asset-version"
|
|
|
|
message = MessageBus.last_message(channel)
|
|
|
|
|
|
|
|
unless message && message.data == digest
|
|
|
|
MessageBus.publish channel, digest
|
|
|
|
end
|
|
|
|
digest
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-08-25 21:04:16 -04:00
|
|
|
def self.authenticators
|
|
|
|
# TODO: perhaps we don't need auth providers and authenticators maybe one object is enough
|
|
|
|
|
|
|
|
# NOTE: this bypasses the site settings and gives a list of everything, we need to register every middleware
|
|
|
|
# for the cases of multisite
|
|
|
|
# In future we may change it so we don't include them all for cases where we are not a multisite, but we would
|
|
|
|
# require a restart after site settings change
|
|
|
|
Users::OmniauthCallbacksController::BUILTIN_AUTH + auth_providers.map(&:authenticator)
|
|
|
|
end
|
|
|
|
|
2013-08-01 01:59:57 -04:00
|
|
|
def self.auth_providers
|
2013-08-01 02:05:46 -04:00
|
|
|
providers = []
|
2013-08-01 01:59:57 -04:00
|
|
|
if plugins
|
|
|
|
plugins.each do |p|
|
|
|
|
next unless p.auth_providers
|
|
|
|
p.auth_providers.each do |prov|
|
|
|
|
providers << prov
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
providers
|
|
|
|
end
|
|
|
|
|
2013-05-30 18:41:29 -04:00
|
|
|
def self.cache
|
|
|
|
@cache ||= Cache.new
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
# Get the current base URL for the current site
|
|
|
|
def self.current_hostname
|
2013-05-30 18:48:34 -04:00
|
|
|
if SiteSetting.force_hostname.present?
|
|
|
|
SiteSetting.force_hostname
|
|
|
|
else
|
|
|
|
RailsMultisite::ConnectionManagement.current_hostname
|
|
|
|
end
|
2013-05-30 18:41:29 -04:00
|
|
|
end
|
|
|
|
|
2013-11-05 13:04:47 -05:00
|
|
|
def self.base_uri(default_value = "")
|
2013-05-30 18:41:29 -04:00
|
|
|
if !ActionController::Base.config.relative_url_root.blank?
|
2013-11-05 13:04:47 -05:00
|
|
|
ActionController::Base.config.relative_url_root
|
2013-03-14 08:01:52 -04:00
|
|
|
else
|
2013-11-05 13:04:47 -05:00
|
|
|
default_value
|
2013-03-14 08:01:52 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-05-30 18:41:29 -04:00
|
|
|
def self.base_url_no_prefix
|
2013-05-30 18:48:34 -04:00
|
|
|
default_port = 80
|
2013-02-05 14:16:51 -05:00
|
|
|
protocol = "http"
|
2013-05-30 18:48:34 -04:00
|
|
|
|
2014-01-08 18:51:38 -05:00
|
|
|
if SiteSetting.use_https?
|
2013-05-30 18:48:34 -04:00
|
|
|
protocol = "https"
|
|
|
|
default_port = 443
|
2013-05-30 18:39:52 -04:00
|
|
|
end
|
2013-05-30 18:48:34 -04:00
|
|
|
|
|
|
|
result = "#{protocol}://#{current_hostname}"
|
|
|
|
|
|
|
|
port = SiteSetting.port.present? && SiteSetting.port.to_i > 0 ? SiteSetting.port.to_i : default_port
|
|
|
|
|
|
|
|
result << ":#{SiteSetting.port}" if port != default_port
|
2013-05-30 18:39:52 -04:00
|
|
|
result
|
2013-04-05 06:38:20 -04:00
|
|
|
end
|
|
|
|
|
2013-05-30 18:41:29 -04:00
|
|
|
def self.base_url
|
|
|
|
return base_url_no_prefix + base_uri
|
|
|
|
end
|
|
|
|
|
2014-02-12 23:37:28 -05:00
|
|
|
def self.enable_readonly_mode
|
|
|
|
$redis.set readonly_mode_key, 1
|
|
|
|
MessageBus.publish(readonly_channel, true)
|
2013-02-05 14:16:51 -05:00
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2014-02-12 23:37:28 -05:00
|
|
|
def self.disable_readonly_mode
|
|
|
|
$redis.del readonly_mode_key
|
|
|
|
MessageBus.publish(readonly_channel, false)
|
2013-02-05 14:16:51 -05:00
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2014-02-12 23:37:28 -05:00
|
|
|
def self.readonly_mode?
|
|
|
|
!!$redis.get(readonly_mode_key)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2014-02-21 00:52:11 -05:00
|
|
|
def self.request_refresh!
|
|
|
|
# Causes refresh on next click for all clients
|
|
|
|
#
|
|
|
|
# This is better than `MessageBus.publish "/file-change", ["refresh"]` because
|
|
|
|
# it spreads the refreshes out over a time period
|
|
|
|
MessageBus.publish '/global/asset-version', 'clobber'
|
|
|
|
end
|
|
|
|
|
2013-02-18 01:39:54 -05:00
|
|
|
def self.git_version
|
2013-02-25 11:42:20 -05:00
|
|
|
return $git_version if $git_version
|
2013-08-02 17:25:57 -04:00
|
|
|
|
|
|
|
# load the version stamped by the "build:stamp" task
|
|
|
|
f = Rails.root.to_s + "/config/version"
|
2013-02-18 02:00:49 -05:00
|
|
|
require f if File.exists?("#{f}.rb")
|
|
|
|
|
2013-02-18 01:39:54 -05:00
|
|
|
begin
|
2013-02-18 02:00:49 -05:00
|
|
|
$git_version ||= `git rev-parse HEAD`.strip
|
2013-02-18 01:39:54 -05:00
|
|
|
rescue
|
|
|
|
$git_version = "unknown"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-09-06 03:28:37 -04:00
|
|
|
# Either returns the site_contact_username user or the first admin.
|
|
|
|
def self.site_contact_user
|
2014-01-23 05:26:31 -05:00
|
|
|
user = User.where(username_lower: SiteSetting.site_contact_username.downcase).first if SiteSetting.site_contact_username.present?
|
2013-09-06 00:07:23 -04:00
|
|
|
user ||= User.admins.real.order(:id).first
|
2013-05-30 18:41:29 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-09-06 03:28:37 -04:00
|
|
|
def self.system_user
|
|
|
|
User.where(id: -1).first
|
|
|
|
end
|
|
|
|
|
2013-07-31 17:26:34 -04:00
|
|
|
def self.store
|
|
|
|
if SiteSetting.enable_s3_uploads?
|
|
|
|
@s3_store_loaded ||= require 'file_store/s3_store'
|
2013-11-05 13:04:47 -05:00
|
|
|
FileStore::S3Store.new
|
2013-07-31 17:26:34 -04:00
|
|
|
else
|
|
|
|
@local_store_loaded ||= require 'file_store/local_store'
|
2013-11-05 13:04:47 -05:00
|
|
|
FileStore::LocalStore.new
|
2013-07-31 17:26:34 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-10-09 00:10:37 -04:00
|
|
|
def self.current_user_provider
|
|
|
|
@current_user_provider || Auth::DefaultCurrentUserProvider
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.current_user_provider=(val)
|
|
|
|
@current_user_provider = val
|
|
|
|
end
|
|
|
|
|
2013-11-05 13:04:47 -05:00
|
|
|
def self.asset_host
|
|
|
|
Rails.configuration.action_controller.asset_host
|
|
|
|
end
|
|
|
|
|
2014-02-12 23:37:28 -05:00
|
|
|
def self.readonly_mode_key
|
|
|
|
"readonly_mode"
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2014-02-12 23:37:28 -05:00
|
|
|
def self.readonly_channel
|
2014-02-19 12:21:41 -05:00
|
|
|
"/site/read-only"
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2014-02-12 23:37:28 -05:00
|
|
|
|
2014-03-27 22:48:14 -04:00
|
|
|
# all forking servers must call this
|
|
|
|
# after fork, otherwise Discourse will be
|
|
|
|
# in a bad state
|
|
|
|
def self.after_fork
|
|
|
|
SiteSetting.after_fork
|
|
|
|
ActiveRecord::Base.establish_connection
|
|
|
|
$redis.client.reconnect
|
|
|
|
Rails.cache.reconnect
|
|
|
|
MessageBus.after_fork
|
|
|
|
# /!\ HACK /!\ force sidekiq to create a new connection to redis
|
|
|
|
Sidekiq.instance_variable_set(:@redis, nil)
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|