2010-09-04 23:26:48 -04:00
|
|
|
class Middleman::Features::CacheBuster
|
|
|
|
def initialize(app)
|
|
|
|
Middleman::Assets.register :cache_buster do |path, prefix, request|
|
|
|
|
http_path = Middleman::Assets.before(:cache_buster, path, prefix, request)
|
|
|
|
|
|
|
|
if http_path.include?("://") || !%w(.css .png .jpg .js .gif).include?(File.extname(http_path))
|
|
|
|
http_path
|
|
|
|
else
|
|
|
|
begin
|
|
|
|
prefix = Middleman::Base.images_dir if prefix == Middleman::Base.http_images_path
|
|
|
|
rescue
|
|
|
|
end
|
|
|
|
|
|
|
|
real_path_static = File.join(Middleman::Base.public, prefix, path)
|
|
|
|
|
|
|
|
if File.readable?(real_path_static)
|
|
|
|
http_path << "?" + File.mtime(real_path_static).strftime("%s")
|
|
|
|
elsif Middleman::Base.environment == "build"
|
|
|
|
real_path_dynamic = File.join(Middleman::Base.root, Middleman::Base.build_dir, prefix, path)
|
|
|
|
http_path << "?" + File.mtime(real_path_dynamic).strftime("%s") if File.readable?(real_path_dynamic)
|
|
|
|
end
|
|
|
|
|
|
|
|
http_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
Middleman::Base.after_feature_init do
|
|
|
|
::Compass.configuration do |config|
|
2009-11-17 18:52:28 -05:00
|
|
|
config.asset_cache_buster do |path, real_path|
|
|
|
|
real_path = real_path.path if real_path.is_a? File
|
2010-09-04 23:26:48 -04:00
|
|
|
real_path = real_path.gsub(File.join(Middleman::Base.root, Middleman::Base.build_dir), Middleman::Base.public)
|
2009-11-17 18:52:28 -05:00
|
|
|
if File.readable?(real_path)
|
|
|
|
File.mtime(real_path).strftime("%s")
|
|
|
|
else
|
|
|
|
$stderr.puts "WARNING: '#{File.basename(path)}' was not found (or cannot be read) in #{File.dirname(real_path)}"
|
|
|
|
end
|
2009-10-29 12:43:08 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2010-09-04 23:26:48 -04:00
|
|
|
|
|
|
|
Middleman::Features.register :cache_buster, Middleman::Features::CacheBuster
|