From 3f09ec2aca363e369f583cf6da38c8c8cf18b5f0 Mon Sep 17 00:00:00 2001 From: scossar Date: Tue, 19 Jan 2016 16:42:56 -0800 Subject: [PATCH] add layout for notifications --- app/mailers/user_notifications.rb | 2 + app/views/layouts/user_notifications.html.erb | 42 +++++++++ lib/email/styles.rb | 52 +++++----- spec/components/email/styles_spec.rb | 94 +++++++++---------- 4 files changed, 122 insertions(+), 68 deletions(-) create mode 100644 app/views/layouts/user_notifications.html.erb diff --git a/app/mailers/user_notifications.rb b/app/mailers/user_notifications.rb index d2ff9cc51b3..3af7f5d6b93 100644 --- a/app/mailers/user_notifications.rb +++ b/app/mailers/user_notifications.rb @@ -5,6 +5,7 @@ require_dependency 'age_words' class UserNotifications < ActionMailer::Base helper :application default charset: 'UTF-8' + layout 'user_notifications' include Email::BuildEmailHelper @@ -290,6 +291,7 @@ class UserNotifications < ActionMailer::Base else html = UserNotificationRenderer.new(Rails.configuration.paths["app/views"]).render( template: 'email/notification', + layout: 'layouts/user_notifications', format: :html, locals: { context_posts: context_posts, post: post, diff --git a/app/views/layouts/user_notifications.html.erb b/app/views/layouts/user_notifications.html.erb new file mode 100644 index 00000000000..67e2802b71d --- /dev/null +++ b/app/views/layouts/user_notifications.html.erb @@ -0,0 +1,42 @@ + + + + + + + + + + + + +
+
+ + + + + +
+ + <%= yield %> + +
+ + +
+
+ + \ No newline at end of file diff --git a/lib/email/styles.rb b/lib/email/styles.rb index 67447a10a00..0c7bcddc3ea 100644 --- a/lib/email/styles.rb +++ b/lib/email/styles.rb @@ -9,7 +9,7 @@ module Email def initialize(html, opts=nil) @html = html @opts = opts || {} - @fragment = Nokogiri::HTML.fragment(@html) + @doc = Nokogiri::HTML(@html) end def self.register_plugin_style(&block) @@ -30,7 +30,7 @@ module Email uri = URI(Discourse.base_url) # images - @fragment.css('img').each do |img| + @doc.css('img').each do |img| next if img['class'] == 'site-logo' if img['class'] == "emoji" || img['src'] =~ /plugins\/emoji/ @@ -56,15 +56,16 @@ module Email end # add max-width to big images - big_images = @fragment.css('img[width="auto"][height="auto"]') - - @fragment.css('aside.onebox img') - - @fragment.css('img.site-logo, img.emoji') + big_images = @doc.css('img[width="auto"][height="auto"]') - + @doc.css('aside.onebox img') - + @doc.css('img.site-logo, img.emoji') big_images.each do |img| - add_styles(img, 'max-width: 100%;') if img['style'] !~ /max-width/ + add_styles(img, 'width: 100%; height: auto; max-width: 600px;') if img['style'] !~ /max-width/ + add_attributes(img, width: '600') end # attachments - @fragment.css('a.attachment').each do |a| + @doc.css('a.attachment').each do |a| # ensure all urls are absolute if a['href'] =~ /^\/[^\/]/ a['href'] = "#{Discourse.base_url}#{a['href']}" @@ -117,12 +118,12 @@ module Email style('aside.clearfix', "clear: both") # Finally, convert all `aside` tags to `div`s - @fragment.css('aside, article, header').each do |n| + @doc.css('aside, article, header').each do |n| n.name = "div" end # iframes can't go in emails, so replace them with clickable links - @fragment.css('iframe').each do |i| + @doc.css('iframe').each do |i| begin src_uri = URI(i['src']) @@ -157,20 +158,21 @@ module Email # this method is reserved for styles specific to plugin def plugin_styles - @@plugin_callbacks.each { |block| block.call(@fragment, @opts) } + @@plugin_callbacks.each { |block| block.call(@doc, @opts) } end def to_html + return "" unless has_body? strip_classes_and_ids replace_relative_urls - @fragment.to_html.tap do |result| + @doc.to_html.tap do |result| result.gsub!(/\[email-indent\]/, "
") result.gsub!(/\[\/email-indent\]/, "
") end end def strip_avatars_and_emojis - @fragment.search('img').each do |img| + @doc.search('img').each do |img| if img['src'] =~ /_avatar/ img.parent['style'] = "vertical-align: top;" if img.parent.name == 'td' img.remove @@ -182,7 +184,7 @@ module Email end end - @fragment.to_s + @doc.to_s end private @@ -192,7 +194,7 @@ module Email host = forum_uri.host scheme = forum_uri.scheme - @fragment.css('[href]').each do |element| + @doc.css('[href]').each do |element| href = element['href'] if href =~ /^\/\/#{host}/ element['href'] = "#{scheme}:#{href}" @@ -201,14 +203,14 @@ module Email end def correct_first_body_margin - @fragment.css('.body p').each do |element| + @doc.css('.body p').each do |element| element['style'] = "margin-top:0; border: 0;" end end def correct_footer_style footernum = 0 - @fragment.css('.footer').each do |element| + @doc.css('.footer').each do |element| element['style'] = "color:#666;" linknum = 0 element.css('a').each do |inner| @@ -225,7 +227,7 @@ module Email end def strip_classes_and_ids - @fragment.css('*').each do |element| + @doc.css('*').each do |element| element.delete('class') element.delete('id') end @@ -235,12 +237,20 @@ module Email style('table', nil, cellspacing: '0', cellpadding: '0', border: '0') end + def add_attributes(element, attribs) + attribs.each do |k, v| + element[k] = v + end + end + + def has_body? + @doc.at_css('body') + end + def style(selector, style, attribs = {}) - @fragment.css(selector).each do |element| + @doc.css(selector).each do |element| add_styles(element, style) if style - attribs.each do |k,v| - element[k] = v - end + add_attributes(element, attribs) end end end diff --git a/spec/components/email/styles_spec.rb b/spec/components/email/styles_spec.rb index 1f8bb953bf1..6b4af50b8b2 100644 --- a/spec/components/email/styles_spec.rb +++ b/spec/components/email/styles_spec.rb @@ -3,17 +3,17 @@ require 'email' describe Email::Styles do - def basic_fragment(html) + def basic_doc(html) styler = Email::Styles.new(html) styler.format_basic - Nokogiri::HTML.fragment(styler.to_html) + Nokogiri::HTML(styler.to_html) end - def html_fragment(html) + def html_doc(html) styler = Email::Styles.new(html) styler.format_basic styler.format_html - Nokogiri::HTML.fragment(styler.to_html) + Nokogiri::HTML(styler.to_html) end context "basic formatter" do @@ -26,24 +26,24 @@ describe Email::Styles do # Pending due to email effort @coding-horror made in d2fb2bc4c skip "adds a max-width to images" do - frag = basic_fragment("") - expect(frag.at("img")["style"]).to match("max-width") + doc = basic_doc("") + expect(doc.at("img")["style"]).to match("max-width") end it "adds a width and height to images with an emoji path" do - frag = basic_fragment("") - expect(frag.at("img")["width"]).to eq("20") - expect(frag.at("img")["height"]).to eq("20") + doc = basic_doc("") + expect(doc.at("img")["width"]).to eq("20") + expect(doc.at("img")["height"]).to eq("20") end it "converts relative paths to absolute paths" do - frag = basic_fragment("") - expect(frag.at("img")["src"]).to eq("#{Discourse.base_url}/some-image.png") + doc = basic_doc("") + expect(doc.at("img")["src"]).to eq("#{Discourse.base_url}/some-image.png") end it "strips classes and ids" do - frag = basic_fragment("
") - expect(frag.to_html).to eq("
") + doc = basic_doc("
") + expect(doc.to_html).to match(/
<\/div><\/div>/) end end @@ -56,51 +56,51 @@ describe Email::Styles do end it "attaches a style to h3 tags" do - frag = html_fragment("

hello

") - expect(frag.at('h3')['style']).to be_present + doc = html_doc("

hello

") + expect(doc.at('h3')['style']).to be_present end it "attaches a style to hr tags" do - frag = html_fragment("hello
") - expect(frag.at('hr')['style']).to be_present + doc = html_doc("hello
") + expect(doc.at('hr')['style']).to be_present end it "attaches a style to a tags" do - frag = html_fragment("wat") - expect(frag.at('a')['style']).to be_present + doc = html_doc("wat") + expect(doc.at('a')['style']).to be_present end it "attaches a style to a tags" do - frag = html_fragment("wat") - expect(frag.at('a')['style']).to be_present + doc = html_doc("wat") + expect(doc.at('a')['style']).to be_present end it "attaches a style to ul and li tags" do - frag = html_fragment("
  • hello
") - expect(frag.at('ul')['style']).to be_present - expect(frag.at('li')['style']).to be_present + doc = html_doc("
  • hello
") + expect(doc.at('ul')['style']).to be_present + expect(doc.at('li')['style']).to be_present end it "converts iframes to links" do iframe_url = "http://www.youtube.com/embed/7twifrxOTQY?feature=oembed&wmode=opaque" - frag = html_fragment("") - expect(frag.at('iframe')).to be_blank - expect(frag.at('a')).to be_present - expect(frag.at('a')['href']).to eq(iframe_url) + doc = html_doc("") + expect(doc.at('iframe')).to be_blank + expect(doc.at('a')).to be_present + expect(doc.at('a')['href']).to eq(iframe_url) end it "won't allow non URLs in iframe src, strips them with no link" do iframe_url = "alert('xss hole')" - frag = html_fragment("") - expect(frag.at('iframe')).to be_blank - expect(frag.at('a')).to be_blank + doc = html_doc("") + expect(doc.at('iframe')).to be_blank + expect(doc.at('a')).to be_blank end end context "rewriting protocol relative URLs to the forum" do it "doesn't rewrite a url to another site" do - frag = html_fragment('hello') - expect(frag.at('a')['href']).to eq("//youtube.com/discourse") + doc = html_doc('hello') + expect(doc.at('a')['href']).to eq("//youtube.com/discourse") end context "without https" do @@ -109,18 +109,18 @@ describe Email::Styles do end it "rewrites the href to have http" do - frag = html_fragment('hello') - expect(frag.at('a')['href']).to eq("http://test.localhost/discourse") + doc = html_doc('hello') + expect(doc.at('a')['href']).to eq("http://test.localhost/discourse") end it "rewrites the href for attachment files to have http" do - frag = html_fragment('attachment_file.txt') - expect(frag.at('a')['href']).to eq("http://try-discourse.global.ssl.fastly.net/uploads/default/368/40b610b0aa90cfcf.txt") + doc = html_doc('attachment_file.txt') + expect(doc.at('a')['href']).to eq("http://try-discourse.global.ssl.fastly.net/uploads/default/368/40b610b0aa90cfcf.txt") end it "rewrites the src to have http" do - frag = html_fragment('') - expect(frag.at('img')['src']).to eq("http://test.localhost/blah.jpg") + doc = html_doc('') + expect(doc.at('img')['src']).to eq("http://test.localhost/blah.jpg") end end @@ -130,18 +130,18 @@ describe Email::Styles do end it "rewrites the forum URL to have https" do - frag = html_fragment('hello') - expect(frag.at('a')['href']).to eq("https://test.localhost/discourse") + doc = html_doc('hello') + expect(doc.at('a')['href']).to eq("https://test.localhost/discourse") end it "rewrites the href for attachment files to have https" do - frag = html_fragment('attachment_file.txt') - expect(frag.at('a')['href']).to eq("https://try-discourse.global.ssl.fastly.net/uploads/default/368/40b610b0aa90cfcf.txt") + doc = html_doc('attachment_file.txt') + expect(doc.at('a')['href']).to eq("https://try-discourse.global.ssl.fastly.net/uploads/default/368/40b610b0aa90cfcf.txt") end it "rewrites the src to have https" do - frag = html_fragment('') - expect(frag.at('img')['src']).to eq("https://test.localhost/blah.jpg") + doc = html_doc('') + expect(doc.at('img')['src']).to eq("https://test.localhost/blah.jpg") end end @@ -152,14 +152,14 @@ describe Email::Styles do emoji = "" style = Email::Styles.new(emoji) style.strip_avatars_and_emojis - expect(style.to_html).to match_html(emoji) + expect(style.to_html).to match_html("#{emoji}") end it "works for lonesome emoji with title" do emoji = "" style = Email::Styles.new(emoji) style.strip_avatars_and_emojis - expect(style.to_html).to match_html("cry_cry") + expect(style.to_html).to match_html("cry_cry") end end