middleman/lib/middleman/cli/build.rb

196 lines
5.1 KiB
Ruby
Raw Normal View History

require "rack"
2011-11-28 05:49:46 +01:00
require "rack/test"
2011-12-21 21:13:28 +01:00
module Middleman::Cli
class Build < Thor
2011-01-30 23:18:49 +01:00
include Thor::Actions
check_unknown_options!
2011-12-21 21:13:28 +01:00
namespace :build
desc "build [options]", "Builds the static site for deployment"
method_option :relative,
:type => :boolean,
:aliases => "-r",
:default => false,
:desc => 'Force relative urls'
2011-12-21 21:13:28 +01:00
method_option :clean,
:type => :boolean,
:aliases => "-c",
:default => false,
:desc => 'Removes orpahand files or directories from build'
2011-12-21 21:13:28 +01:00
method_option :glob,
:type => :string,
:aliases => "-g",
:default => nil,
:desc => 'Build a subset of the project'
def build
if !ENV["MM_ROOT"]
$stderr.puts "== Error: Could not find a Middleman project config, perhaps you are in the wrong folder?"
exit(1)
end
if options.has_key?("relative") && options["relative"]
self.class.shared_instance.activate :relative_assets
end
self.class.shared_rack
opts = {}
opts[:glob] = options["glob"] if options.has_key?("glob")
opts[:clean] = options["clean"] if options.has_key?("clean")
action GlobAction.new(self, self.class.shared_instance, opts)
self.class.shared_instance.run_hook :after_build, self
end
2011-01-30 23:18:49 +01:00
2011-11-21 06:21:19 +01:00
class << self
2011-11-28 05:49:46 +01:00
def shared_instance
@_shared_instance ||= ::Middleman.server.inst do
set :environment, :build
end
end
2011-11-28 05:49:46 +01:00
def shared_server
@_shared_server ||= shared_instance.class
end
2011-11-21 06:21:19 +01:00
def shared_rack
2011-11-28 05:49:46 +01:00
@_shared_rack ||= begin
mock = ::Rack::MockSession.new(shared_server.to_rack_app)
2011-11-21 06:21:19 +01:00
sess = ::Rack::Test::Session.new(mock)
response = sess.get("__middleman__")
sess
end
2011-07-27 23:14:22 +02:00
end
end
source_root(shared_instance.root)
2011-11-28 05:49:46 +01:00
# @private
module ThorActions
# Render a template to a file.
# @return [String] the actual destination file path that was created
2011-11-28 05:49:46 +01:00
def tilt_template(source, *args, &block)
config = args.last.is_a?(Hash) ? args.pop : {}
destination = args.first || source
request_path = destination.sub(/^#{self.class.shared_instance.build_dir}/, "")
2011-11-28 05:49:46 +01:00
2011-12-01 09:01:16 +01:00
begin
destination, request_path = self.class.shared_instance.reroute_builder(destination, request_path)
2011-11-28 05:49:46 +01:00
response = self.class.shared_rack.get(request_path.gsub(/\s/, "%20"))
create_file(destination, response.body, config)
destination
2011-12-01 09:01:16 +01:00
rescue
say_status :error, destination, :red
abort
2011-12-01 09:01:16 +01:00
end
2011-11-28 05:49:46 +01:00
end
end
2011-11-28 05:49:46 +01:00
include ThorActions
end
2011-11-28 05:49:46 +01:00
# @private
2011-11-08 07:34:02 +01:00
class GlobAction < ::Thor::Actions::EmptyDirectory
2011-01-30 23:18:49 +01:00
attr_reader :source
2011-11-08 07:34:02 +01:00
def initialize(base, app, config={}, &block)
@app = app
2011-11-24 06:59:53 +01:00
source = @app.source
2011-11-08 07:34:02 +01:00
@destination = @app.build_dir
2011-01-30 23:18:49 +01:00
@source = File.expand_path(base.find_in_source_paths(source.to_s))
2011-11-08 07:34:02 +01:00
super(base, destination, config)
2011-01-30 23:18:49 +01:00
end
def invoke!
2011-11-08 07:34:02 +01:00
queue_current_paths if cleaning?
2011-01-30 23:18:49 +01:00
execute!
2011-11-08 07:34:02 +01:00
clean! if cleaning?
2011-01-30 23:18:49 +01:00
end
def revoke!
execute!
end
2011-11-08 07:34:02 +01:00
2011-09-13 01:15:51 +02:00
protected
2011-11-08 07:34:02 +01:00
def clean!
files = @cleaning_queue.select { |q| File.file? q }
directories = @cleaning_queue.select { |q| File.directory? q }
2011-01-30 23:18:49 +01:00
2011-11-08 07:34:02 +01:00
files.each do |f|
base.remove_file f, :force => true
end
2011-09-13 01:15:51 +02:00
2011-11-08 07:34:02 +01:00
directories = directories.sort_by {|d| d.length }.reverse!
2011-09-13 01:15:51 +02:00
2011-11-08 07:34:02 +01:00
directories.each do |d|
base.remove_file d, :force => true if directory_empty? d
2011-09-13 01:15:51 +02:00
end
end
2011-11-08 07:34:02 +01:00
def cleaning?
@config.has_key?(:clean) && @config[:clean]
end
def directory_empty?(directory)
2011-11-28 05:49:46 +01:00
Dir[File.join(directory, "*")].empty?
2011-11-08 07:34:02 +01:00
end
def queue_current_paths
@cleaning_queue = []
Find.find(@destination) do |path|
next if path.match(/\/\./) && !path.match(/\.htaccess/)
2011-11-08 07:34:02 +01:00
unless path == destination
@cleaning_queue << path.sub(@destination, destination[/([^\/]+?)$/])
end
end if File.exist?(@destination)
2011-09-13 01:15:51 +02:00
end
2011-11-08 07:34:02 +01:00
def execute!
sort_order = %w(.png .jpeg .jpg .gif .bmp .svg .svgz .ico .woff .otf .ttf .eot .js .css)
paths = @app.sitemap.all_paths.sort do |a, b|
a_ext = File.extname(a)
b_ext = File.extname(b)
a_idx = sort_order.index(a_ext) || 100
b_idx = sort_order.index(b_ext) || 100
a_idx <=> b_idx
end
2011-11-08 07:34:02 +01:00
paths.each do |path|
file_source = path
file_destination = File.join(given_destination, file_source.gsub(source, '.'))
file_destination.gsub!('/./', '/')
if @app.sitemap.generic?(file_source)
2011-11-08 07:34:02 +01:00
# no-op
elsif @app.sitemap.proxied?(file_source)
file_source = @app.sitemap.page(file_source).proxied_to
elsif @app.sitemap.ignored?(file_source)
next
end
2011-11-08 07:34:02 +01:00
if @config[:glob]
next unless File.fnmatch(@config[:glob], file_source)
2011-08-06 06:37:33 +02:00
end
file_destination = base.tilt_template(file_source, file_destination, { :force => true })
@cleaning_queue.delete(file_destination) if cleaning?
2011-08-06 06:37:33 +02:00
end
2011-10-14 20:36:46 +02:00
end
end
Base.map({ "b" => "build" })
end