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
|
|
|
require_dependency 'guardian'
|
|
|
|
require_dependency 'unread'
|
|
|
|
require_dependency 'age_words'
|
2013-05-01 11:48:42 -04:00
|
|
|
require_dependency 'configurable_urls'
|
2014-01-08 22:08:42 -05:00
|
|
|
require_dependency 'mobile_detection'
|
2015-01-28 14:56:18 -05:00
|
|
|
require_dependency 'category_badge'
|
2015-03-09 15:24:16 -04:00
|
|
|
require_dependency 'global_path'
|
2015-03-23 14:12:11 -04:00
|
|
|
require_dependency '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
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2016-08-02 14:54:06 -04:00
|
|
|
def google_universal_analytics_json(ua_domain_name=nil)
|
|
|
|
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
|
|
|
|
result.to_json.html_safe
|
|
|
|
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
|
|
|
|
|
2014-05-14 22:59:26 -04:00
|
|
|
def script(*args)
|
2016-12-04 21:57:09 -05:00
|
|
|
if GlobalSetting.cdn_url &&
|
|
|
|
GlobalSetting.cdn_url.start_with?("https") &&
|
|
|
|
ENV["COMPRESS_BROTLI"] == "1" &&
|
2016-12-04 23:10:54 -05:00
|
|
|
request.env["HTTP_ACCEPT_ENCODING"] =~ /br/
|
2016-12-04 21:57:09 -05:00
|
|
|
tags = javascript_include_tag(*args)
|
|
|
|
tags.gsub!("#{GlobalSetting.cdn_url}/assets/", "#{GlobalSetting.cdn_url}/brotli_asset/")
|
2014-05-18 18:46:09 -04:00
|
|
|
tags.html_safe
|
|
|
|
else
|
2014-05-14 22:59:26 -04:00
|
|
|
javascript_include_tag(*args)
|
2014-05-18 18:46:09 -04:00
|
|
|
end
|
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
|
2015-07-23 03:16:29 -04:00
|
|
|
"#{mobile_view? ? 'mobile-view' : 'desktop-view'} #{mobile_device? ? 'mobile-device' : 'not-mobile-device'} #{rtl_class} #{current_user ? '' : 'anon'}"
|
2014-08-27 07:38:03 -04:00
|
|
|
end
|
|
|
|
|
2016-07-04 12:10:52 -04:00
|
|
|
def body_classes
|
|
|
|
if @category && @category.url.present?
|
|
|
|
"category-#{@category.url.sub(/^\/c\//, '').gsub(/\//, '-')}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-08-27 07:38:03 -04:00
|
|
|
def rtl_class
|
2016-02-06 14:49:39 -05:00
|
|
|
rtl? ? 'rtl' : ''
|
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/')
|
|
|
|
javascript.html_safe
|
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 mini_profiler_enabled?
|
2013-03-04 19:42:44 -05:00
|
|
|
defined?(Rack::MiniProfiler) && admin?
|
2013-02-05 14:16:51 -05:00
|
|
|
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-02-06 14:49:39 -05:00
|
|
|
["ar", "fa_IR", "he"].include? I18n.locale.to_s
|
2015-05-20 01:56:54 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def user_locale
|
|
|
|
locale = current_user.locale if current_user && SiteSetting.allow_user_locale
|
|
|
|
# changing back to default shoves a blank string there
|
|
|
|
locale.present? ? locale : SiteSetting.default_locale
|
|
|
|
end
|
|
|
|
|
2013-03-08 15:04:37 -05:00
|
|
|
# Creates open graph and twitter card meta data
|
|
|
|
def crawlable_meta_data(opts=nil)
|
|
|
|
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
|
|
|
|
2016-09-19 07:41:12 -04:00
|
|
|
if opts[:image].blank? && (SiteSetting.default_opengraph_image_url.present? || SiteSetting.twitter_summary_large_image_url.present?)
|
|
|
|
opts[:twitter_summary_large_image] = SiteSetting.twitter_summary_large_image_url if SiteSetting.twitter_summary_large_image_url.present?
|
|
|
|
opts[:image] = SiteSetting.default_opengraph_image_url.present? ? SiteSetting.default_opengraph_image_url : SiteSetting.twitter_summary_large_image_url
|
2016-08-22 05:28:46 -04:00
|
|
|
elsif opts[:image].blank? && SiteSetting.apple_touch_icon_url.present?
|
|
|
|
opts[:image] = SiteSetting.apple_touch_icon_url
|
|
|
|
end
|
|
|
|
|
|
|
|
# Use the correct scheme for open graph image
|
2016-10-05 15:14:51 -04:00
|
|
|
if opts[:image].present?
|
|
|
|
if opts[:image].start_with?("//")
|
|
|
|
uri = URI(Discourse.base_url)
|
|
|
|
opts[:image] = "#{uri.scheme}:#{opts[:image]}"
|
|
|
|
elsif opts[:image].start_with?("/uploads/")
|
|
|
|
opts[:image] = "#{Discourse.base_url}#{opts[:image]}"
|
|
|
|
elsif GlobalSetting.relative_url_root && opts[:image].start_with?(GlobalSetting.relative_url_root)
|
|
|
|
opts[:image] = "#{Discourse.base_url_no_prefix}#{opts[:image]}"
|
|
|
|
end
|
2014-08-07 12:58:26 -04:00
|
|
|
end
|
|
|
|
|
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?
|
2013-03-08 16:17:56 -05:00
|
|
|
escape = (property != :image)
|
2015-10-15 05:00:47 -04:00
|
|
|
result << tag(:meta, { property: "og:#{property}", content: opts[property] }, nil, escape)
|
|
|
|
result << tag(:meta, { name: "twitter:#{property}", content: opts[property] }, nil, escape)
|
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
|
|
|
|
|
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
|
|
|
|
|
2015-02-25 11:35:47 -05:00
|
|
|
def application_logo_url
|
|
|
|
@application_logo_url ||= (mobile_view? && SiteSetting.mobile_logo_url) || SiteSetting.logo_url
|
|
|
|
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?
|
2014-01-08 22:08:42 -05: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?
|
|
|
|
controller.try(:use_crawler_layout?)
|
|
|
|
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
|
|
|
|
|
|
|
def customization_disabled?
|
2016-11-21 00:46:02 -05:00
|
|
|
safe_mode = params["safe_mode"]
|
|
|
|
session[:disable_customization] || (safe_mode && safe_mode.include?("no_custom"))
|
|
|
|
end
|
|
|
|
|
|
|
|
def allow_plugins?
|
|
|
|
safe_mode = params["safe_mode"]
|
|
|
|
!(safe_mode && safe_mode.include?("no_plugins"))
|
|
|
|
end
|
|
|
|
|
|
|
|
def allow_third_party_plugins?
|
|
|
|
safe_mode = params["safe_mode"]
|
|
|
|
!(safe_mode && (safe_mode.include?("no_plugins") || safe_mode.include?("only_official")))
|
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
|
|
|
|
|
2015-01-28 14:56:18 -05:00
|
|
|
def category_badge(category, opts=nil)
|
|
|
|
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$")
|
|
|
|
erbs = ApplicationHelper.all_connectors.select {|c| c =~ matcher }
|
|
|
|
return "" if erbs.blank?
|
|
|
|
|
|
|
|
result = ""
|
|
|
|
erbs.each {|erb| result << render(file: erb) }
|
|
|
|
result.html_safe
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|