Class: Premailer
- Inherits:
-
Object
- Object
- Premailer
- Includes:
- CssParser, HtmlToPlainText, Warnings
- Defined in:
- lib/premailer/adapter.rb,
lib/premailer/premailer.rb,
lib/premailer/adapter/hpricot.rb,
lib/premailer/adapter/nokogiri.rb
Overview
Premailer by Alex Dunae (dunae.ca, e-mail ‘code’ at the same domain), 2008-10
Premailer processes HTML and CSS to improve e-mail deliverability.
Premailer’s main function is to render all CSS as inline style attributes. It also converts relative links to absolute links and checks the ‘safety’ of CSS properties against a CSS support chart.
Example
premailer = Premailer.new('http://example.com/myfile.html', :warn_level => Premailer::Warnings::SAFE)
# Write the HTML output
fout = File.open("output.html", "w")
fout.puts premailer.to_inline_css
fout.close
# Write the plain-text output
fout = File.open("ouput.txt", "w")
fout.puts premailer.to_plain_text
fout.close
# List any CSS warnings
puts premailer.warnings.length.to_s + ' warnings found'
premailer.warnings.each do |w|
puts "#{w[:message]} (#{w[:level]}) may not render properly in #{w[:clients]}"
end
premailer = Premailer.new(html_file, :warn_level => Premailer::Warnings::SAFE)
puts premailer.to_inline_css
Defined Under Namespace
Constant Summary collapse
- VERSION =
'1.7.3'- CLIENT_SUPPORT_FILE =
File.dirname(__FILE__) + '/../../misc/client_support.yaml'
- RE_UNMERGABLE_SELECTORS =
/(\:(visited|active|hover|focus|after|before|selection|target|first\-(line|letter))|^\@)/i- RE_RESET_SELECTORS =
/^(\:\#outlook|body.*|\.ReadMsgBody|\.ExternalClass|img|\#backgroundTable)$/- RELATED_ATTRIBUTES =
list of CSS attributes that can be rendered as HTML attributes
TODO: too much repetition TODO: background=“”
{ 'h1' => {'text-align' => 'align'}, 'h2' => {'text-align' => 'align'}, 'h3' => {'text-align' => 'align'}, 'h4' => {'text-align' => 'align'}, 'h5' => {'text-align' => 'align'}, 'h6' => {'text-align' => 'align'}, 'p' => {'text-align' => 'align'}, 'div' => {'text-align' => 'align'}, 'blockquote' => {'text-align' => 'align'}, 'body' => {'background-color' => 'bgcolor'}, 'table' => { 'background-color' => 'bgcolor', 'background-image' => 'background', '-premailer-width' => 'width', '-premailer-height' => 'height', '-premailer-cellpadding' => 'cellpadding', '-premailer-cellspacing' => 'cellspacing', }, 'tr' => { 'text-align' => 'align', 'background-color' => 'bgcolor', '-premailer-height' => 'height' }, 'th' => { 'text-align' => 'align', 'background-color' => 'bgcolor', 'vertical-align' => 'valign', '-premailer-width' => 'width', '-premailer-height' => 'height' }, 'td' => { 'text-align' => 'align', 'background-color' => 'bgcolor', 'vertical-align' => 'valign', '-premailer-width' => 'width', '-premailer-height' => 'height', '-premailer-colspan' => 'colspan' }, 'img' => {'float' => 'align'} }
- WARN_LABEL =
%w(NONE SAFE POOR RISKY)
Constants included from Warnings
Warnings::NONE, Warnings::POOR, Warnings::RISKY, Warnings::SAFE
Instance Attribute Summary collapse
-
#base_dir ⇒ Object
readonly
base directory used to resolve links for local files.
-
#base_url ⇒ Object
readonly
base URL used to resolve links.
-
#doc ⇒ Object
readonly
source HTML document (Hpricot/Nokogiri).
-
#html_file ⇒ Object
readonly
URI of the HTML file used.
-
#processed_doc ⇒ Object
readonly
processed HTML document (Hpricot/Nokogiri).
-
#unmergable_rules ⇒ Object
readonly
unmergeable CSS rules to be preserved in the head (CssParser).
Class Method Summary collapse
- .canonicalize(uri) ⇒ Object
-
.escape_string(str) ⇒ Object
:nodoc:.
-
.local_data?(data) ⇒ Boolean
Test the passed variable to see if we are in local or remote mode.
-
.resolve_link(path, base_path) ⇒ Object
:nodoc:.
Instance Method Summary collapse
- #append_query_string(doc, qs) ⇒ Object
-
#check_client_support ⇒ Object
Check
CLIENT_SUPPORT_FILEfor any CSS warnings. -
#convert_inline_links(doc, base_uri) ⇒ Object
Processes
hrefsrcandbackgroundattributes as well as CSSurl()declarations found in inlinestyleattributes. -
#initialize(html, options = {}) ⇒ Premailer
constructor
Create a new Premailer object.
-
#is_xhtml? ⇒ Boolean
Check for an XHTML doctype.
-
#local_uri?(uri) ⇒ Boolean
:nodoc:.
-
#media_type_ok?(media_types) ⇒ Boolean
here be instance methods.
-
#warnings ⇒ Object
Array containing a hash of CSS warnings.
Methods included from HtmlToPlainText
Constructor Details
#initialize(html, options = {}) ⇒ Premailer
Create a new Premailer object.
html is the HTML data to process. It can be either an IO object, the URL of a remote file, a local path or a raw HTML string. If passing an HTML string you must set the :with_html_string option to true.
Options
line_length-
Line length used by to_plain_text. Boolean, default is 65.
warn_level-
What level of CSS compatibility warnings to show (see Warnings).
link_query_string-
A string to append to every
a href=""link. Do not include the initial?. base_url-
Used to calculate absolute URLs for local files.
css-
Manually specify CSS stylesheets.
css_to_attributes-
Copy related CSS attributes into HTML attributes (e.g.
background-colortobgcolor) css_string-
Pass CSS as a string
remove_ids-
Remove ID attributes whenever possible and convert IDs used as anchors to hashed to avoid collisions in webmail programs. Default is
false. remove_classes-
Remove class attributes. Default is
false. remove_comments-
Remove html comments. Default is
false. preserve_styles-
Whether to preserve any
link rel=stylesheetandstyleelements. Default isfalse. preserve_reset-
Whether to preserve styles associated with the MailChimp reset code
with_html_string-
Whether the
htmlparam should be treated as a raw string. verbose-
Whether to print errors and warnings to
$stderr. Default isfalse. adapter-
Which HTML parser to use, either
:nokogirior:hpricot. Default is:hpricot.
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
# File 'lib/premailer/premailer.rb', line 137 def initialize(html, = {}) = {:warn_level => Warnings::SAFE, :line_length => 65, :link_query_string => nil, :base_url => nil, :remove_classes => false, :remove_ids => false, :remove_comments => false, :css => [], :css_to_attributes => true, :with_html_string => false, :css_string => nil, :preserve_styles => false, :preserve_reset => true, :verbose => false, :debug => false, :io_exceptions => false, :adapter => Adapter.use}.merge() @html_file = html @is_local_file = [:with_html_string] || Premailer.local_data?(html) @css_files = [[:css]].flatten @css_warnings = [] @base_url = nil @base_dir = nil @unmergable_rules = nil if [:base_url] @base_url = URI.parse(.delete(:base_url)) elsif not @is_local_file @base_url = URI.parse(@html_file) end @css_parser = CssParser::Parser.new({ :absolute_paths => true, :import => true, :io_exceptions => [:io_exceptions] }) @adapter_class = Adapter.find [:adapter] self.class.send(:include, @adapter_class) @doc = load_html(@html_file) @processed_doc = @doc @processed_doc = convert_inline_links(@processed_doc, @base_url) if @base_url if [:link_query_string] @processed_doc = append_query_string(@processed_doc, [:link_query_string]) end load_css_from_html! end |
Instance Attribute Details
#base_dir ⇒ Object (readonly)
base directory used to resolve links for local files
94 95 96 |
# File 'lib/premailer/premailer.rb', line 94 def base_dir @base_dir end |
#base_url ⇒ Object (readonly)
base URL used to resolve links
91 92 93 |
# File 'lib/premailer/premailer.rb', line 91 def base_url @base_url end |
#doc ⇒ Object (readonly)
source HTML document (Hpricot/Nokogiri)
103 104 105 |
# File 'lib/premailer/premailer.rb', line 103 def doc @doc end |
#html_file ⇒ Object (readonly)
URI of the HTML file used
88 89 90 |
# File 'lib/premailer/premailer.rb', line 88 def html_file @html_file end |
#processed_doc ⇒ Object (readonly)
processed HTML document (Hpricot/Nokogiri)
100 101 102 |
# File 'lib/premailer/premailer.rb', line 100 def processed_doc @processed_doc end |
#unmergable_rules ⇒ Object (readonly)
unmergeable CSS rules to be preserved in the head (CssParser)
97 98 99 |
# File 'lib/premailer/premailer.rb', line 97 def unmergable_rules @unmergable_rules end |
Class Method Details
.canonicalize(uri) ⇒ Object
423 424 425 426 427 428 429 430 431 432 433 |
# File 'lib/premailer/premailer.rb', line 423 def self.canonicalize(uri) # :nodoc: u = uri.kind_of?(URI) ? uri : URI.parse(uri.to_s) u.normalize! newpath = u.path while newpath.gsub!(%r{([^/]+)/\.\./?}) { |match| $1 == '..' ? match : '' } do end newpath = newpath.gsub(%r{/\./}, '/').sub(%r{/\.\z}, '/') u.path = newpath u.to_s end |
.escape_string(str) ⇒ Object
:nodoc:
391 392 393 |
# File 'lib/premailer/premailer.rb', line 391 def self.escape_string(str) # :nodoc: str.gsub(/"/ , "'") end |
.local_data?(data) ⇒ Boolean
Test the passed variable to see if we are in local or remote mode.
IO objects return true, as do strings that look like URLs.
416 417 418 419 420 |
# File 'lib/premailer/premailer.rb', line 416 def self.local_data?(data) return true if data.is_a?(IO) || data.is_a?(StringIO) return false if data =~ /^(http|https|ftp)\:\/\//i true end |
.resolve_link(path, base_path) ⇒ Object
:nodoc:
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 |
# File 'lib/premailer/premailer.rb', line 395 def self.resolve_link(path, base_path) # :nodoc: path.strip! resolved = nil if path =~ /(http[s]?|ftp):\/\//i resolved = path Premailer.canonicalize(resolved) elsif base_path.kind_of?(URI) resolved = base_path.merge(path) Premailer.canonicalize(resolved) elsif base_path.kind_of?(String) and base_path =~ /^(http[s]?|ftp):\/\//i resolved = URI.parse(base_path) resolved = resolved.merge(path) Premailer.canonicalize(resolved) else File.(path, File.dirname(base_path)) end end |
Instance Method Details
#append_query_string(doc, qs) ⇒ Object
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 |
# File 'lib/premailer/premailer.rb', line 282 def append_query_string(doc, qs) return doc if qs.nil? qs.to_s.gsub!(/^[\?]*/, '').strip! return doc if qs.empty? begin current_host = @base_url.host rescue current_host = nil end $stderr.puts "Attempting to append_query_string: #{qs}" if [:verbose] doc.search('a').each do|el| href = el.attributes['href'].to_s.strip next if href.nil? or href.empty? next if href[0,1] =~ /[\#\{\[\<\%]/ # don't bother with anchors or special-looking links begin href = URI.parse(href) if current_host and href.host != nil and href.host != current_host $stderr.puts "Skipping append_query_string for: #{href.to_s} because host is no good" if [:verbose] next end if href.scheme and href.scheme != 'http' and href.scheme != 'https' puts "Skipping append_query_string for: #{href.to_s} because scheme is no good" if [:verbose] next end if href.query and not href.query.empty? href.query = href.query + '&' + qs else href.query = qs end el['href'] = href.to_s rescue URI::Error => e $stderr.puts "Skipping append_query_string for: #{href.to_s} (#{e.message})" if [:verbose] next end end doc end |
#check_client_support ⇒ Object
Check CLIENT_SUPPORT_FILE for any CSS warnings
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 |
# File 'lib/premailer/premailer.rb', line 436 def check_client_support # :nodoc: @client_support ||= YAML::load(File.open(CLIENT_SUPPORT_FILE)) warnings = [] properties = [] # Get a list off CSS properties @processed_doc.search("*[@style]").each do |el| style_url = el.attributes['style'].to_s.gsub(/([\w\-]+)[\s]*\:/i) do |s| properties.push($1) end end properties.uniq! property_support = @client_support['css_properties'] properties.each do |prop| if property_support.include?(prop) and property_support[prop].include?('support') and property_support[prop]['support'] >= [:warn_level] warnings.push({:message => "#{prop} CSS property", :level => WARN_LABEL[property_support[prop]['support']], :clients => property_support[prop]['unsupported_in'].join(', ')}) end end @client_support['attributes'].each do |attribute, data| next unless data['support'] >= [:warn_level] if @doc.search("*[@#{attribute}]").length > 0 warnings.push({:message => "#{attribute} HTML attribute", :level => WARN_LABEL[data['support']], :clients => data['unsupported_in'].join(', ')}) end end @client_support['elements'].each do |element, data| next unless data['support'] >= [:warn_level] if @doc.search(element).length > 0 warnings.push({:message => "#{element} HTML element", :level => WARN_LABEL[data['support']], :clients => data['unsupported_in'].join(', ')}) end end return warnings end |
#convert_inline_links(doc, base_uri) ⇒ Object
Processes href src and background attributes as well as CSS url() declarations found in inline style attributes.
doc is an Hpricot document and base_uri is either a string or a URI.
Returns an Hpricot document.
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 |
# File 'lib/premailer/premailer.rb', line 347 def convert_inline_links(doc, base_uri) # :nodoc: base_uri = URI.parse(base_uri) unless base_uri.kind_of?(URI) append_qs = [:link_query_string] || '' ['href', 'src', 'background'].each do |attribute| = doc.search("*[@#{attribute}]") next if .empty? .each do |tag| # skip links that look like they have merge tags # and mailto, ftp, etc... if tag.attributes[attribute].to_s =~ /^([\%\<\{\#\[]|data:|tel:|file:|sms:|callto:|facetime:|mailto:|ftp:|gopher:)/i next end if tag.attributes[attribute].to_s =~ /^http/i begin merged = URI.parse(tag.attributes[attribute]) rescue; next; end else begin merged = Premailer.resolve_link(tag.attributes[attribute].to_s, base_uri) rescue begin merged = Premailer.resolve_link(URI.escape(tag.attributes[attribute].to_s), base_uri) rescue; end end end # make sure 'merged' is a URI merged = URI.parse(merged.to_s) unless merged.kind_of?(URI) tag[attribute] = merged.to_s end # end of each tag end # end of each attrs doc.search("*[@style]").each do |el| el['style'] = CssParser.convert_uris(el.attributes['style'].to_s, base_uri) end doc end |
#is_xhtml? ⇒ Boolean
Check for an XHTML doctype
332 333 334 335 336 337 |
# File 'lib/premailer/premailer.rb', line 332 def is_xhtml? intro = @doc.to_html.strip.split("\n")[0..2].join(' ') is_xhtml = !!(intro =~ /w3c\/\/[\s]*dtd[\s]+xhtml/i) $stderr.puts "Is XHTML? #{is_xhtml.inspect}\nChecked:\n#{intro}" if [:debug] is_xhtml end |
#local_uri?(uri) ⇒ Boolean
:nodoc:
268 269 270 271 |
# File 'lib/premailer/premailer.rb', line 268 def local_uri?(uri) # :nodoc: warn "[DEPRECATION] `local_uri?` is deprecated. Please use `Premailer.local_data?` instead." Premailer.local_data?(uri) end |
#media_type_ok?(media_types) ⇒ Boolean
here be instance methods
275 276 277 278 279 280 |
# File 'lib/premailer/premailer.rb', line 275 def media_type_ok?(media_types) # :nodoc: return true if media_types.nil? or media_types.empty? media_types.split(/[\s]+|,/).any? { |media_type| media_type.strip =~ /screen|handheld|all/i } rescue true end |
#warnings ⇒ Object
Array containing a hash of CSS warnings.
195 196 197 198 199 |
# File 'lib/premailer/premailer.rb', line 195 def warnings return [] if [:warn_level] == Warnings::NONE @css_warnings = check_client_support if @css_warnings.empty? @css_warnings end |