2013-02-06 03:16:51 +08:00
|
|
|
require 'current_user'
|
2013-02-13 19:04:43 +08:00
|
|
|
require 'canonical_url'
|
2013-02-06 03:16:51 +08:00
|
|
|
require_dependency 'guardian'
|
|
|
|
require_dependency 'unread'
|
|
|
|
require_dependency 'age_words'
|
2013-05-01 23:48:42 +08:00
|
|
|
require_dependency 'configurable_urls'
|
2014-01-09 11:08:42 +08:00
|
|
|
require_dependency 'mobile_detection'
|
2015-01-29 03:56:18 +08:00
|
|
|
require_dependency 'category_badge'
|
2015-03-10 03:24:16 +08:00
|
|
|
require_dependency 'global_path'
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
module ApplicationHelper
|
|
|
|
include CurrentUser
|
2013-02-13 19:04:43 +08:00
|
|
|
include CanonicalURL::Helpers
|
2013-05-01 23:48:42 +08:00
|
|
|
include ConfigurableUrls
|
2015-03-10 03:24:16 +08:00
|
|
|
include GlobalPath
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2014-10-24 10:38:00 +08: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-15 10:59:26 +08:00
|
|
|
def script(*args)
|
2014-05-19 06:46:09 +08:00
|
|
|
if SiteSetting.enable_cdn_js_debugging && GlobalSetting.cdn_url
|
|
|
|
tags = javascript_include_tag(*args, "crossorigin" => "anonymous")
|
|
|
|
tags.gsub!("/assets/", "/cdn_asset/#{Discourse.current_hostname.gsub(".","_")}/")
|
2014-07-10 14:32:06 +08:00
|
|
|
tags.gsub!(".js\"", ".js?v=1&origin=#{CGI.escape request.base_url}\"")
|
2014-05-19 06:46:09 +08:00
|
|
|
tags.html_safe
|
|
|
|
else
|
2014-05-15 10:59:26 +08:00
|
|
|
javascript_include_tag(*args)
|
2014-05-19 06:46:09 +08:00
|
|
|
end
|
2014-05-15 10:59:26 +08:00
|
|
|
end
|
|
|
|
|
2013-05-03 14:43:11 +08:00
|
|
|
def discourse_csrf_tags
|
|
|
|
# anon can not have a CSRF token cause these are all pages
|
2013-06-06 06:23:43 +08:00
|
|
|
# that may be cached, causing a mismatch between session CSRF
|
2013-05-03 14:43:11 +08:00
|
|
|
# and CSRF on page and horrible impossible to debug login issues
|
|
|
|
if current_user
|
|
|
|
csrf_meta_tags
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-12-19 03:47:22 +08:00
|
|
|
def html_classes
|
2014-08-27 19:38:03 +08:00
|
|
|
"#{mobile_view? ? 'mobile-view' : 'desktop-view'} #{mobile_device? ? 'mobile-device' : 'not-mobile-device'} #{rtl_class}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def rtl_class
|
|
|
|
RTL.new(current_user).css_class
|
2013-12-19 03:47:22 +08:00
|
|
|
end
|
|
|
|
|
2013-07-03 08:43:52 +08:00
|
|
|
def escape_unicode(javascript)
|
|
|
|
if javascript
|
2013-12-30 11:05:25 +08:00
|
|
|
javascript = javascript.scrub
|
2013-09-10 14:01:36 +08:00
|
|
|
javascript.gsub!(/\342\200\250/u, '
')
|
|
|
|
javascript.gsub!(/(<\/)/u, '\u003C/')
|
|
|
|
javascript.html_safe
|
2013-07-03 08:43:52 +08:00
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08: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
|
|
|
|
|
|
|
|
def guardian
|
|
|
|
@guardian ||= Guardian.new(current_user)
|
|
|
|
end
|
|
|
|
|
|
|
|
def mini_profiler_enabled?
|
2013-03-05 08:42:44 +08:00
|
|
|
defined?(Rack::MiniProfiler) && admin?
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def admin?
|
|
|
|
current_user.try(:admin?)
|
|
|
|
end
|
|
|
|
|
2013-05-02 13:15:17 +08:00
|
|
|
def moderator?
|
|
|
|
current_user.try(:moderator?)
|
|
|
|
end
|
|
|
|
|
2013-05-02 15:22:27 +08:00
|
|
|
def staff?
|
|
|
|
current_user.try(:staff?)
|
|
|
|
end
|
|
|
|
|
2013-03-09 04:04:37 +08:00
|
|
|
# Creates open graph and twitter card meta data
|
|
|
|
def crawlable_meta_data(opts=nil)
|
|
|
|
|
|
|
|
opts ||= {}
|
2013-03-09 04:58:37 +08:00
|
|
|
opts[:image] ||= "#{Discourse.base_url}#{SiteSetting.logo_small_url}"
|
2013-03-09 04:04:37 +08:00
|
|
|
opts[:url] ||= "#{Discourse.base_url}#{request.fullpath}"
|
2013-03-08 06:31:06 +08:00
|
|
|
|
2014-08-08 00:58:26 +08:00
|
|
|
# Use the correct scheme for open graph
|
|
|
|
if opts[:image].present? && opts[:image].start_with?("//")
|
|
|
|
uri = URI(Discourse.base_url)
|
|
|
|
opts[:image] = "#{uri.scheme}:#{opts[:image]}"
|
|
|
|
end
|
|
|
|
|
2013-03-08 06:31:06 +08:00
|
|
|
# Add opengraph tags
|
|
|
|
result = tag(:meta, property: 'og:site_name', content: SiteSetting.title) << "\n"
|
2013-03-09 04:04:37 +08:00
|
|
|
|
2013-03-16 03:42:21 +08:00
|
|
|
result << tag(:meta, name: 'twitter:card', content: "summary")
|
2014-08-08 00:58:26 +08:00
|
|
|
|
2014-12-24 16:30:55 +08:00
|
|
|
# I removed image related opengraph tags from here for now due to
|
|
|
|
# https://meta.discourse.org/t/x/22744/18
|
|
|
|
[:url, :title, :description].each do |property|
|
2013-03-09 04:04:37 +08:00
|
|
|
if opts[property].present?
|
2013-03-09 05:17:56 +08:00
|
|
|
escape = (property != :image)
|
|
|
|
result << tag(:meta, {property: "og:#{property}", content: opts[property]}, nil, escape) << "\n"
|
2013-03-16 03:42:21 +08:00
|
|
|
result << tag(:meta, {name: "twitter:#{property}", content: opts[property]}, nil, escape) << "\n"
|
2013-03-09 04:04:37 +08:00
|
|
|
end
|
|
|
|
end
|
2013-03-08 06:31:06 +08:00
|
|
|
|
|
|
|
result
|
|
|
|
end
|
|
|
|
|
2013-06-26 22:57:35 +08:00
|
|
|
# Look up site content for a key. If the key is blank, you can supply a block and that
|
|
|
|
# will be rendered instead.
|
2013-04-06 03:21:55 +08:00
|
|
|
def markdown_content(key, replacements=nil)
|
2014-09-25 02:45:35 +08:00
|
|
|
result = PrettyText.cook(SiteText.text_for(key, replacements || {})).html_safe
|
2013-07-03 23:57:17 +08:00
|
|
|
if result.blank? && block_given?
|
|
|
|
yield
|
|
|
|
nil
|
|
|
|
else
|
|
|
|
result
|
|
|
|
end
|
2013-04-06 03:21:55 +08:00
|
|
|
end
|
|
|
|
|
2015-02-26 00:35:47 +08:00
|
|
|
def application_logo_url
|
|
|
|
@application_logo_url ||= (mobile_view? && SiteSetting.mobile_logo_url) || SiteSetting.logo_url
|
|
|
|
end
|
|
|
|
|
2013-03-20 00:15:14 +08:00
|
|
|
def login_path
|
2013-11-14 23:41:16 +08:00
|
|
|
"#{Discourse::base_uri}/login"
|
2013-03-20 00:15:14 +08:00
|
|
|
end
|
2013-08-28 02:57:42 +08:00
|
|
|
|
2013-12-19 03:47:22 +08:00
|
|
|
def mobile_view?
|
2014-01-09 11:08:42 +08:00
|
|
|
MobileDetection.resolve_mobile_view!(request.user_agent,params,session)
|
2013-12-19 03:47:22 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def mobile_device?
|
2014-01-09 11:08:42 +08:00
|
|
|
MobileDetection.mobile_device?(request.user_agent)
|
2013-08-30 03:19:28 +08:00
|
|
|
end
|
2013-11-14 23:41:16 +08:00
|
|
|
|
|
|
|
def customization_disabled?
|
2015-02-21 01:21:19 +08:00
|
|
|
session[:disable_customization]
|
2013-11-14 23:41:16 +08:00
|
|
|
end
|
|
|
|
|
2015-03-03 06:31:04 +08:00
|
|
|
def loading_admin?
|
|
|
|
controller.class.name.split("::").first == "Admin"
|
|
|
|
end
|
|
|
|
|
2015-01-29 03:56:18 +08:00
|
|
|
def category_badge(category, opts=nil)
|
|
|
|
CategoryBadge.html_for(category, opts).html_safe
|
|
|
|
end
|
2014-01-09 11:08:42 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|