2013-02-05 13:16:51 -06:00
|
|
|
require 'current_user'
|
2013-02-13 05:04:43 -06:00
|
|
|
require 'canonical_url'
|
2013-02-05 13:16:51 -06:00
|
|
|
require_dependency 'guardian'
|
|
|
|
require_dependency 'unread'
|
|
|
|
require_dependency 'age_words'
|
2013-05-01 10:48:42 -05:00
|
|
|
require_dependency 'configurable_urls'
|
2014-01-08 21:08:42 -06:00
|
|
|
require_dependency 'mobile_detection'
|
2013-02-05 13:16:51 -06:00
|
|
|
|
|
|
|
module ApplicationHelper
|
|
|
|
include CurrentUser
|
2013-02-13 05:04:43 -06:00
|
|
|
include CanonicalURL::Helpers
|
2013-05-01 10:48:42 -05:00
|
|
|
include ConfigurableUrls
|
2013-02-05 13:16:51 -06:00
|
|
|
|
2013-05-03 01:43:11 -05:00
|
|
|
def discourse_csrf_tags
|
|
|
|
# anon can not have a CSRF token cause these are all pages
|
2013-06-05 17:23:43 -05:00
|
|
|
# that may be cached, causing a mismatch between session CSRF
|
2013-05-03 01:43:11 -05:00
|
|
|
# and CSRF on page and horrible impossible to debug login issues
|
|
|
|
if current_user
|
|
|
|
csrf_meta_tags
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-12-18 13:47:22 -06:00
|
|
|
def html_classes
|
|
|
|
"#{mobile_view? ? 'mobile-view' : 'desktop-view'} #{mobile_device? ? 'mobile-device' : 'not-mobile-device'}"
|
|
|
|
end
|
|
|
|
|
2013-07-02 19:43:52 -05:00
|
|
|
def escape_unicode(javascript)
|
|
|
|
if javascript
|
2013-12-29 21:05:25 -06:00
|
|
|
javascript = javascript.scrub
|
2013-09-10 01:01:36 -05:00
|
|
|
javascript.gsub!(/\342\200\250/u, '
')
|
|
|
|
javascript.gsub!(/(<\/)/u, '\u003C/')
|
|
|
|
javascript.html_safe
|
2013-07-02 19:43:52 -05:00
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06: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-04 18:42:44 -06:00
|
|
|
defined?(Rack::MiniProfiler) && admin?
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
def admin?
|
|
|
|
current_user.try(:admin?)
|
|
|
|
end
|
|
|
|
|
2013-05-02 00:15:17 -05:00
|
|
|
def moderator?
|
|
|
|
current_user.try(:moderator?)
|
|
|
|
end
|
|
|
|
|
2013-05-02 02:22:27 -05:00
|
|
|
def staff?
|
|
|
|
current_user.try(:staff?)
|
|
|
|
end
|
|
|
|
|
2013-03-08 14:04:37 -06:00
|
|
|
# Creates open graph and twitter card meta data
|
|
|
|
def crawlable_meta_data(opts=nil)
|
|
|
|
|
|
|
|
opts ||= {}
|
2013-03-08 14:58:37 -06:00
|
|
|
opts[:image] ||= "#{Discourse.base_url}#{SiteSetting.logo_small_url}"
|
2013-03-08 14:04:37 -06:00
|
|
|
opts[:url] ||= "#{Discourse.base_url}#{request.fullpath}"
|
2013-03-07 16:31:06 -06:00
|
|
|
|
|
|
|
# Add opengraph tags
|
|
|
|
result = tag(:meta, property: 'og:site_name', content: SiteSetting.title) << "\n"
|
2013-03-08 14:04:37 -06:00
|
|
|
|
2013-03-15 14:42:21 -05:00
|
|
|
result << tag(:meta, name: 'twitter:card', content: "summary")
|
2013-05-01 01:37:27 -05:00
|
|
|
[:image, :url, :title, :description, 'image:width', 'image:height'].each do |property|
|
2013-03-08 14:04:37 -06:00
|
|
|
if opts[property].present?
|
2013-03-08 15:17:56 -06:00
|
|
|
escape = (property != :image)
|
|
|
|
result << tag(:meta, {property: "og:#{property}", content: opts[property]}, nil, escape) << "\n"
|
2013-03-15 14:42:21 -05:00
|
|
|
result << tag(:meta, {name: "twitter:#{property}", content: opts[property]}, nil, escape) << "\n"
|
2013-03-08 14:04:37 -06:00
|
|
|
end
|
|
|
|
end
|
2013-03-07 16:31:06 -06:00
|
|
|
|
|
|
|
result
|
|
|
|
end
|
|
|
|
|
2013-06-26 09:57:35 -05: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-05 14:21:55 -05:00
|
|
|
def markdown_content(key, replacements=nil)
|
2013-06-26 09:57:35 -05:00
|
|
|
result = PrettyText.cook(SiteContent.content_for(key, replacements || {})).html_safe
|
2013-07-03 10:57:17 -05:00
|
|
|
if result.blank? && block_given?
|
|
|
|
yield
|
|
|
|
nil
|
|
|
|
else
|
|
|
|
result
|
|
|
|
end
|
2013-04-05 14:21:55 -05:00
|
|
|
end
|
|
|
|
|
2013-03-19 11:15:14 -05:00
|
|
|
def login_path
|
2013-11-14 09:41:16 -06:00
|
|
|
"#{Discourse::base_uri}/login"
|
2013-03-19 11:15:14 -05:00
|
|
|
end
|
2013-08-27 13:57:42 -05:00
|
|
|
|
2013-12-18 13:47:22 -06:00
|
|
|
def mobile_view?
|
2014-01-08 21:08:42 -06:00
|
|
|
MobileDetection.resolve_mobile_view!(request.user_agent,params,session)
|
2013-12-18 13:47:22 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
def mobile_device?
|
2014-01-08 21:08:42 -06:00
|
|
|
MobileDetection.mobile_device?(request.user_agent)
|
2013-08-29 14:19:28 -05:00
|
|
|
end
|
2013-11-14 09:41:16 -06:00
|
|
|
|
|
|
|
def customization_disabled?
|
|
|
|
controller.class.name.split("::").first == "Admin" || session[:disable_customization]
|
|
|
|
end
|
|
|
|
|
2014-01-08 21:08:42 -06:00
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|