engine/lib/locomotive/import/assets.rb

80 lines
2.3 KiB
Ruby
Raw Normal View History

2010-09-23 23:00:13 +00:00
module Locomotive
module Import
class Assets < Base
2010-09-23 23:00:13 +00:00
def process
whitelist = self.build_regexps_in_withlist(database['site']['assets']['whitelist']) rescue nil
2010-09-23 23:00:13 +00:00
self.log "white list = #{whitelist.inspect}"
self.add_theme_assets(whitelist)
self.add_other_assets
2010-09-23 23:00:13 +00:00
end
protected
def add_theme_assets(whitelist)
%w(images media fonts javascripts stylesheets).each do |kind|
Dir[File.join(theme_path, 'public', kind, '**/*')].each do |asset_path|
2010-09-23 23:00:13 +00:00
next if File.directory?(asset_path)
visible = self.check_against_whitelist(whitelist, asset_path.gsub(File.join(theme_path, 'public'), '').gsub(/^\//, ''))
folder = asset_path.gsub(File.join(theme_path, 'public'), '').gsub(File.basename(asset_path), '').gsub(/^\//, '').gsub(/\/$/, '')
asset = site.theme_assets.where(:local_path => File.join(folder, File.basename(asset_path))).first
asset ||= site.theme_assets.build(:folder => folder)
2010-09-23 23:00:13 +00:00
asset.attributes = { :source => File.open(asset_path), :performing_plain_text => false, :hidden => !visible }
begin
asset.save!
rescue Exception => e
self.log "!ERROR! = #{e.message}, #{asset_path}"
end
2010-09-23 23:00:13 +00:00
site.reload
end
end
end
def add_other_assets
2010-09-23 23:00:13 +00:00
Dir[File.join(theme_path, 'public', 'samples', '*')].each do |asset_path|
next if File.directory?(asset_path)
self.log "other asset = #{asset_path}"
2010-09-23 23:00:13 +00:00
name = File.basename(asset_path, File.extname(asset_path)).parameterize('_')
self.site.assets.create! :name => name, :source => File.open(asset_path)
2010-09-23 23:00:13 +00:00
end
end
def build_regexps_in_withlist(rules)
rules.collect do |rule|
if rule.start_with?('^')
Regexp.new(rule.gsub('/', '\/'))
else
rule
end
end
end
def check_against_whitelist(whitelist, path)
(whitelist || []).each do |rule|
case rule
when Regexp
return true if path =~ rule
when String
return true if path == rule
end
end
false
end
2010-09-23 23:00:13 +00:00
end
end
end