1
0
Fork 0
mirror of https://github.com/middleman/middleman.git synced 2022-11-09 12:20:27 -05:00
middleman--middleman/lib/middleman/builder.rb

131 lines
3.6 KiB
Ruby
Raw Normal View History

require 'middleman/server'
2011-01-30 17:18:49 -05:00
require "thor"
require "thor/group"
require 'rack/test'
2011-01-30 17:18:49 -05:00
module Middleman
module ThorActions
def tilt_template(source, *args, &block)
config = args.last.is_a?(Hash) ? args.pop : {}
destination = args.first || source
2011-01-30 17:18:49 -05:00
source = File.expand_path(find_in_source_paths(source.to_s))
context = instance_eval('binding')
2011-01-30 18:11:54 -05:00
@@rack_test ||= ::Rack::Test::Session.new(::Rack::MockSession.new(Middleman::Server))
2011-01-30 17:18:49 -05:00
create_file destination, nil, config do
# The default render just requests the page over Rack and writes the response
request_path = destination.sub(/^#{Middleman::Server.build_dir}/, "")
2011-01-30 17:18:49 -05:00
@@rack_test.get(request_path)
@@rack_test.last_response.body
end
end
2011-01-30 17:18:49 -05:00
end
2011-01-30 17:23:29 -05:00
class Builder < Thor::Group
2011-01-30 17:18:49 -05:00
include Thor::Actions
include Middleman::ThorActions
class_option :relative, :type => :boolean, :aliases => "-r", :default => false, :desc => 'Override the config.rb file and force relative urls'
2011-01-30 17:18:49 -05:00
def initialize(*args)
super
Middleman::Server.new
if options.has_key?("relative") && options["relative"]
Middleman::Server.activate :relative_assets
end
end
2011-01-30 17:18:49 -05:00
2011-04-20 16:16:12 -04:00
2011-01-30 17:18:49 -05:00
def source_paths
2011-04-20 16:16:12 -04:00
@source_paths ||= [
Middleman::Server.root
2011-01-30 17:18:49 -05:00
]
end
def build_all_files
action Directory.new(self, Middleman::Server.views, Middleman::Server.build_dir, { :force => true })
end
2011-01-30 18:11:54 -05:00
@@hooks = {}
def self.after_run(name, &block)
@@hooks[name] = block
end
def run_hooks
@@hooks.each do |name, proc|
instance_eval(&proc)
end
end
end
2011-01-30 17:18:49 -05:00
class Directory < ::Thor::Actions::EmptyDirectory
attr_reader :source
def initialize(base, source, destination=nil, config={}, &block)
2011-01-30 17:18:49 -05:00
@source = File.expand_path(base.find_in_source_paths(source.to_s))
@block = block
super(base, destination, { :recursive => true }.merge(config))
end
def invoke!
base.empty_directory given_destination, config
execute!
end
def revoke!
execute!
end
protected
def handle_directory(lookup)
lookup = File.join(lookup, '*')
results = Dir[lookup].sort do |a, b|
simple_a = a.gsub(Middleman::Server.root + "/", '').gsub(Middleman::Server.views + "/", '')
simple_b = b.gsub(Middleman::Server.root + "/", '').gsub(Middleman::Server.views + "/", '')
a_dir = simple_a.split("/").first
b_dir = simple_b.split("/").first
if a_dir == Middleman::Server.images_dir
-1
elsif b_dir == Middleman::Server.images_dir
1
else
0
end
end
results.each do |file_source|
if File.directory?(file_source)
handle_directory(file_source)
next
end
2011-07-01 13:07:50 -04:00
next if file_source.include?('layout') && !file_source.include?('.css')
# Skip partials prefixed with an underscore
2011-06-06 06:40:14 -04:00
next unless file_source.gsub(Middleman::Server.root, '').split('/').select { |p| p[0,1] == '_' }.empty?
file_extension = File.extname(file_source)
file_destination = File.join(given_destination, file_source.gsub(source, '.'))
file_destination.gsub!('/./', '/')
handled_by_tilt = ::Tilt.mappings.has_key?(file_extension.gsub(/^\./, ""))
if handled_by_tilt
file_destination.gsub!(file_extension, "")
2011-01-30 17:18:49 -05:00
end
destination = base.tilt_template(file_source, file_destination, config, &@block)
2011-01-30 17:18:49 -05:00
end
end
def execute!
handle_directory(source)
end
end
2011-01-30 17:18:49 -05:00
end