Class: Jekyll::StaticFile

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/jekyll/static_file.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(site, base, dir, name, collection = nil) ⇒ StaticFile

Initialize a new StaticFile.

site - The Site. base - The String path to the <source>. dir - The String path between <source> and the file. name - The String filename of the file. rubocop: disable ParameterLists



29
30
31
32
33
34
35
36
37
38
# File 'lib/jekyll/static_file.rb', line 29

def initialize(site, base, dir, name, collection = nil)
  @site = site
  @base = base
  @dir  = dir
  @name = name
  @collection = collection
  @relative_path = File.join(*[@dir, @name].compact)
  @extname = File.extname(@name)
  @data = @site.frontmatter_defaults.all(relative_path, type)
end

Instance Attribute Details

#dataObject (readonly)

Returns the value of attribute data.



7
8
9
# File 'lib/jekyll/static_file.rb', line 7

def data
  @data
end

#extnameObject (readonly)

Returns the value of attribute extname.



7
8
9
# File 'lib/jekyll/static_file.rb', line 7

def extname
  @extname
end

#nameObject (readonly)

Returns the value of attribute name.



7
8
9
# File 'lib/jekyll/static_file.rb', line 7

def name
  @name
end

#relative_pathObject (readonly)

Returns the value of attribute relative_path.



7
8
9
# File 'lib/jekyll/static_file.rb', line 7

def relative_path
  @relative_path
end

Class Method Details

.mtimesObject

The cache of last modification times [path] -> mtime.



13
14
15
# File 'lib/jekyll/static_file.rb', line 13

def mtimes
  @mtimes ||= {}
end

.reset_cacheObject



17
18
19
# File 'lib/jekyll/static_file.rb', line 17

def reset_cache
  @mtimes = nil
end

Instance Method Details

#basenameObject



109
110
111
# File 'lib/jekyll/static_file.rb', line 109

def basename
  File.basename(name, extname)
end

#defaultsObject

Returns the front matter defaults defined for the file’s URL and/or type as defined in _config.yml.



145
146
147
# File 'lib/jekyll/static_file.rb', line 145

def defaults
  @defaults ||= @site.frontmatter_defaults.all url, type
end

#destination(dest) ⇒ Object

Obtain destination path.

dest - The String path to the destination dir.

Returns destination file path.



51
52
53
# File 'lib/jekyll/static_file.rb', line 51

def destination(dest)
  @site.in_dest_dir(*[dest, destination_rel_dir, @name].compact)
end

#destination_rel_dirObject



55
56
57
58
59
60
61
# File 'lib/jekyll/static_file.rb', line 55

def destination_rel_dir
  if @collection
    File.dirname(url)
  else
    @dir
  end
end

#modified?Boolean

Is source path modified?

Returns true if modified since last write.

Returns:

  • (Boolean)


75
76
77
# File 'lib/jekyll/static_file.rb', line 75

def modified?
  self.class.mtimes[path] != mtime
end

#modified_timeObject



63
64
65
# File 'lib/jekyll/static_file.rb', line 63

def modified_time
  @modified_time ||= File.stat(path).mtime
end

#mtimeObject

Returns last modification time for this file.



68
69
70
# File 'lib/jekyll/static_file.rb', line 68

def mtime
  modified_time.to_i
end

#pathObject

Returns source file path.



42
43
44
# File 'lib/jekyll/static_file.rb', line 42

def path
  File.join(*[@base, @dir, @name].compact)
end

#placeholdersObject



113
114
115
116
117
118
119
120
121
122
# File 'lib/jekyll/static_file.rb', line 113

def placeholders
  {
    :collection => @collection.label,
    :path       => relative_path[
      @collection.relative_directory.size..relative_path.size],
    :output_ext => "",
    :name       => "",
    :title      => "",
  }
end

#to_liquidObject



105
106
107
# File 'lib/jekyll/static_file.rb', line 105

def to_liquid
  @to_liquid ||= Drops::StaticFileDrop.new(self)
end

#typeObject

Returns the type of the collection if present, nil otherwise.



139
140
141
# File 'lib/jekyll/static_file.rb', line 139

def type
  @type ||= @collection.nil? ? nil : @collection.label.to_sym
end

#urlObject

Applies a similar URL-building technique as Jekyll::Document that takes the collection’s URL template into account. The default URL template can be overriden in the collection’s configuration in _config.yml.



127
128
129
130
131
132
133
134
135
136
# File 'lib/jekyll/static_file.rb', line 127

def url
  @url ||= if @collection.nil?
             relative_path
           else
             ::Jekyll::URL.new({
               :template     => @collection.url_template,
               :placeholders => placeholders,
             })
           end.to_s.gsub(%r!/$!, "")
end

#write(dest) ⇒ Object

Write the static file to the destination directory (if modified).

dest - The String path to the destination dir.

Returns false if the file was not modified since last time (no-op).



92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/jekyll/static_file.rb', line 92

def write(dest)
  dest_path = destination(dest)

  return false if File.exist?(dest_path) && !modified?
  self.class.mtimes[path] = mtime

  FileUtils.mkdir_p(File.dirname(dest_path))
  FileUtils.rm(dest_path) if File.exist?(dest_path)
  copy_file(dest_path)

  true
end

#write?Boolean

Whether to write the file to the filesystem

Returns true unless the defaults for the destination path from _config.yml contain ‘published: false`.

Returns:

  • (Boolean)


83
84
85
# File 'lib/jekyll/static_file.rb', line 83

def write?
  defaults.fetch("published", true)
end