discourse/app/helpers/user_notifications_helper.rb

62 lines
1.4 KiB
Ruby
Raw Normal View History

module UserNotificationsHelper
def indent(text, by=2)
spacer = " " * by
result = ""
text.each_line do |line|
result << spacer << line
end
result
end
def correct_top_margin(html, desired)
fragment = Nokogiri::HTML.fragment(html)
if para = fragment.css("p:first").first
para["style"] = "margin-top: #{desired};"
end
fragment.to_html.html_safe
end
def logo_url
logo_url = SiteSetting.digest_logo_url
logo_url = SiteSetting.logo_url if logo_url.blank?
return nil if logo_url.blank?
if logo_url !~ /http(s)?\:\/\//
logo_url = "#{Discourse.base_url}#{logo_url}"
end
logo_url
end
def html_site_link
"<a href='#{Discourse.base_url}'>#{@site_name}</a>"
end
2014-01-22 15:30:30 -05:00
def first_paragraph_from(html)
doc = Nokogiri::HTML(html)
result = ""
2014-01-22 15:30:30 -05:00
doc.css('p').each do |p|
if p.text.present?
result << p.to_s
return result if result.size >= 100
end
2014-01-22 15:30:30 -05:00
end
return result unless result.blank?
2014-01-22 15:30:30 -05:00
# If there is no first paragaph, return the first div (onebox)
doc.css('div').first
end
def email_excerpt(html, posts_count)
# only include 1st paragraph when more than 1 posts
html = first_paragraph_from(html).to_s if posts_count > 1
raw format_for_email(html)
end
def format_for_email(html)
PrettyText.format_for_email(html).html_safe
end
end