middleman/middleman-core/lib/middleman-core/sitemap/resource.rb

140 lines
4.4 KiB
Ruby
Raw Normal View History

require 'middleman-core/sitemap/extensions/traversal'
require 'middleman-core/sitemap/extensions/content_type'
require 'middleman-core/file_renderer'
require 'middleman-core/template_renderer'
module Middleman
# Sitemap namespace
module Sitemap
# Sitemap Resource class
class Resource
include Middleman::Sitemap::Extensions::Traversal
include Middleman::Sitemap::Extensions::ContentType
# @return [Middleman::Sitemap::Store]
#attr_reader :store
# The source path of this resource (relative to the source directory,
# without template extensions)
# @return [String]
attr_reader :path
# The output path for this resource
# @return [String]
attr_accessor :destination_path
# Set the on-disk source file for this resource
# @return [String]
def source_file
# TODO: Make this work when get_source_file doesn't exist
@source_file || get_source_file
end
# Initialize resource with parent store and URL
# @param [Middleman::Sitemap::Store] store
# @param [String] path
# @param [String] source_file
def initialize(store, path, source_file=nil)
@store = store
@app = @store.app
@path = path.gsub(' ', '%20') # handle spaces in filenames
@source_file = source_file
@destination_path = @path
# Options are generally rendering/sitemap options
# Locals are local variables for rendering this resource's template
# Page are data that is exposed through this resource's data member.
# Note: It is named 'page' for backwards compatibility with older MM.
@local_metadata = { options: {}, locals: {}, page: {} }
end
# Whether this resource has a template file
# @return [Boolean]
def template?
return false if source_file.nil?
!::Tilt[source_file].nil?
end
# Get the metadata for both the current source_file and the current path
# @return [Hash]
def metadata
# TODO: Get rid of all this
result = @store.metadata_for_path(path).dup
file_meta = @store.metadata_for_file(source_file).dup
result.deep_merge!(file_meta)
local_meta = @local_metadata.dup
result.deep_merge!(local_meta)
result
end
# Data about this resource, populated from frontmatter or extensions.
# @return [HashWithIndifferentAccess]
def data
# TODO: Upconvert/freeze at this point?
metadata[:page]
end
# Merge in new metadata specific to this resource.
# @param [Hash] meta A metadata block like provides_metadata_for_path takes
def add_metadata(meta={})
@local_metadata.deep_merge!(meta.dup)
end
# The output/preview URL for this resource
# @return [String]
attr_accessor :destination_path
# Extension of the path (i.e. '.js')
# @return [String]
def ext
File.extname(path)
end
# Render this resource
# @return [String]
def render(opts={}, locs={})
2014-04-29 20:43:05 +02:00
return ::Middleman::FileRenderer.new(@app, source_file).template_data_for_file unless template?
2012-04-04 19:26:07 +02:00
relative_source = Pathname(source_file).relative_path_from(Pathname(@app.root))
@app.instrument 'render.resource', path: relative_source, destination_path: destination_path do
md = metadata.dup
opts = md[:options].deep_merge(opts)
locs = md[:locals].deep_merge(locs)
2014-04-29 19:50:21 +02:00
locs[:current_path] ||= destination_path
2013-06-24 22:39:14 +02:00
# Certain output file types don't use layouts
2014-04-29 19:50:21 +02:00
unless opts.key?(:layout)
opts[:layout] = false if %w(.js .json .css .txt).include?(ext)
2013-06-24 22:39:14 +02:00
end
renderer = ::Middleman::TemplateRenderer.new(@app, source_file)
renderer.render(locs, opts)
end
end
# A path without the directory index - so foo/index.html becomes
# just foo. Best for linking.
# @return [String]
def url
url_path = destination_path
if @app.config[:strip_index_file]
url_path = url_path.sub(/(^|\/)#{Regexp.escape(@app.config[:index_file])}$/,
@app.config[:trailing_slash] ? '/' : '')
end
File.join(@app.config[:http_prefix], url_path)
end
# Whether the source file is binary.
#
# @return [Boolean]
def binary?
::Middleman::Util.binary?(source_file)
end
2012-04-04 19:26:07 +02:00
end
end
end