module Princely::AssetSupport

Public Instance Methods

asset_file_path(asset) click to toggle source
# File lib/princely/asset_support.rb, line 17
def asset_file_path(asset)
  # Remove /assets/ from generated names and try and find a matching asset
  Rails.application.assets ||= Sprockets::Environment.new
  Rails.application.assets.find_asset(asset.gsub(%r{/assets/}, "")).try(:pathname) || asset
end
localize_html_string(html_string, asset_path = nil) click to toggle source
# File lib/princely/asset_support.rb, line 3
def localize_html_string(html_string, asset_path = nil)
  html_string = html_string.to_str
  # Make all paths relative, on disk paths...
  html_string.gsub!(".com:/",".com/") # strip out bad attachment_fu URLs
  html_string.gsub!( /src=["']+([^:]+?)["']/i ) do |m|
    asset_src = asset_path ? "#{asset_path}/#{$1}" : asset_file_path($1)
    %Q{src="#{asset_src}"} # re-route absolute paths
  end

  # Remove asset ids on images with a regex
  html_string.gsub!( /src=["'](\S+\?\d*)["']/i ) { |m| %Q{src="#{$1.split('?').first}"} }
  html_string
end