-
-
Save shedd/2385946 to your computer and use it in GitHub Desktop.
convert html img tags to rails image_tag calls
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby -Ku | |
require "nokogiri" | |
require "iconv" | |
# opens every file in the given dir tree and converts any html img tags to rails image_tag calls | |
# | |
# example usage: | |
# ruby convert.rb ~/my_rails_app/app/views | |
# | |
# ***be careful and backup before using this*** | |
# | |
raise "no directory tree given" if ARGV.first.nil? | |
path = "#{ARGV.first}/**/*" | |
@count = { | |
:files_open => 0, | |
:files_revised => 0, | |
:tags => 0 | |
} | |
class RailsImageTag | |
Params = [ | |
{ :name => :alt }, | |
{ :name => :height, :type => :int }, | |
{ :name => :width, :type => :int }, | |
{ :name => :class }, | |
{ :name => :title }, | |
{ :name => :id } | |
] | |
def initialize(img) | |
@img = img | |
end | |
# construct and return the erb containing the new image_tag call | |
def to_erb | |
url = @img['src'] | |
# remove asset prefix | |
url.gsub!("/assets/", "") | |
"<%= image_tag('#{url}'#{options_to_erb}) %>" | |
end | |
# convert the img tag params to image_tag options | |
# the params to process are defined in the Params constant hash | |
def options_to_erb | |
options_erb = {} | |
Params.each do |opt| | |
name = opt[:name] | |
value = @img[name] | |
value = opt[:type] != :int ? "'#{value}'" : value | |
options_erb[name] = ":#{name} => #{value}" unless value.nil? or value == "''" | |
end | |
options_erb.empty? ? "" : ", " + options_erb.values.join(", ") | |
end | |
end | |
class HtmlDoc | |
def initialize(filename) | |
@name = filename | |
file = File.open(@name) | |
@doc = Nokogiri::HTML(file) | |
@content = File.open(@name) { |f| f.read } | |
end | |
# overwrite the file with new contents | |
def write_file(log) | |
#puts "writing file #{@name}" | |
log[:files_revised] += 1 | |
File.open(@name, "w+") do |f| | |
#puts "file is writeable? #{ File.writable?(f) }" | |
f.write(@content) | |
end | |
end | |
# convert a single file and record stats to <em>log</em> | |
def convert_img_tags!(log) | |
log[:files_open] += 1 | |
file_marked = false | |
@doc.xpath("//img").each do |img| | |
file_marked = true | |
log[:tags] += 1 | |
# handle '`gsub!': invalid byte sequence in UTF-8 (ArgumentError)' error | |
ic = Iconv.new('UTF-8//IGNORE', 'UTF-8') | |
original = ic.iconv(original) | |
@content = ic.iconv(@content) | |
#puts "BEFORE: " + img.to_html | |
original = img.to_html.gsub("\">", "\" />").gsub("\" >", "\" />").delete("\\") | |
# we need a second version of the original in case our image tag is like this: <img src="a.gif" alt=""/> | |
original2 = img.to_html.gsub("\">", "\"/>") | |
#puts "AFTER: " + original2 | |
@content.gsub!(original, RailsImageTag.new(img).to_erb) | |
@content.gsub!(original2, RailsImageTag.new(img).to_erb) | |
end | |
write_file(log) if file_marked | |
end | |
end | |
Dir.glob(path).each { |filename| HtmlDoc.new(filename).convert_img_tags!(@count) if File.file?(filename) } | |
p "***********************************" | |
p "#{@count[:files_open]} files opened" | |
p "#{@count[:files_revised]} files revised" | |
p "#{@count[:tags]} tags replaced" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
improvements made in e8be6a: