Class: Middleman::Sitemap::Resource

Inherits:
Object
  • Object
show all
Includes:
Contracts, Extensions::Traversal
Defined in:
lib/middleman-core/sitemap/resource.rb,
lib/middleman-core/sitemap/extensions/proxies.rb

Overview

Sitemap Resource class

Constant Summary collapse

METADATA_HASH =
({ options: Maybe[Hash], locals: Maybe[Hash], page: Maybe[Hash] })

Constants included from Contracts

Contracts::PATH_MATCHER

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Extensions::Traversal

#children, #directory_index?, #eponymous_directory?, #eponymous_directory_path, #parent, #siblings

Methods included from Contracts

#Contract

Constructor Details

#initialize(store, path, source = nil) ⇒ Resource

Returns a new instance of Resource.



46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/middleman-core/sitemap/resource.rb', line 46

def initialize(store, path, source=nil)
  @store       = store
  @app         = @store.app
  @path        = path

  source = Pathname(source) if source && source.is_a?(String)

  if source && source.is_a?(Pathname)
    @file_descriptor = ::Middleman::SourceFile.new(source.relative_path_from(@app.source_dir), source, @app.source_dir, Set.new([:source]))
  else
    @file_descriptor = source
  end

  @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.
  @metadata = { options: {}, locals: {}, page: {} }
end

Instance Attribute Details

#destination_pathString Also known as: request_path

The output path in the build directory for this resource

Returns:



22
23
24
# File 'lib/middleman-core/sitemap/resource.rb', line 22

def destination_path
  @destination_path
end

#file_descriptorObject (readonly)

Returns the value of attribute file_descriptor.



27
28
29
# File 'lib/middleman-core/sitemap/resource.rb', line 27

def file_descriptor
  @file_descriptor
end

#metadataObject (readonly)

Returns the value of attribute metadata.



39
40
41
# File 'lib/middleman-core/sitemap/resource.rb', line 39

def 
  @metadata
end

#pathString (readonly)

The source path of this resource (relative to the source directory, without template extensions)

Returns:



18
19
20
# File 'lib/middleman-core/sitemap/resource.rb', line 18

def path
  @path
end

Instance Method Details

#add_metadata(meta = {}) ⇒ Object



90
91
92
# File 'lib/middleman-core/sitemap/resource.rb', line 90

def (meta={})
  @metadata.deep_merge!(meta)
end

#Any

This method returns an undefined value.

Ignore a resource directly, without going through the whole ignore filter stuff.



167
# File 'lib/middleman-core/sitemap/resource.rb', line 167

Contract Any

#binary?Boolean

Returns:

  • (Boolean)


160
161
162
# File 'lib/middleman-core/sitemap/resource.rb', line 160

def binary?
  !file_descriptor.nil? && ::Middleman::Util.binary?(file_descriptor[:full_path].to_s)
end

#BoolBoolean

Whether the Resource is ignored

Returns:

  • (Boolean)


70
# File 'lib/middleman-core/sitemap/resource.rb', line 70

Contract Bool

#content_typeObject



190
191
192
# File 'lib/middleman-core/sitemap/resource.rb', line 190

def content_type
  options[:content_type] || ::Rack::Mime.mime_type(ext, nil)
end

#dataObject



97
98
99
# File 'lib/middleman-core/sitemap/resource.rb', line 97

def data
  ::Middleman::Util.recursively_enhance([:page])
end

#extObject



119
120
121
# File 'lib/middleman-core/sitemap/resource.rb', line 119

def ext
  File.extname(path)
end

#HashString

Render this resource

Returns:



104
# File 'lib/middleman-core/sitemap/resource.rb', line 104

Contract Hash

#ignore!Object



168
169
170
# File 'lib/middleman-core/sitemap/resource.rb', line 168

def ignore!
  @ignored = true
end

#ignored?Boolean

Returns:

  • (Boolean)


175
176
177
178
179
180
181
182
183
184
185
# File 'lib/middleman-core/sitemap/resource.rb', line 175

def ignored?
  return true if @ignored
  # Ignore based on the source path (without template extensions)
  return true if @app.sitemap.ignored?(path)
  # This allows files to be ignored by their source file name (with template extensions)
  if !self.is_a?(ProxyResource) && file_descriptor && @app.sitemap.ignored?(file_descriptor[:relative_path].to_s)
    true
  else
    false
  end
end

#indifferent_access?Hash

Data about this resource, populated from frontmatter or extensions.

Returns:



# File 'lib/middleman-core/sitemap/resource.rb', line 96

#localsObject



112
113
114
# File 'lib/middleman-core/sitemap/resource.rb', line 112

def locals
  [:locals]
end

#METADATA_HASHHash

The metadata for this resource

Returns:



38
# File 'lib/middleman-core/sitemap/resource.rb', line 38

Contract METADATA_HASH

#optionsObject



105
106
107
# File 'lib/middleman-core/sitemap/resource.rb', line 105

def options
  [:options]
end

#proxy_to(_path) ⇒ Object



89
90
91
# File 'lib/middleman-core/sitemap/extensions/proxies.rb', line 89

def proxy_to(_path)
  throw 'Resource#proxy_to has been removed. Use ProxyResource class instead.'
end

#render(opts = {}, locs = {}) ⇒ Object



126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# File 'lib/middleman-core/sitemap/resource.rb', line 126

def render(opts={}, locs={})
  return ::Middleman::FileRenderer.new(@app, file_descriptor[:full_path].to_s).template_data_for_file unless template?

  ::Middleman::Util.instrument 'render.resource', path: file_descriptor[:full_path].to_s, destination_path: destination_path do
    md   = 
    opts = md[:options].deep_merge(opts)
    locs = md[:locals].deep_merge(locs)
    locs[:current_path] ||= destination_path

    # Certain output file types don't use layouts
    opts[:layout] = false if !opts.key?(:layout) && ext != '.html'

    renderer = ::Middleman::TemplateRenderer.new(@app, file_descriptor[:full_path].to_s)
    renderer.render(locs, opts)
  end
end

#source_fileObject



79
80
81
# File 'lib/middleman-core/sitemap/resource.rb', line 79

def source_file
  file_descriptor && file_descriptor[:full_path].to_s
end

#StringString

A path without the directory index - so foo/index.html becomes just foo. Best for linking.

Returns:



78
# File 'lib/middleman-core/sitemap/resource.rb', line 78

Contract String

#template?Boolean

Returns:

  • (Boolean)


71
72
73
74
# File 'lib/middleman-core/sitemap/resource.rb', line 71

def template?
  return false if file_descriptor.nil?
  !::Tilt[file_descriptor[:full_path].to_s].nil?
end

#to_sObject Also known as: inspect



194
195
196
# File 'lib/middleman-core/sitemap/resource.rb', line 194

def to_s
  "#<#{self.class} path=#{@path}>"
end

#urlObject



147
148
149
150
151
152
153
154
# File 'lib/middleman-core/sitemap/resource.rb', line 147

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