2019-05-02 18:17:27 -04:00
# frozen_string_literal: true
2013-05-30 18:41:29 -04:00
require 'cache'
2017-03-17 02:21:30 -04:00
require 'open3'
2017-12-21 16:29:11 -05:00
require_dependency 'route_format'
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'
2015-04-27 13:06:53 -04:00
require_dependency 'version'
2017-09-08 13:38:46 -04:00
require 'digest/sha1'
2013-05-30 18:41:29 -04:00
2015-07-14 14:52:35 -04:00
# Prevents errors with reloading dev with conditional includes
if Rails . env . development?
require_dependency 'file_store/s3_store'
require_dependency 'file_store/local_store'
end
2013-02-05 14:16:51 -05:00
module Discourse
2018-10-08 03:47:38 -04:00
DB_POST_MIGRATE_PATH || = " db/post_migrate "
2013-02-05 14:16:51 -05:00
2014-04-17 01:57:17 -04:00
require 'sidekiq/exception_handler'
2014-02-20 22:30:25 -05:00
class SidekiqExceptionHandler
extend Sidekiq :: ExceptionHandler
end
2017-03-17 02:21:30 -04:00
class Utils
2019-06-13 12:13:50 -04:00
def self . execute_command ( * command , failure_message : " " , success_status_codes : [ 0 ] , chdir : " . " )
stdout , stderr , status = Open3 . capture3 ( * command , chdir : chdir )
2017-03-17 02:21:30 -04:00
2019-02-11 08:38:42 -05:00
if ! status . exited? || ! success_status_codes . include? ( status . exitstatus )
2017-03-17 02:21:30 -04:00
failure_message = " #{ failure_message } \n " if ! failure_message . blank?
2018-08-17 04:17:07 -04:00
raise " #{ caller [ 0 ] } : #{ failure_message } #{ stderr } "
2017-03-17 02:21:30 -04:00
end
stdout
end
def self . pretty_logs ( logs )
logs . join ( " \n " . freeze )
end
end
2014-07-17 16:22:46 -04:00
# Log an exception.
#
2014-07-17 18:07:25 -04:00
# If your code is in a scheduled job, it is recommended to use the
# error_context() method in Jobs::Base to pass the job arguments and any
# other desired context.
2014-07-17 16:22:46 -04:00
# See app/jobs/base.rb for the error_context function.
2015-02-09 15:47:46 -05:00
def self . handle_job_exception ( ex , context = { } , parent_logger = nil )
2018-07-31 17:12:55 -04:00
return if ex . class == Jobs :: HandledExceptionWrapper
2014-02-20 22:30:25 -05:00
context || = { }
parent_logger || = SidekiqExceptionHandler
cm = RailsMultisite :: ConnectionManagement
parent_logger . handle_exception ( ex , {
current_db : cm . current_db ,
current_hostname : cm . current_hostname
} . merge ( context ) )
2019-04-08 10:57:47 -04:00
raise ex if Rails . env . test?
2014-02-20 22:30:25 -05:00
end
2013-06-18 20:31:19 -04:00
# Expected less matches than what we got in a find
2015-03-22 21:16:21 -04:00
class TooManyMatches < StandardError ; end
2013-06-18 20:31:19 -04:00
2013-02-25 11:42:20 -05:00
# When they try to do something they should be logged in for
2015-03-22 21:16:21 -04:00
class NotLoggedIn < StandardError ; end
2013-02-05 14:16:51 -05:00
# When the input is somehow bad
2015-03-22 21:16:21 -04:00
class InvalidParameters < StandardError ; end
2013-02-05 14:16:51 -05:00
# When they don't have permission to do something
2015-09-18 03:14:10 -04:00
class InvalidAccess < StandardError
2018-02-09 19:09:54 -05:00
attr_reader :obj , :custom_message , :opts
2017-09-23 10:39:58 -04:00
def initialize ( msg = nil , obj = nil , opts = nil )
2015-09-18 03:14:10 -04:00
super ( msg )
2017-09-23 10:39:58 -04:00
2018-02-09 19:09:54 -05:00
@opts = opts || { }
@custom_message = opts [ :custom_message ] if @opts [ :custom_message ]
2015-09-18 03:14:10 -04:00
@obj = obj
end
end
2013-02-05 14:16:51 -05:00
# When something they want is not found
2018-08-09 01:05:12 -04:00
class NotFound < StandardError
attr_reader :status
attr_reader :check_permalinks
attr_reader :original_path
def initialize ( message = nil , status : 404 , check_permalinks : false , original_path : nil )
@status = status
@check_permalinks = check_permalinks
@original_path = original_path
super ( message )
end
end
2013-02-05 14:16:51 -05:00
2013-06-04 18:34:53 -04:00
# When a setting is missing
2015-03-22 21:16:21 -04:00
class SiteSettingMissing < StandardError ; end
2013-06-04 18:34:53 -04:00
2013-11-05 13:04:47 -05:00
# When ImageMagick is missing
2015-03-22 21:16:21 -04:00
class ImageMagickMissing < StandardError ; end
2013-11-05 13:04:47 -05:00
2014-02-12 23:37:28 -05:00
# When read-only mode is enabled
2015-03-22 21:16:21 -04:00
class ReadOnly < StandardError ; end
2014-02-12 23:37:28 -05:00
2013-07-29 01:13:13 -04:00
# Cross site request forgery
2015-03-22 21:16:21 -04:00
class CSRF < StandardError ; end
2013-07-29 01:13:13 -04:00
2017-08-06 21:43:09 -04:00
class Deprecation < StandardError ; end
2019-02-07 09:27:42 -05:00
class ScssError < StandardError ; end
2013-12-23 18:50:36 -05:00
def self . filters
2015-07-27 02:46:50 -04:00
@filters || = [ :latest , :unread , :new , :read , :posted , :bookmarks ]
2013-12-23 18:50:36 -05:00
end
def self . anonymous_filters
2015-07-27 02:46:50 -04:00
@anonymous_filters || = [ :latest , :top , :categories ]
2013-12-23 18:50:36 -05:00
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
2016-04-06 04:57:59 -04:00
PIXEL_RATIOS || = [ 1 , 1 . 5 , 2 , 3 ]
2015-05-29 03:57:54 -04:00
2015-05-25 11:59:00 -04:00
def self . avatar_sizes
2015-05-29 03:57:54 -04:00
# TODO: should cache these when we get a notification system for site settings
set = Set . new
SiteSetting . avatar_sizes . split ( " | " ) . map ( & :to_i ) . each do | size |
PIXEL_RATIOS . each do | pixel_ratio |
2019-08-27 11:03:20 -04:00
set << ( size * pixel_ratio ) . to_i
2015-05-29 03:57:54 -04:00
end
end
2015-05-26 01:41:50 -04:00
set
2015-05-25 11:59:00 -04:00
end
2013-08-01 01:59:57 -04:00
def self . activate_plugins!
2015-04-27 13:06:53 -04:00
all_plugins = Plugin :: Instance . find_all ( " #{ Rails . root } /plugins " )
2017-09-08 13:38:46 -04:00
if Rails . env . development?
plugin_hash = Digest :: SHA1 . hexdigest ( all_plugins . map { | p | p . path } . sort . join ( '|' ) )
hash_file = " #{ Rails . root } /tmp/plugin-hash "
2018-03-28 04:20:08 -04:00
old_hash = begin
File . read ( hash_file )
rescue Errno :: ENOENT
end
2017-09-08 13:38:46 -04:00
if old_hash && old_hash != plugin_hash
puts " WARNING: It looks like your discourse plugins have recently changed. "
puts " It is highly recommended to remove your `tmp` directory, otherwise "
puts " plugins might not work. "
puts
else
File . write ( hash_file , plugin_hash )
end
end
2015-04-27 13:06:53 -04:00
@plugins = [ ]
all_plugins . each do | p |
v = p . metadata . required_version || Discourse :: VERSION :: STRING
if Discourse . has_needed_version? ( Discourse :: VERSION :: STRING , v )
p . activate!
@plugins << p
else
STDERR . puts " Could not activate #{ p . metadata . name } , discourse does not meet required version ( #{ v } ) "
end
end
2013-08-01 01:59:57 -04:00
end
2015-02-04 16:23:39 -05:00
def self . disabled_plugin_names
2016-06-30 10:55:01 -04:00
plugins . select { | p | ! p . enabled? } . map ( & :name )
2015-02-04 16:23:39 -05:00
end
2013-08-01 01:59:57 -04:00
def self . plugins
2015-02-10 11:18:16 -05:00
@plugins || = [ ]
2013-08-01 01:59:57 -04:00
end
2018-05-08 01:24:58 -04:00
def self . hidden_plugins
@hidden_plugins || = [ ]
end
2018-05-08 19:52:21 -04:00
def self . visible_plugins
2018-05-08 01:24:58 -04:00
self . plugins - self . hidden_plugins
end
2017-01-12 15:43:09 -05:00
def self . plugin_themes
@plugin_themes || = plugins . map ( & :themes ) . flatten
end
2016-11-14 19:42:55 -05:00
def self . official_plugins
2017-07-27 21:20:09 -04:00
plugins . find_all { | p | p . metadata . official? }
2016-11-14 19:42:55 -05:00
end
def self . unofficial_plugins
2017-07-27 21:20:09 -04:00
plugins . find_all { | p | ! p . metadata . official? }
2016-11-14 19:42:55 -05:00
end
2019-07-15 10:52:54 -04:00
def self . find_plugins ( args )
plugins . select do | plugin |
next if args [ :include_official ] == false && plugin . metadata . official?
next if args [ :include_unofficial ] == false && ! plugin . metadata . official?
next if args [ :include_disabled ] == false && ! plugin . enabled?
true
end
end
2019-08-20 12:39:52 -04:00
def self . find_plugin_css_assets ( args )
2019-08-21 23:09:10 -04:00
plugins = self . find_plugins ( args )
assets = plugins . find_all do | plugin |
2019-08-20 12:39:52 -04:00
plugin . css_asset_exists?
end . map { | plugin | plugin . directory_name }
2019-08-21 23:09:10 -04:00
target = args [ :mobile_view ] ? :mobile : :desktop
assets += plugins . find_all do | plugin |
plugin . css_asset_exists? ( target )
end . map { | plugin | " #{ plugin . directory_name } _ #{ target } " }
assets
2019-08-20 12:39:52 -04:00
end
2019-07-15 10:52:54 -04:00
def self . find_plugin_js_assets ( args )
self . find_plugins ( args ) . find_all do | plugin |
plugin . js_asset_exists?
2019-08-20 12:39:52 -04:00
end . map { | plugin | " plugins/ #{ plugin . directory_name } " }
2019-07-15 10:52:54 -04:00
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 "
2015-05-03 22:21:00 -04:00
message = MessageBus . last_message ( channel )
2014-01-14 20:07:42 -05:00
unless message && message . data == digest
2015-05-03 22:21:00 -04:00
MessageBus . publish channel , digest
2014-01-14 20:07:42 -05:00
end
digest
end
end
2018-08-09 11:29:02 -04:00
BUILTIN_AUTH || = [
2019-03-27 09:25:04 -04:00
Auth :: AuthProvider . new ( authenticator : Auth :: FacebookAuthenticator . new , frame_width : 580 , frame_height : 400 , icon : " fab-facebook " ) ,
Auth :: AuthProvider . new ( authenticator : Auth :: GoogleOAuth2Authenticator . new , frame_width : 850 , frame_height : 500 ) , # Custom icon implemented in client
Auth :: AuthProvider . new ( authenticator : Auth :: GithubAuthenticator . new , icon : " fab-github " ) ,
Auth :: AuthProvider . new ( authenticator : Auth :: TwitterAuthenticator . new , icon : " fab-twitter " ) ,
Auth :: AuthProvider . new ( authenticator : Auth :: InstagramAuthenticator . new , icon : " fab-instagram " )
2018-07-31 11:18:50 -04:00
]
def self . auth_providers
BUILTIN_AUTH + DiscoursePluginRegistry . auth_providers . to_a
end
def self . enabled_auth_providers
auth_providers . select { | provider | provider . authenticator . enabled? }
end
2013-08-25 21:04:16 -04:00
def self . authenticators
# NOTE: this bypasses the site settings and gives a list of everything, we need to register every middleware
# for the cases of multisite
2018-07-31 11:18:50 -04:00
auth_providers . map ( & :authenticator )
2013-08-25 21:04:16 -04:00
end
2018-07-23 11:51:57 -04:00
def self . enabled_authenticators
authenticators . select { | authenticator | authenticator . enabled? }
2013-08-01 01:59:57 -04:00
end
2013-05-30 18:41:29 -04:00
def self . cache
2019-06-12 22:58:27 -04:00
@cache || = begin
if GlobalSetting . skip_redis?
ActiveSupport :: Cache :: MemoryStore . new
else
Cache . new
end
end
2013-05-30 18:41:29 -04:00
end
2013-02-05 14:16:51 -05:00
# Get the current base URL for the current site
def self . current_hostname
2016-06-30 10:55:01 -04:00
SiteSetting . force_hostname . presence || RailsMultisite :: ConnectionManagement . current_hostname
2013-05-30 18:41:29 -04:00
end
2013-11-05 13:04:47 -05:00
def self . base_uri ( default_value = " " )
2016-06-30 10:55:01 -04:00
ActionController :: Base . config . relative_url_root . presence || default_value
2013-03-14 08:01:52 -04:00
end
2016-07-28 13:54:17 -04:00
def self . base_protocol
SiteSetting . force_https? ? " https " : " http "
end
2013-05-30 18:41:29 -04:00
def self . base_url_no_prefix
2016-07-28 13:54:17 -04:00
default_port = SiteSetting . force_https? ? 443 : 80
2019-05-02 18:17:27 -04:00
url = + " #{ base_protocol } :// #{ current_hostname } "
2016-06-30 10:55:01 -04:00
url << " : #{ SiteSetting . port } " if SiteSetting . port . to_i > 0 && SiteSetting . port . to_i != default_port
2019-05-06 01:26:57 -04:00
if Rails . env . development? && SiteSetting . port . blank?
url << " : #{ ENV [ " UNICORN_PORT " ] || 3000 } "
end
2016-06-30 10:55:01 -04:00
url
2013-04-05 06:38:20 -04:00
end
2013-05-30 18:41:29 -04:00
def self . base_url
2015-09-21 14:28:20 -04:00
base_url_no_prefix + base_uri
2013-05-30 18:41:29 -04:00
end
2017-07-19 15:08:54 -04:00
def self . route_for ( uri )
2018-03-28 04:20:08 -04:00
unless uri . is_a? ( URI )
uri = begin
URI ( uri )
2018-08-14 06:23:32 -04:00
rescue URI :: Error
2018-03-28 04:20:08 -04:00
end
end
2017-07-19 15:08:54 -04:00
return unless uri
2019-05-02 18:17:27 -04:00
path = + ( uri . path || " " )
2018-02-13 18:39:44 -05:00
if ! uri . host || ( uri . host == Discourse . current_hostname && path . start_with? ( Discourse . base_uri ) )
2017-07-19 15:08:54 -04:00
path . slice! ( Discourse . base_uri )
return Rails . application . routes . recognize_path ( path )
end
2017-07-20 16:01:16 -04:00
nil
rescue ActionController :: RoutingError
2017-07-19 15:08:54 -04:00
nil
end
2018-11-06 08:17:13 -05:00
class << self
alias_method :base_path , :base_uri
alias_method :base_url_no_path , :base_url_no_prefix
end
2017-01-11 05:03:36 -05:00
READONLY_MODE_KEY_TTL || = 60
2019-05-02 18:17:27 -04:00
READONLY_MODE_KEY || = 'readonly_mode'
PG_READONLY_MODE_KEY || = 'readonly_mode:postgres'
USER_READONLY_MODE_KEY || = 'readonly_mode:user'
2016-06-29 02:19:18 -04:00
2017-01-11 05:03:36 -05:00
READONLY_KEYS || = [
2017-01-11 03:38:07 -05:00
READONLY_MODE_KEY ,
PG_READONLY_MODE_KEY ,
USER_READONLY_MODE_KEY
]
def self . enable_readonly_mode ( key = READONLY_MODE_KEY )
if key == USER_READONLY_MODE_KEY
$redis . set ( key , 1 )
2016-06-29 02:19:18 -04:00
else
2017-01-11 03:38:07 -05:00
$redis . setex ( key , READONLY_MODE_KEY_TTL , 1 )
2019-02-19 21:01:18 -05:00
keep_readonly_mode ( key ) if ! Rails . env . test?
2016-06-29 02:19:18 -04:00
end
2016-06-29 01:55:17 -04:00
2015-05-03 22:21:00 -04:00
MessageBus . publish ( readonly_channel , true )
2018-12-17 22:56:25 -05:00
Site . clear_anon_cache!
2013-02-05 14:16:51 -05:00
true
end
2017-01-11 03:38:07 -05:00
def self . keep_readonly_mode ( key )
2015-02-11 15:50:17 -05:00
# extend the expiry by 1 minute every 30 seconds
2019-02-19 21:01:18 -05:00
@mutex || = Mutex . new
@mutex . synchronize do
2018-06-19 03:44:08 -04:00
@dbs || = Set . new
@dbs << RailsMultisite :: ConnectionManagement . current_db
2018-06-18 22:15:29 -04:00
@threads || = { }
2018-06-19 03:44:08 -04:00
unless @threads [ key ] & . alive?
2018-06-18 22:15:29 -04:00
@threads [ key ] = Thread . new do
2019-02-19 21:01:18 -05:00
while @dbs . size > 0 do
2018-06-21 05:52:42 -04:00
sleep 30
2019-02-19 21:01:18 -05:00
@mutex . synchronize do
@dbs . each do | db |
RailsMultisite :: ConnectionManagement . with_connection ( db ) do
if ! $redis . expire ( key , READONLY_MODE_KEY_TTL )
@dbs . delete ( db )
end
2018-06-19 03:44:08 -04:00
end
end
end
2018-06-18 22:15:29 -04:00
end
2016-11-10 10:44:51 -05:00
end
2015-02-11 15:50:17 -05:00
end
end
end
2017-01-11 03:38:07 -05:00
def self . disable_readonly_mode ( key = READONLY_MODE_KEY )
2016-06-29 02:19:18 -04:00
$redis . del ( key )
2015-05-03 22:21:00 -04:00
MessageBus . publish ( readonly_channel , false )
2018-12-17 04:27:44 -05:00
Site . clear_anon_cache!
2013-02-05 14:16:51 -05:00
true
end
2018-06-11 12:21:29 -04:00
def self . readonly_mode? ( keys = READONLY_KEYS )
recently_readonly? || $redis . mget ( * keys ) . compact . present?
2017-01-11 03:38:07 -05:00
end
2019-01-21 00:29:29 -05:00
def self . pg_readonly_mode?
$redis . get ( PG_READONLY_MODE_KEY ) . present?
end
2019-06-21 10:08:57 -04:00
# Shared between processes
def self . postgres_last_read_only
@postgres_last_read_only || = DistributedCache . new ( 'postgres_last_read_only' , namespace : false )
end
# Per-process
def self . redis_last_read_only
@redis_last_read_only || = { }
2017-01-11 03:38:07 -05:00
end
def self . recently_readonly?
2019-06-21 10:08:57 -04:00
postgres_read_only = postgres_last_read_only [ $redis . namespace ]
redis_read_only = redis_last_read_only [ $redis . namespace ]
( redis_read_only . present? && redis_read_only > 15 . seconds . ago ) ||
( postgres_read_only . present? && postgres_read_only > 15 . seconds . ago )
2017-01-11 03:38:07 -05:00
end
2019-06-21 10:08:57 -04:00
def self . received_postgres_readonly!
postgres_last_read_only [ $redis . namespace ] = Time . zone . now
end
def self . received_redis_readonly!
redis_last_read_only [ $redis . namespace ] = Time . zone . now
2017-01-11 03:38:07 -05:00
end
def self . clear_readonly!
2019-06-21 10:08:57 -04:00
postgres_last_read_only [ $redis . namespace ] = redis_last_read_only [ $redis . namespace ] = nil
2019-01-21 20:51:45 -05:00
Site . clear_anon_cache!
true
2013-02-05 14:16:51 -05:00
end
2017-08-15 22:38:30 -04:00
def self . request_refresh! ( user_ids : nil )
2014-02-21 00:52:11 -05:00
# Causes refresh on next click for all clients
#
2015-05-03 22:21:00 -04:00
# This is better than `MessageBus.publish "/file-change", ["refresh"]` because
2014-02-21 00:52:11 -05:00
# it spreads the refreshes out over a time period
2017-08-15 22:38:30 -04:00
if user_ids
2017-08-16 00:06:47 -04:00
MessageBus . publish ( " /refresh_client " , 'clobber' , user_ids : user_ids )
2017-08-15 22:38:30 -04:00
else
MessageBus . publish ( '/global/asset-version' , 'clobber' )
end
2014-02-21 00:52:11 -05:00
end
2017-10-03 23:22:23 -04:00
def self . ensure_version_file_loaded
unless @version_file_loaded
version_file = " #{ Rails . root } /config/version.rb "
require version_file if File . exists? ( version_file )
@version_file_loaded = true
end
end
2013-08-02 17:25:57 -04:00
2017-10-03 23:22:23 -04:00
def self . git_version
ensure_version_file_loaded
$git_version || =
begin
git_cmd = 'git rev-parse HEAD'
self . try_git ( git_cmd , Discourse :: VERSION :: STRING )
end
2013-02-18 01:39:54 -05:00
end
2014-09-09 17:04:10 -04:00
def self . git_branch
2017-10-03 23:22:23 -04:00
ensure_version_file_loaded
$git_branch || =
begin
git_cmd = 'git rev-parse --abbrev-ref HEAD'
self . try_git ( git_cmd , 'unknown' )
end
2017-08-28 12:24:56 -04:00
end
def self . full_version
2017-10-03 23:22:23 -04:00
ensure_version_file_loaded
$full_version || =
begin
git_cmd = 'git describe --dirty --match "v[0-9]*"'
self . try_git ( git_cmd , 'unknown' )
end
2017-08-28 12:24:56 -04:00
end
2019-05-17 01:42:45 -04:00
def self . last_commit_date
ensure_version_file_loaded
$last_commit_date || =
begin
git_cmd = 'git log -1 --format="%ct"'
seconds = self . try_git ( git_cmd , nil )
seconds . nil? ? nil : DateTime . strptime ( seconds , '%s' )
end
end
2017-10-03 23:22:23 -04:00
def self . try_git ( git_cmd , default_value )
2017-08-28 12:24:56 -04:00
version_value = false
2014-09-09 17:04:10 -04:00
2017-10-03 23:22:23 -04:00
begin
version_value = ` #{ git_cmd } ` . strip
rescue
version_value = default_value
2014-09-09 17:04:10 -04:00
end
2017-08-28 12:24:56 -04:00
if version_value . empty?
version_value = default_value
end
version_value
2014-09-09 17:04:10 -04:00
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-05-06 09:41:59 -04:00
user = User . find_by ( username_lower : SiteSetting . site_contact_username . downcase ) if SiteSetting . site_contact_username . present?
2015-11-24 14:37:33 -05:00
user || = ( system_user || User . admins . real . order ( :id ) . first )
2013-05-30 18:41:29 -04:00
end
2013-02-05 14:16:51 -05:00
2015-05-06 19:00:13 -04:00
SYSTEM_USER_ID || = - 1
2014-06-24 20:45:20 -04:00
2013-09-06 03:28:37 -04:00
def self . system_user
2016-04-25 17:03:17 -04:00
@system_user || = User . find_by ( id : SYSTEM_USER_ID )
2013-09-06 03:28:37 -04:00
end
2013-07-31 17:26:34 -04:00
def self . store
2017-10-06 01:20:01 -04:00
if SiteSetting . Upload . enable_s3_uploads
2013-07-31 17:26:34 -04:00
@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
2019-04-17 03:15:04 -04:00
def self . stats
2019-05-01 14:04:18 -04:00
PluginStore . new ( " stats " )
2019-04-17 03:15:04 -04:00
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_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
2018-06-14 04:22:02 -04:00
# note: some of this reconnecting may no longer be needed per https://github.com/redis/redis-rb/pull/414
2015-05-03 22:21:00 -04:00
MessageBus . after_fork
2014-03-27 22:48:14 -04:00
SiteSetting . after_fork
2018-04-20 01:01:17 -04:00
$redis . _client . reconnect
2014-03-27 22:48:14 -04:00
Rails . cache . reconnect
2014-05-07 18:05:28 -04:00
Logster . store . redis . reconnect
2014-04-22 21:01:17 -04:00
# shuts down all connections in the pool
2017-07-27 21:20:09 -04:00
Sidekiq . redis_pool . shutdown { | c | nil }
2014-04-22 21:01:17 -04:00
# re-establish
Sidekiq . redis = sidekiq_redis_config
2014-08-11 03:51:55 -04:00
start_connection_reaper
2016-07-16 01:11:34 -04:00
# in case v8 was initialized we want to make sure it is nil
PrettyText . reset_context
2016-11-01 22:34:20 -04:00
2016-11-02 01:59:58 -04:00
Tilt :: ES6ModuleTranspilerTemplate . reset_context if defined? Tilt :: ES6ModuleTranspilerTemplate
2016-11-01 22:34:20 -04:00
JsLocaleHelper . reset_context if defined? JsLocaleHelper
2014-05-07 18:05:28 -04:00
nil
2014-04-22 21:01:17 -04:00
end
2018-08-12 23:14:34 -04:00
# you can use Discourse.warn when you want to report custom environment
# with the error, this helps with grouping
def self . warn ( message , env = nil )
append = env ? ( + " " ) << env . map { | k , v | " #{ k } : #{ v } " } . join ( " " ) : " "
if ! ( Logster :: Logger === Rails . logger )
Rails . logger . warn ( " #{ message } #{ append } " )
return
end
loggers = [ Rails . logger ]
if Rails . logger . chained
loggers . concat ( Rails . logger . chained )
end
2018-08-13 02:33:06 -04:00
logster_env = env
2018-08-12 23:14:34 -04:00
if old_env = Thread . current [ Logster :: Logger :: LOGSTER_ENV ]
2018-08-13 02:33:06 -04:00
logster_env = Logster :: Message . populate_from_env ( old_env )
# a bit awkward by try to keep the new params
env . each do | k , v |
logster_env [ k ] = v
end
2018-08-12 23:14:34 -04:00
end
loggers . each do | logger |
if ! ( Logster :: Logger === logger )
logger . warn ( " #{ message } #{ append } " )
next
end
logger . store . report (
:: Logger :: Severity :: WARN ,
" discourse " ,
message ,
2018-08-13 02:33:06 -04:00
env : logster_env
2018-08-12 23:14:34 -04:00
)
end
2018-08-13 02:33:06 -04:00
if old_env
env . each do | k , v |
# do not leak state
logster_env . delete ( k )
end
end
nil
2018-08-12 23:14:34 -04:00
end
2017-12-01 00:23:21 -05:00
# report a warning maintaining backtrack for logster
def self . warn_exception ( e , message : " " , env : nil )
if Rails . logger . respond_to? :add_with_opts
2018-01-04 17:54:28 -05:00
env || = { }
env [ :current_db ] || = RailsMultisite :: ConnectionManagement . current_db
2017-12-01 00:23:21 -05:00
# logster
Rails . logger . add_with_opts (
:: Logger :: Severity :: WARN ,
" #{ message } : #{ e } " ,
" discourse-exception " ,
backtrace : e . backtrace . join ( " \n " ) ,
env : env
)
else
# no logster ... fallback
Rails . logger . warn ( " #{ message } #{ e } " )
end
rescue
STDERR . puts " Failed to report exception #{ e } #{ message } "
end
2015-02-16 17:58:23 -05:00
def self . start_connection_reaper
return if GlobalSetting . connection_reaper_age < 1 ||
GlobalSetting . connection_reaper_interval < 1
2014-08-11 03:51:55 -04:00
# this helps keep connection counts in check
Thread . new do
while true
2015-02-16 17:58:23 -05:00
begin
sleep GlobalSetting . connection_reaper_interval
2018-06-14 04:22:02 -04:00
reap_connections ( GlobalSetting . connection_reaper_age )
2015-02-16 17:58:23 -05:00
rescue = > e
2017-12-01 00:23:21 -05:00
Discourse . warn_exception ( e , message : " Error reaping connections " )
2014-08-11 03:51:55 -04:00
end
end
end
end
2018-06-14 04:22:02 -04:00
def self . reap_connections ( idle )
2015-02-16 17:58:23 -05:00
pools = [ ]
2017-07-27 21:20:09 -04:00
ObjectSpace . each_object ( ActiveRecord :: ConnectionAdapters :: ConnectionPool ) { | pool | pools << pool }
2015-02-16 17:58:23 -05:00
pools . each do | pool |
2018-06-14 01:54:48 -04:00
# reap recovers connections that were aborted
# eg a thread died or a dev forgot to check it in
2018-06-14 04:22:02 -04:00
# flush removes idle connections
# after fork we have "deadpools" so ignore them, they have been discarded
# so @connections is set to nil
if pool . connections
pool . reap
2018-06-14 06:53:24 -04:00
pool . flush ( idle )
2018-06-14 04:22:02 -04:00
end
2015-02-16 17:58:23 -05:00
end
end
2019-01-03 12:03:01 -05:00
def self . deprecate ( warning , drop_from : nil , since : nil , raise_error : false , output_in_test : false )
2018-12-06 06:38:01 -05:00
location = caller_locations [ 1 ] . yield_self { | l | " #{ l . path } : #{ l . lineno } :in \ ` #{ l . label } \ ` " }
warning = [ " Deprecation notice: " , warning ]
warning << " (deprecated since Discourse #{ since } ) " if since
warning << " (removal in Discourse #{ drop_from } ) " if drop_from
warning << " \n At #{ location } "
warning = warning . join ( " " )
if raise_error
raise Deprecation . new ( warning )
end
2018-06-20 03:50:11 -04:00
if Rails . env == " development "
STDERR . puts ( warning )
end
2019-01-03 12:03:01 -05:00
if output_in_test && Rails . env == " test "
STDERR . puts ( warning )
end
2018-06-20 03:50:11 -04:00
digest = Digest :: MD5 . hexdigest ( warning )
redis_key = " deprecate-notice- #{ digest } "
if ! $redis . without_namespace . get ( redis_key )
Rails . logger . warn ( warning )
2019-06-21 10:08:57 -04:00
begin
$redis . without_namespace . setex ( redis_key , 3600 , " x " )
rescue Redis :: CommandError = > e
raise unless e . message =~ / READONLY /
end
2018-06-20 03:50:11 -04:00
end
warning
end
2016-12-04 22:46:34 -05:00
SIDEKIQ_NAMESPACE || = 'sidekiq' . freeze
2014-04-22 21:01:17 -04:00
def self . sidekiq_redis_config
2015-06-25 02:51:48 -04:00
conf = GlobalSetting . redis_config . dup
2016-12-04 22:46:34 -05:00
conf [ :namespace ] = SIDEKIQ_NAMESPACE
2015-06-25 02:51:48 -04:00
conf
2014-03-27 22:48:14 -04:00
end
2014-07-29 10:40:02 -04:00
def self . static_doc_topic_ids
[ SiteSetting . tos_topic_id , SiteSetting . guidelines_topic_id , SiteSetting . privacy_topic_id ]
end
2017-02-17 12:09:53 -05:00
cattr_accessor :last_ar_cache_reset
def self . reset_active_record_cache_if_needed ( e )
last_cache_reset = Discourse . last_ar_cache_reset
2017-07-27 21:20:09 -04:00
if e && e . message =~ / UndefinedColumn / && ( last_cache_reset . nil? || last_cache_reset < 30 . seconds . ago )
2018-01-18 16:32:15 -05:00
Rails . logger . warn " Clearing Active Record cache, this can happen if schema changed while site is running or in a multisite various databases are running different schemas. Consider running rake multisite:migrate. "
2017-02-17 12:09:53 -05:00
Discourse . last_ar_cache_reset = Time . zone . now
Discourse . reset_active_record_cache
end
end
def self . reset_active_record_cache
ActiveRecord :: Base . connection . query_cache . clear
2017-08-17 06:27:35 -04:00
( ActiveRecord :: Base . connection . tables - %w[ schema_migrations versions ] ) . each do | table |
2017-02-17 12:09:53 -05:00
table . classify . constantize . reset_column_information rescue nil
end
nil
end
2017-11-15 16:39:11 -05:00
def self . running_in_rack?
ENV [ " DISCOURSE_RUNNING_IN_RACK " ] == " 1 "
end
2018-10-09 01:11:45 -04:00
def self . skip_post_deployment_migrations?
[ '1' , 'true' ] . include? ( ENV [ " SKIP_POST_DEPLOYMENT_MIGRATIONS " ] & . to_s )
end
2013-02-05 14:16:51 -05:00
end