Module: Middleman::Util::Data

Extended by:
Memoist
Includes:
Contracts
Defined in:
middleman-core/lib/middleman-core/util/data.rb

Constant Summary

Constants included from Contracts

Contracts::PATH_MATCHER

Class Method Summary collapse

Methods included from Contracts

#Contract

Class Method Details

.build_regexes(frontmatter_delims) ⇒ Object


106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# File 'middleman-core/lib/middleman-core/util/data.rb', line 106

def build_regexes(frontmatter_delims)
  frontmatter_delims
    .values
    .flatten(1)
    .map do |start, stop|
    /
      \A(?:[^\r\n]*coding:[^\r\n]*\r?\n)?
      (?<start>#{Regexp.escape(start)})[ ]*\r?\n
      (?<frontmatter>.*?)[ ]*\r?\n?
      ^(?<stop>#{Regexp.escape(stop)})[ ]*\r?\n?
      \r?\n?
      (?<additional_content>.*)
    /mx
  end
end

.parse(source_file, frontmatter_delims, known_type = nil) ⇒ Object


53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# File 'middleman-core/lib/middleman-core/util/data.rb', line 53

def parse(source_file, frontmatter_delims, known_type = nil)
  full_path = source_file[:full_path]

  return [{}, nil] if ::Middleman::Util.binary?(full_path) || source_file[:types].include?(:binary)

  # Avoid weird race condition when a file is renamed
  begin
    content = source_file.read
  rescue EOFError, IOError, ::Errno::ENOENT
    return [{}, nil]
  end

  match = build_regexes(frontmatter_delims)
          .lazy
          .map { |r| r.match(content) }
          .reject(&:nil?)
          .first || {}

  unless match[:frontmatter]
    case known_type
    when :yaml
      return [parse_yaml(content, full_path), nil]
    when :json
      return [parse_json(content, full_path), nil]
    when :toml
      return [parse_toml(content, full_path), nil]
    end
  end

  case [match[:start], match[:stop]]
  when *frontmatter_delims[:yaml]
    [
      parse_yaml(match[:frontmatter], full_path),
      match[:additional_content]
    ]
  when *frontmatter_delims[:json]
    [
      parse_json("{#{match[:frontmatter]}}", full_path),
      match[:additional_content]
    ]
  when *frontmatter_delims[:toml]
    [
      parse_toml(match[:frontmatter], full_path),
      match[:additional_content]
    ]
  else
    [
      {},
      content
    ]
  end
end

.parse_json(content, full_path) ⇒ Object


165
166
167
168
169
170
171
172
173
174
175
176
# File 'middleman-core/lib/middleman-core/util/data.rb', line 165

def parse_json(content, full_path)
  c = begin
    ::Middleman::Util.instrument 'parse.json' do
      ::JSON.parse(content)
    end
  rescue StandardError => e
    warn "JSON Exception parsing #{full_path}: #{e.message}"
    {}
  end

  c ? symbolize_recursive(c) : {}
end

.parse_toml(content, full_path) ⇒ Object


145
146
147
148
149
150
151
152
153
154
155
156
157
158
# File 'middleman-core/lib/middleman-core/util/data.rb', line 145

def parse_toml(content, full_path)
  c = begin
    ::Middleman::Util.instrument 'parse.toml' do
      ::TOML.load(content)
    end
  rescue StandardError
    # TOML parser swallows useful error, so we can't warn about it.
    # https://github.com/jm/toml/issues/47
    warn "TOML Exception parsing #{full_path}"
    {}
  end

  c ? symbolize_recursive(c) : {}
end

.parse_yaml(content, full_path) ⇒ Object


127
128
129
130
131
132
133
134
135
136
137
138
# File 'middleman-core/lib/middleman-core/util/data.rb', line 127

def parse_yaml(content, full_path)
  c = begin
    ::Middleman::Util.instrument 'parse.yaml' do
      ::YAML.safe_load(content, permitted_classes: [Date, Time, DateTime, Symbol, Regexp], aliases: true)
    end
  rescue StandardError, ::Psych::SyntaxError => e
    warn "YAML Exception parsing #{full_path}: #{e.message}"
    {}
  end

  c ? symbolize_recursive(c) : {}
end

.StringHash

Parse JSON frontmatter out of a string

Parameters:

Returns:

  • (Hash)

126
# File 'middleman-core/lib/middleman-core/util/data.rb', line 126

Contract String, Pathname => Hash

.symbolize_recursive(value) ⇒ Object


179
180
181
182
183
184
185
186
187
188
189
190
191
# File 'middleman-core/lib/middleman-core/util/data.rb', line 179

def symbolize_recursive(value)
  case value
  when Hash
    value.map do |k, v|
      key = k.is_a?(String) ? k.to_sym : k
      [key, symbolize_recursive(v)]
    end.to_h
  when Array
    value.map { |v| symbolize_recursive(v) }
  else
    value
  end
end