2013-05-30 18:41:29 -04:00
|
|
|
require 'cache'
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
module Discourse
|
|
|
|
|
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-07-29 01:13:13 -04:00
|
|
|
# Cross site request forgery
|
|
|
|
class CSRF < Exception; 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
|
|
|
|
|
|
|
|
def self.base_uri default_value=""
|
|
|
|
if !ActionController::Base.config.relative_url_root.blank?
|
|
|
|
return ActionController::Base.config.relative_url_root
|
2013-03-14 08:01:52 -04:00
|
|
|
else
|
2013-05-30 18:41:29 -04:00
|
|
|
return 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
|
|
|
|
|
|
|
if SiteSetting.use_ssl?
|
|
|
|
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
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def self.enable_maintenance_mode
|
|
|
|
$redis.set maintenance_mode_key, 1
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.disable_maintenance_mode
|
|
|
|
$redis.del maintenance_mode_key
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.maintenance_mode?
|
|
|
|
!!$redis.get( maintenance_mode_key )
|
|
|
|
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-02-18 02:00:49 -05:00
|
|
|
f = Rails.root.to_s + "/config/version"
|
|
|
|
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-05-30 18:41:29 -04:00
|
|
|
# Either returns the system_username user or the first admin.
|
|
|
|
def self.system_user
|
|
|
|
user = User.where(username_lower: SiteSetting.system_username).first if SiteSetting.system_username.present?
|
|
|
|
user = User.admins.order(:id).first if user.blank?
|
|
|
|
user
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def self.maintenance_mode_key
|
|
|
|
'maintenance_mode'
|
|
|
|
end
|
|
|
|
end
|