2019-06-17 14:51:17 -04:00
|
|
|
# coding: utf-8
|
2018-06-05 03:29:17 -04:00
|
|
|
# frozen_string_literal: true
|
2013-02-05 14:16:51 -05:00
|
|
|
require 'current_user'
|
2013-02-13 06:04:43 -05:00
|
|
|
require 'canonical_url'
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
module ApplicationHelper
|
|
|
|
include CurrentUser
|
2013-02-13 06:04:43 -05:00
|
|
|
include CanonicalURL::Helpers
|
2013-05-01 11:48:42 -04:00
|
|
|
include ConfigurableUrls
|
2015-03-09 15:24:16 -04:00
|
|
|
include GlobalPath
|
2017-09-28 13:16:51 -04:00
|
|
|
|
2017-09-29 11:04:05 -04:00
|
|
|
def self.extra_body_classes
|
|
|
|
@extra_body_classes ||= Set.new
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
def google_universal_analytics_json(ua_domain_name = nil)
|
2016-08-02 14:54:06 -04:00
|
|
|
result = {}
|
|
|
|
if ua_domain_name
|
|
|
|
result[:cookieDomain] = ua_domain_name.gsub(/^http(s)?:\/\//, '')
|
|
|
|
end
|
2015-04-07 13:09:49 -04:00
|
|
|
if current_user.present?
|
|
|
|
result[:userId] = current_user.id
|
|
|
|
end
|
2017-07-13 15:21:44 -04:00
|
|
|
if SiteSetting.ga_universal_auto_link_domains.present?
|
|
|
|
result[:allowLinker] = true
|
|
|
|
end
|
2018-09-10 02:10:20 -04:00
|
|
|
result.to_json
|
2015-04-07 13:09:49 -04:00
|
|
|
end
|
|
|
|
|
2016-07-14 13:52:37 -04:00
|
|
|
def ga_universal_json
|
|
|
|
google_universal_analytics_json(SiteSetting.ga_universal_domain_name)
|
|
|
|
end
|
|
|
|
|
|
|
|
def google_tag_manager_json
|
2016-08-02 14:54:06 -04:00
|
|
|
google_universal_analytics_json
|
2016-07-14 13:52:37 -04:00
|
|
|
end
|
|
|
|
|
2014-10-23 22:38:00 -04:00
|
|
|
def shared_session_key
|
|
|
|
if SiteSetting.long_polling_base_url != '/'.freeze && current_user
|
|
|
|
sk = "shared_session_key"
|
|
|
|
return request.env[sk] if request.env[sk]
|
|
|
|
|
|
|
|
request.env[sk] = key = (session[sk] ||= SecureRandom.hex)
|
|
|
|
$redis.setex "#{sk}_#{key}", 7.days, current_user.id.to_s
|
|
|
|
key
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-06 01:20:01 -04:00
|
|
|
def is_brotli_req?
|
|
|
|
request.env["HTTP_ACCEPT_ENCODING"] =~ /br/
|
|
|
|
end
|
|
|
|
|
2019-07-16 10:05:37 -04:00
|
|
|
def is_gzip_req?
|
|
|
|
request.env["HTTP_ACCEPT_ENCODING"] =~ /gzip/
|
|
|
|
end
|
|
|
|
|
2018-11-15 16:13:18 -05:00
|
|
|
def script_asset_path(script)
|
2017-04-17 11:52:43 -04:00
|
|
|
path = asset_path("#{script}.js")
|
|
|
|
|
2017-10-06 01:20:01 -04:00
|
|
|
if GlobalSetting.use_s3? && GlobalSetting.s3_cdn_url
|
|
|
|
if GlobalSetting.cdn_url
|
2019-06-17 14:51:17 -04:00
|
|
|
folder = ActionController::Base.config.relative_url_root || "/"
|
|
|
|
path = path.gsub(File.join(GlobalSetting.cdn_url, folder, "/"), File.join(GlobalSetting.s3_cdn_url, "/"))
|
2017-10-06 01:20:01 -04:00
|
|
|
else
|
2018-08-21 22:31:13 -04:00
|
|
|
# we must remove the subfolder path here, assets are uploaded to s3
|
|
|
|
# without it getting involved
|
|
|
|
if ActionController::Base.config.relative_url_root
|
|
|
|
path = path.sub(ActionController::Base.config.relative_url_root, "")
|
|
|
|
end
|
|
|
|
|
2017-10-06 01:20:01 -04:00
|
|
|
path = "#{GlobalSetting.s3_cdn_url}#{path}"
|
|
|
|
end
|
|
|
|
|
|
|
|
if is_brotli_req?
|
2018-06-05 03:29:17 -04:00
|
|
|
path = path.gsub(/\.([^.]+)$/, '.br.\1')
|
2019-07-16 10:05:37 -04:00
|
|
|
elsif is_gzip_req?
|
|
|
|
path = path.gsub(/\.([^.]+)$/, '.gz.\1')
|
2017-10-06 01:20:01 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
elsif GlobalSetting.cdn_url&.start_with?("https") && is_brotli_req?
|
2018-06-05 03:29:17 -04:00
|
|
|
path = path.gsub("#{GlobalSetting.cdn_url}/assets/", "#{GlobalSetting.cdn_url}/brotli_asset/")
|
2014-05-18 18:46:09 -04:00
|
|
|
end
|
2017-10-06 01:20:01 -04:00
|
|
|
|
2018-05-06 21:25:05 -04:00
|
|
|
if Rails.env == "development"
|
|
|
|
if !path.include?("?")
|
|
|
|
# cache breaker for mobile iOS
|
|
|
|
path = path + "?#{Time.now.to_f}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-15 16:13:18 -05:00
|
|
|
path
|
|
|
|
end
|
|
|
|
|
|
|
|
def preload_script(script)
|
|
|
|
path = script_asset_path(script)
|
|
|
|
|
2017-04-17 11:52:43 -04:00
|
|
|
"<link rel='preload' href='#{path}' as='script'/>
|
|
|
|
<script src='#{path}'></script>".html_safe
|
2014-05-14 22:59:26 -04:00
|
|
|
end
|
|
|
|
|
2013-05-03 02:43:11 -04:00
|
|
|
def discourse_csrf_tags
|
|
|
|
# anon can not have a CSRF token cause these are all pages
|
2013-06-05 18:23:43 -04:00
|
|
|
# that may be cached, causing a mismatch between session CSRF
|
2013-05-03 02:43:11 -04:00
|
|
|
# and CSRF on page and horrible impossible to debug login issues
|
|
|
|
if current_user
|
|
|
|
csrf_meta_tags
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-12-18 14:47:22 -05:00
|
|
|
def html_classes
|
2019-01-14 08:21:46 -05:00
|
|
|
list = []
|
|
|
|
list << (mobile_view? ? 'mobile-view' : 'desktop-view')
|
|
|
|
list << (mobile_device? ? 'mobile-device' : 'not-mobile-device')
|
2019-05-07 10:44:43 -04:00
|
|
|
list << 'ios-device' if ios_device?
|
2019-01-14 08:21:46 -05:00
|
|
|
list << 'rtl' if rtl?
|
|
|
|
list << text_size_class
|
2019-01-22 23:43:36 -05:00
|
|
|
list << 'anon' unless current_user
|
2019-01-14 08:21:46 -05:00
|
|
|
list.join(' ')
|
2014-08-27 07:38:03 -04:00
|
|
|
end
|
|
|
|
|
2016-07-04 12:10:52 -04:00
|
|
|
def body_classes
|
2017-09-28 13:16:51 -04:00
|
|
|
result = ApplicationHelper.extra_body_classes.to_a
|
2017-06-15 14:20:04 -04:00
|
|
|
|
2016-07-04 12:10:52 -04:00
|
|
|
if @category && @category.url.present?
|
2017-06-15 14:20:04 -04:00
|
|
|
result << "category-#{@category.url.sub(/^\/c\//, '').gsub(/\//, '-')}"
|
|
|
|
end
|
|
|
|
|
2019-03-26 02:59:05 -04:00
|
|
|
if current_user.present? &&
|
|
|
|
current_user.primary_group_id &&
|
|
|
|
primary_group_name = Group.where(id: current_user.primary_group_id).pluck(:name).first
|
2017-06-15 14:20:04 -04:00
|
|
|
result << "primary-group-#{primary_group_name.downcase}"
|
2016-07-04 12:10:52 -04:00
|
|
|
end
|
2017-06-15 14:20:04 -04:00
|
|
|
|
|
|
|
result.join(' ')
|
2016-07-04 12:10:52 -04:00
|
|
|
end
|
|
|
|
|
2019-01-14 08:21:46 -05:00
|
|
|
def text_size_class
|
2019-01-28 06:19:50 -05:00
|
|
|
requested_cookie_size, cookie_seq = cookies[:text_size]&.split("|")
|
|
|
|
server_seq = current_user&.user_option&.text_size_seq
|
|
|
|
if cookie_seq && server_seq && cookie_seq.to_i >= server_seq &&
|
|
|
|
UserOption.text_sizes.keys.include?(requested_cookie_size&.to_sym)
|
|
|
|
cookie_size = requested_cookie_size
|
|
|
|
end
|
|
|
|
|
2019-01-25 10:06:06 -05:00
|
|
|
size = cookie_size || current_user&.user_option&.text_size || SiteSetting.default_text_size
|
2019-01-14 08:21:46 -05:00
|
|
|
"text-size-#{size}"
|
2013-12-18 14:47:22 -05:00
|
|
|
end
|
|
|
|
|
2013-07-02 20:43:52 -04:00
|
|
|
def escape_unicode(javascript)
|
|
|
|
if javascript
|
2013-12-29 22:05:25 -05:00
|
|
|
javascript = javascript.scrub
|
2013-09-10 02:01:36 -04:00
|
|
|
javascript.gsub!(/\342\200\250/u, '
')
|
|
|
|
javascript.gsub!(/(<\/)/u, '\u003C/')
|
2018-09-17 04:31:46 -04:00
|
|
|
javascript
|
2013-07-02 20:43:52 -04:00
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-08 09:38:23 -05:00
|
|
|
def format_topic_title(title)
|
2016-11-22 12:37:22 -05:00
|
|
|
PrettyText.unescape_emoji strip_tags(title)
|
2015-10-15 03:59:29 -04:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def with_format(format, &block)
|
|
|
|
old_formats = formats
|
|
|
|
self.formats = [format]
|
|
|
|
block.call
|
|
|
|
self.formats = old_formats
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def age_words(secs)
|
|
|
|
AgeWords.age_words(secs)
|
|
|
|
end
|
|
|
|
|
2016-11-10 18:16:24 -05:00
|
|
|
def short_date(dt)
|
|
|
|
if dt.year == Time.now.year
|
|
|
|
I18n.l(dt, format: :short_no_year)
|
|
|
|
else
|
|
|
|
I18n.l(dt, format: :date_only)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def guardian
|
|
|
|
@guardian ||= Guardian.new(current_user)
|
|
|
|
end
|
|
|
|
|
|
|
|
def admin?
|
|
|
|
current_user.try(:admin?)
|
|
|
|
end
|
|
|
|
|
2013-05-02 01:15:17 -04:00
|
|
|
def moderator?
|
|
|
|
current_user.try(:moderator?)
|
|
|
|
end
|
|
|
|
|
2013-05-02 03:22:27 -04:00
|
|
|
def staff?
|
|
|
|
current_user.try(:staff?)
|
|
|
|
end
|
|
|
|
|
2015-05-20 01:56:54 -04:00
|
|
|
def rtl?
|
2016-12-10 18:57:48 -05:00
|
|
|
["ar", "ur", "fa_IR", "he"].include? I18n.locale.to_s
|
2015-05-20 01:56:54 -04:00
|
|
|
end
|
|
|
|
|
2018-08-20 07:55:58 -04:00
|
|
|
def html_lang
|
|
|
|
SiteSetting.default_locale.sub("_", "-")
|
2015-05-20 01:56:54 -04:00
|
|
|
end
|
|
|
|
|
2013-03-08 15:04:37 -05:00
|
|
|
# Creates open graph and twitter card meta data
|
2017-07-27 21:20:09 -04:00
|
|
|
def crawlable_meta_data(opts = nil)
|
2013-03-08 15:04:37 -05:00
|
|
|
opts ||= {}
|
2015-10-01 12:24:07 -04:00
|
|
|
opts[:url] ||= "#{Discourse.base_url_no_prefix}#{request.fullpath}"
|
2013-03-07 17:31:06 -05:00
|
|
|
|
2019-01-31 14:44:20 -05:00
|
|
|
if opts[:image].blank?
|
|
|
|
twitter_summary_large_image_url = SiteSetting.site_twitter_summary_large_image_url
|
|
|
|
|
|
|
|
if twitter_summary_large_image_url.present?
|
|
|
|
opts[:twitter_summary_large_image] = twitter_summary_large_image_url
|
|
|
|
end
|
|
|
|
|
2019-05-01 09:44:45 -04:00
|
|
|
opts[:image] = SiteSetting.site_opengraph_image_url
|
2016-08-22 05:28:46 -04:00
|
|
|
end
|
|
|
|
|
2019-01-08 00:47:05 -05:00
|
|
|
# Use the correct scheme for opengraph/twitter image
|
|
|
|
opts[:image] = get_absolute_image_url(opts[:image]) if opts[:image].present?
|
|
|
|
opts[:twitter_summary_large_image] =
|
|
|
|
get_absolute_image_url(opts[:twitter_summary_large_image]) if opts[:twitter_summary_large_image].present?
|
2014-08-07 12:58:26 -04:00
|
|
|
|
2016-09-19 07:41:12 -04:00
|
|
|
# Add opengraph & twitter tags
|
2015-10-15 05:00:47 -04:00
|
|
|
result = []
|
|
|
|
result << tag(:meta, property: 'og:site_name', content: SiteSetting.title)
|
2014-08-07 12:58:26 -04:00
|
|
|
|
2016-09-19 07:41:12 -04:00
|
|
|
if opts[:twitter_summary_large_image].present?
|
|
|
|
result << tag(:meta, name: 'twitter:card', content: "summary_large_image")
|
|
|
|
result << tag(:meta, name: "twitter:image", content: opts[:twitter_summary_large_image])
|
|
|
|
elsif opts[:image].present?
|
|
|
|
result << tag(:meta, name: 'twitter:card', content: "summary")
|
|
|
|
result << tag(:meta, name: "twitter:image", content: opts[:image])
|
|
|
|
else
|
|
|
|
result << tag(:meta, name: 'twitter:card', content: "summary")
|
|
|
|
end
|
|
|
|
result << tag(:meta, property: "og:image", content: opts[:image]) if opts[:image].present?
|
|
|
|
|
|
|
|
[:url, :title, :description].each do |property|
|
2013-03-08 15:04:37 -05:00
|
|
|
if opts[property].present?
|
2017-02-22 16:24:05 -05:00
|
|
|
content = (property == :url ? opts[property] : gsub_emoji_to_unicode(opts[property]))
|
2017-11-28 06:27:43 -05:00
|
|
|
result << tag(:meta, { property: "og:#{property}", content: content }, nil, true)
|
|
|
|
result << tag(:meta, { name: "twitter:#{property}", content: content }, nil, true)
|
2013-03-08 15:04:37 -05:00
|
|
|
end
|
|
|
|
end
|
2013-03-07 17:31:06 -05:00
|
|
|
|
2016-01-07 06:18:05 -05:00
|
|
|
if opts[:read_time] && opts[:read_time] > 0 && opts[:like_count] && opts[:like_count] > 0
|
2015-12-28 07:52:31 -05:00
|
|
|
result << tag(:meta, name: 'twitter:label1', value: I18n.t("reading_time"))
|
|
|
|
result << tag(:meta, name: 'twitter:data1', value: "#{opts[:read_time]} mins 🕑")
|
|
|
|
result << tag(:meta, name: 'twitter:label2', value: I18n.t("likes"))
|
2015-12-28 17:36:02 -05:00
|
|
|
result << tag(:meta, name: 'twitter:data2', value: "#{opts[:like_count]} ❤")
|
2015-12-28 07:52:31 -05:00
|
|
|
end
|
|
|
|
|
2018-07-30 06:52:51 -04:00
|
|
|
if opts[:published_time]
|
|
|
|
result << tag(:meta, property: 'article:published_time', content: opts[:published_time])
|
|
|
|
end
|
|
|
|
|
2017-08-15 09:53:03 -04:00
|
|
|
if opts[:ignore_canonical]
|
|
|
|
result << tag(:meta, property: 'og:ignore_canonical', content: true)
|
|
|
|
end
|
|
|
|
|
2015-10-15 05:00:47 -04:00
|
|
|
result.join("\n")
|
2013-03-07 17:31:06 -05:00
|
|
|
end
|
|
|
|
|
2016-02-13 13:29:53 -05:00
|
|
|
def render_sitelinks_search_tag
|
|
|
|
json = {
|
2016-04-14 05:22:26 -04:00
|
|
|
'@context' => 'http://schema.org',
|
|
|
|
'@type' => 'WebSite',
|
2016-02-13 13:29:53 -05:00
|
|
|
url: Discourse.base_url,
|
|
|
|
potentialAction: {
|
2016-04-14 05:22:26 -04:00
|
|
|
'@type' => 'SearchAction',
|
2016-02-13 13:29:53 -05:00
|
|
|
target: "#{Discourse.base_url}/search?q={search_term_string}",
|
2016-04-14 05:22:26 -04:00
|
|
|
'query-input' => 'required name=search_term_string',
|
2016-02-13 13:29:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
content_tag(:script, MultiJson.dump(json).html_safe, type: 'application/ld+json'.freeze)
|
|
|
|
end
|
|
|
|
|
2017-02-22 16:24:05 -05:00
|
|
|
def gsub_emoji_to_unicode(str)
|
2017-07-21 14:24:28 -04:00
|
|
|
Emoji.gsub_emoji_to_unicode(str)
|
2017-02-22 16:24:05 -05:00
|
|
|
end
|
|
|
|
|
2015-02-25 11:35:47 -05:00
|
|
|
def application_logo_url
|
2019-01-18 00:03:38 -05:00
|
|
|
@application_logo_url ||= begin
|
2019-04-24 11:39:11 -04:00
|
|
|
if mobile_view? && SiteSetting.site_mobile_logo_url.present?
|
2019-01-18 00:03:38 -05:00
|
|
|
SiteSetting.site_mobile_logo_url
|
|
|
|
else
|
2019-01-02 02:29:17 -05:00
|
|
|
SiteSetting.site_logo_url
|
2019-01-18 00:03:38 -05:00
|
|
|
end
|
|
|
|
end
|
2015-02-25 11:35:47 -05:00
|
|
|
end
|
|
|
|
|
2013-03-19 12:15:14 -04:00
|
|
|
def login_path
|
2013-11-14 10:41:16 -05:00
|
|
|
"#{Discourse::base_uri}/login"
|
2013-03-19 12:15:14 -04:00
|
|
|
end
|
2013-08-27 14:57:42 -04:00
|
|
|
|
2013-12-18 14:47:22 -05:00
|
|
|
def mobile_view?
|
2017-07-27 21:20:09 -04:00
|
|
|
MobileDetection.resolve_mobile_view!(request.user_agent, params, session)
|
2013-12-18 14:47:22 -05:00
|
|
|
end
|
|
|
|
|
2016-04-07 10:28:31 -04:00
|
|
|
def crawler_layout?
|
2017-09-08 01:07:22 -04:00
|
|
|
controller&.use_crawler_layout?
|
2016-04-07 10:28:31 -04:00
|
|
|
end
|
|
|
|
|
2016-03-16 14:35:58 -04:00
|
|
|
def include_crawler_content?
|
2016-04-07 10:28:31 -04:00
|
|
|
crawler_layout? || !mobile_view?
|
2016-03-16 14:35:58 -04:00
|
|
|
end
|
|
|
|
|
2013-12-18 14:47:22 -05:00
|
|
|
def mobile_device?
|
2014-01-08 22:08:42 -05:00
|
|
|
MobileDetection.mobile_device?(request.user_agent)
|
2013-08-29 15:19:28 -04:00
|
|
|
end
|
2013-11-14 10:41:16 -05:00
|
|
|
|
2019-05-07 10:44:43 -04:00
|
|
|
def ios_device?
|
|
|
|
MobileDetection.ios_device?(request.user_agent)
|
|
|
|
end
|
|
|
|
|
2013-11-14 10:41:16 -05:00
|
|
|
def customization_disabled?
|
2017-04-14 13:35:12 -04:00
|
|
|
request.env[ApplicationController::NO_CUSTOM]
|
2016-11-21 00:46:02 -05:00
|
|
|
end
|
|
|
|
|
2019-04-17 12:25:13 -04:00
|
|
|
def include_ios_native_app_banner?
|
|
|
|
current_user && current_user.trust_level >= 1 && SiteSetting.native_app_install_banner_ios
|
|
|
|
end
|
|
|
|
|
2019-08-27 10:23:57 -04:00
|
|
|
def ios_app_argument
|
|
|
|
# argument only makes sense for DiscourseHub app
|
|
|
|
SiteSetting.ios_app_id == "1173672076" ?
|
|
|
|
", app-argument=discourse://new?siteUrl=#{Discourse.base_url}" : ""
|
|
|
|
end
|
|
|
|
|
2016-11-21 00:46:02 -05:00
|
|
|
def allow_plugins?
|
2017-04-14 13:35:12 -04:00
|
|
|
!request.env[ApplicationController::NO_PLUGINS]
|
2016-11-21 00:46:02 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def allow_third_party_plugins?
|
2017-04-14 13:35:12 -04:00
|
|
|
allow_plugins? && !request.env[ApplicationController::ONLY_OFFICIAL]
|
2016-12-18 18:11:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def normalized_safe_mode
|
2018-10-02 00:29:04 -04:00
|
|
|
safe_mode = []
|
|
|
|
|
|
|
|
safe_mode << ApplicationController::NO_CUSTOM if customization_disabled?
|
|
|
|
safe_mode << ApplicationController::NO_PLUGINS if !allow_plugins?
|
|
|
|
safe_mode << ApplicationController::ONLY_OFFICIAL if !allow_third_party_plugins?
|
|
|
|
|
|
|
|
safe_mode.join(",")
|
2013-11-14 10:41:16 -05:00
|
|
|
end
|
|
|
|
|
2015-03-02 17:31:04 -05:00
|
|
|
def loading_admin?
|
|
|
|
controller.class.name.split("::").first == "Admin"
|
|
|
|
end
|
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
def category_badge(category, opts = nil)
|
2015-01-28 14:56:18 -05:00
|
|
|
CategoryBadge.html_for(category, opts).html_safe
|
|
|
|
end
|
2014-01-08 22:08:42 -05:00
|
|
|
|
2015-06-02 14:27:52 -04:00
|
|
|
def self.all_connectors
|
|
|
|
@all_connectors = Dir.glob("plugins/*/app/views/connectors/**/*.html.erb")
|
|
|
|
end
|
|
|
|
|
|
|
|
def server_plugin_outlet(name)
|
|
|
|
|
|
|
|
# Don't evaluate plugins in test
|
|
|
|
return "" if Rails.env.test?
|
|
|
|
|
|
|
|
matcher = Regexp.new("/connectors/#{name}/.*\.html\.erb$")
|
2017-07-27 21:20:09 -04:00
|
|
|
erbs = ApplicationHelper.all_connectors.select { |c| c =~ matcher }
|
2015-06-02 14:27:52 -04:00
|
|
|
return "" if erbs.blank?
|
|
|
|
|
2018-06-07 01:44:20 -04:00
|
|
|
result = +""
|
2019-09-19 14:51:06 -04:00
|
|
|
erbs.each { |erb| result << render(inline: File.read(erb)) }
|
2015-06-02 14:27:52 -04:00
|
|
|
result.html_safe
|
|
|
|
end
|
|
|
|
|
2016-12-05 07:31:43 -05:00
|
|
|
def topic_featured_link_domain(link)
|
|
|
|
begin
|
|
|
|
uri = URI.encode(link)
|
|
|
|
uri = URI.parse(uri)
|
|
|
|
uri = URI.parse("http://#{uri}") if uri.scheme.nil?
|
|
|
|
host = uri.host.downcase
|
|
|
|
host.start_with?('www.') ? host[4..-1] : host
|
|
|
|
rescue
|
|
|
|
''
|
|
|
|
end
|
|
|
|
end
|
2017-04-12 10:52:52 -04:00
|
|
|
|
2018-08-08 00:46:34 -04:00
|
|
|
def theme_ids
|
2017-04-12 10:52:52 -04:00
|
|
|
if customization_disabled?
|
2019-02-06 10:51:23 -05:00
|
|
|
[nil]
|
2017-04-12 10:52:52 -04:00
|
|
|
else
|
2018-08-08 00:46:34 -04:00
|
|
|
request.env[:resolved_theme_ids]
|
2017-04-12 10:52:52 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-09-11 21:04:58 -04:00
|
|
|
def scheme_id
|
|
|
|
return if theme_ids.blank?
|
2019-03-26 02:53:02 -04:00
|
|
|
Theme
|
|
|
|
.where(id: theme_ids.first)
|
|
|
|
.pluck(:color_scheme_id)
|
|
|
|
.first
|
2018-09-11 21:04:58 -04:00
|
|
|
end
|
|
|
|
|
2017-11-09 14:45:19 -05:00
|
|
|
def current_homepage
|
|
|
|
current_user&.user_option&.homepage || SiteSetting.anonymous_homepage
|
|
|
|
end
|
|
|
|
|
2017-04-17 15:47:21 -04:00
|
|
|
def build_plugin_html(name)
|
|
|
|
return "" unless allow_plugins?
|
2017-04-18 12:35:19 -04:00
|
|
|
DiscoursePluginRegistry.build_html(name, controller) || ""
|
2017-04-17 15:47:21 -04:00
|
|
|
end
|
|
|
|
|
2017-11-14 16:31:44 -05:00
|
|
|
# If there is plugin HTML return that, otherwise yield to the template
|
|
|
|
def replace_plugin_html(name)
|
2017-12-07 18:30:00 -05:00
|
|
|
if (html = build_plugin_html(name)).present?
|
|
|
|
html
|
|
|
|
else
|
|
|
|
yield
|
|
|
|
nil
|
|
|
|
end
|
2017-11-14 16:31:44 -05:00
|
|
|
end
|
|
|
|
|
2017-04-12 10:52:52 -04:00
|
|
|
def theme_lookup(name)
|
2019-01-17 06:46:11 -05:00
|
|
|
Theme.lookup_field(theme_ids, mobile_view? ? :mobile : :desktop, name)
|
|
|
|
end
|
|
|
|
|
|
|
|
def theme_translations_lookup
|
|
|
|
Theme.lookup_field(theme_ids, :translations, I18n.locale)
|
2017-04-12 10:52:52 -04:00
|
|
|
end
|
|
|
|
|
2019-06-03 05:41:00 -04:00
|
|
|
def theme_js_lookup
|
|
|
|
Theme.lookup_field(theme_ids, :extra_js, nil)
|
|
|
|
end
|
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
def discourse_stylesheet_link_tag(name, opts = {})
|
2018-08-08 00:46:34 -04:00
|
|
|
if opts.key?(:theme_ids)
|
|
|
|
ids = opts[:theme_ids] unless customization_disabled?
|
2017-04-12 10:52:52 -04:00
|
|
|
else
|
2018-08-08 00:46:34 -04:00
|
|
|
ids = theme_ids
|
2017-04-12 10:52:52 -04:00
|
|
|
end
|
|
|
|
|
2018-08-08 00:46:34 -04:00
|
|
|
Stylesheet::Manager.stylesheet_link_tag(name, 'all', ids)
|
2017-04-12 10:52:52 -04:00
|
|
|
end
|
2018-09-17 04:31:46 -04:00
|
|
|
|
|
|
|
def preloaded_json
|
|
|
|
return '{}' if @preloaded.blank?
|
|
|
|
@preloaded.transform_values { |value| escape_unicode(value) }.to_json
|
|
|
|
end
|
2018-10-02 00:29:04 -04:00
|
|
|
|
|
|
|
def client_side_setup_data
|
|
|
|
service_worker_url = Rails.env.development? ? 'service-worker.js' : Rails.application.assets_manifest.assets['service-worker.js']
|
|
|
|
|
|
|
|
setup_data = {
|
|
|
|
cdn: Rails.configuration.action_controller.asset_host,
|
2019-05-07 00:36:40 -04:00
|
|
|
base_url: Discourse.base_url,
|
2018-10-02 00:29:04 -04:00
|
|
|
base_uri: Discourse::base_uri,
|
|
|
|
environment: Rails.env,
|
|
|
|
letter_avatar_version: LetterAvatar.version,
|
2018-11-15 16:13:18 -05:00
|
|
|
markdown_it_url: script_asset_path('markdown-it-bundle'),
|
2018-10-02 00:29:04 -04:00
|
|
|
service_worker_url: service_worker_url,
|
|
|
|
default_locale: SiteSetting.default_locale,
|
|
|
|
asset_version: Discourse.assets_digest,
|
|
|
|
disable_custom_css: loading_admin?,
|
|
|
|
highlight_js_path: HighlightJs.path,
|
2019-02-06 10:51:23 -05:00
|
|
|
svg_sprite_path: SvgSprite.path(theme_ids),
|
2019-08-19 21:29:11 -04:00
|
|
|
enable_js_error_reporting: GlobalSetting.enable_js_error_reporting,
|
2018-10-02 00:29:04 -04:00
|
|
|
}
|
|
|
|
|
2018-11-26 16:49:57 -05:00
|
|
|
if Rails.env.development?
|
2019-02-06 10:51:23 -05:00
|
|
|
setup_data[:svg_icon_list] = SvgSprite.all_icons(theme_ids)
|
2018-11-26 16:49:57 -05:00
|
|
|
end
|
|
|
|
|
2018-10-02 00:29:04 -04:00
|
|
|
if guardian.can_enable_safe_mode? && params["safe_mode"]
|
|
|
|
setup_data[:safe_mode] = normalized_safe_mode
|
|
|
|
end
|
|
|
|
|
|
|
|
if SiteSetting.Upload.enable_s3_uploads
|
|
|
|
setup_data[:s3_cdn] = SiteSetting.Upload.s3_cdn_url.presence
|
|
|
|
setup_data[:s3_base_url] = SiteSetting.Upload.s3_base_url
|
|
|
|
end
|
|
|
|
|
|
|
|
setup_data
|
|
|
|
end
|
2019-01-08 00:47:05 -05:00
|
|
|
|
|
|
|
def get_absolute_image_url(link)
|
|
|
|
absolute_url = link
|
|
|
|
if link.start_with?("//")
|
|
|
|
uri = URI(Discourse.base_url)
|
|
|
|
absolute_url = "#{uri.scheme}:#{link}"
|
|
|
|
elsif link.start_with?("/uploads/")
|
|
|
|
absolute_url = "#{Discourse.base_url}#{link}"
|
2019-01-30 23:49:26 -05:00
|
|
|
elsif link.start_with?("/images/")
|
|
|
|
absolute_url = "#{Discourse.base_url}#{link}"
|
2019-01-08 00:47:05 -05:00
|
|
|
elsif GlobalSetting.relative_url_root && link.start_with?(GlobalSetting.relative_url_root)
|
|
|
|
absolute_url = "#{Discourse.base_url_no_prefix}#{link}"
|
|
|
|
end
|
|
|
|
absolute_url
|
|
|
|
end
|
2019-07-08 19:21:19 -04:00
|
|
|
|
|
|
|
def can_sign_up?
|
|
|
|
SiteSetting.allow_new_registrations &&
|
|
|
|
!SiteSetting.invite_only &&
|
|
|
|
!SiteSetting.enable_sso
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|