Module: CloudCannonJekyll::JsonifyFilter

Defined in:
lib/cloudcannon-jekyll/jsonify-filter.rb

Overview

Filter for converting Jekyll objects into JSON

Constant Summary collapse

STATIC_EXTENSIONS =
[".html", ".htm"].freeze

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.array_to_json(input, depth, max_depth) ⇒ Object



127
128
129
130
131
132
133
# File 'lib/cloudcannon-jekyll/jsonify-filter.rb', line 127

def self.array_to_json(input, depth, max_depth)
  array = input.map do |value|
    JsonifyFilter.to_json(value, depth, max_depth)
  end

  "[#{array.join(",")}]"
end

.config_to_select_data_json(input, depth) ⇒ Object



145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# File 'lib/cloudcannon-jekyll/jsonify-filter.rb', line 145

def self.config_to_select_data_json(input, depth)
  prevent = %w(source destination collections_dir cache_dir plugins_dir layouts_dir data_dir
               includes_dir collections safe include exclude keep_files encoding markdown_ext
               strict_front_matter show_drafts limit_posts future unpublished whitelist
               plugins markdown highlighter lsi excerpt_separator incremental detach port host
               baseurl show_dir_listing permalink paginate_path timezone quiet verbose defaults
               liquid kramdown title url description uploads_dir _comments _options _editor
               _explore _source_editor _array_structures maruku redcloth rdiscount redcarpet
               gems plugins cloudcannon _collection_groups _enabled_editors)

  out = input.map do |key, value|
    next unless value.is_a?(Array) || value.is_a?(Hash)
    next if prevent.include?(key) || key.nil?

    prevent.push key
    "#{key.to_s.to_json}: #{JsonifyFilter.to_json(value, depth)}"
  end

  out.compact!

  "{#{out.join(",")}}" if out.any?
end

.document_data_to_a(data, prevent, depth, max_depth) ⇒ Object



46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'lib/cloudcannon-jekyll/jsonify-filter.rb', line 46

def self.document_data_to_a(data, prevent, depth, max_depth)
  prevent += %w(content output next previous excerpt)

  out = data.map do |key, value|
    next if prevent.include?(key) || key.nil?

    prevent.push key
    next_max_depth = key == "_array_structures" ? 20 : max_depth
    "#{key.to_json}: #{JsonifyFilter.to_json(value, depth, next_max_depth)}"
  end

  out.compact
end

.document_path(input) ⇒ Object



97
98
99
100
101
102
103
104
# File 'lib/cloudcannon-jekyll/jsonify-filter.rb', line 97

def self.document_path(input)
  collections_dir = input.site.config["collections_dir"] || ""
  if input.collection && !collections_dir.empty?
    "#{collections_dir}/#{input.relative_path}"
  else
    input.relative_path
  end
end

.document_to_json(input, depth, max_depth) ⇒ Object



106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# File 'lib/cloudcannon-jekyll/jsonify-filter.rb', line 106

def self.document_to_json(input, depth, max_depth)
  prevent = %w(dir relative_path url collection)

  out = [
    "\"path\": #{JsonifyFilter.to_json(JsonifyFilter.document_path(input), depth, max_depth)}",
    "\"url\": #{JsonifyFilter.to_json(input.url, depth, max_depth)}",
  ]

  unless input.collection.nil?
    collection_json = JsonifyFilter.to_json(input.collection.label, depth, max_depth)
    out.push("\"collection\": #{collection_json}")
  end

  if input.respond_to? :id
    out.push("\"id\": #{JsonifyFilter.to_json(input.id, depth, max_depth)}")
  end

  out += JsonifyFilter.document_data_to_a(input.data, prevent, depth, max_depth)
  "{#{out.join(",")}}"
end

.document_type?(input) ⇒ Boolean

Returns:

  • (Boolean)


26
27
28
# File 'lib/cloudcannon-jekyll/jsonify-filter.rb', line 26

def self.document_type?(input)
  @document_types.include?(input.class)
end

.hash_to_json(input, depth, max_depth) ⇒ Object



135
136
137
138
139
140
141
142
143
# File 'lib/cloudcannon-jekyll/jsonify-filter.rb', line 135

def self.hash_to_json(input, depth, max_depth)
  out = input.map do |key, value|
    next_max_depth = key == "_array_structures" ? 20 : max_depth
    string_key = key.to_s.to_json
    "#{string_key}: #{JsonifyFilter.to_json(value, depth, next_max_depth)}"
  end

  "{#{out.join(",")}}"
end

.legacy_post_to_json(input, depth, max_depth) ⇒ Object



60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/cloudcannon-jekyll/jsonify-filter.rb', line 60

def self.legacy_post_to_json(input, depth, max_depth)
  prevent = %w(dir name path url date id categories tags)

  out = [
    "\"name\": #{JsonifyFilter.to_json(input.name, depth, max_depth)}",
    "\"path\": #{JsonifyFilter.to_json(input.path, depth, max_depth)}",
    "\"url\": #{JsonifyFilter.to_json(input.url, depth, max_depth)}",
    "\"date\": #{JsonifyFilter.to_json(input.date, depth, max_depth)}",
    "\"id\": #{JsonifyFilter.to_json(input.id, depth, max_depth)}",
    "\"categories\": #{JsonifyFilter.to_json(input.categories, depth, max_depth)}",
    "\"tags\": #{JsonifyFilter.to_json(input.tags, depth, max_depth)}",
  ]

  out += JsonifyFilter.document_data_to_a(input.data, prevent, depth, max_depth)
  "{#{out.join(",")}}"
end

.page_to_json(input, depth, max_depth) ⇒ Object



77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# File 'lib/cloudcannon-jekyll/jsonify-filter.rb', line 77

def self.page_to_json(input, depth, max_depth)
  prevent = %w(dir name path url)

  out = [
    "\"name\": #{JsonifyFilter.to_json(input.name, depth, max_depth)}",
    "\"path\": #{JsonifyFilter.to_json(input.path, depth, max_depth)}",
    "\"url\": #{JsonifyFilter.to_json(input.url, depth, max_depth)}",
  ]

  # Merge Jekyll Defaults into data for pages (missing at v3.8.5)
  defaults = input.site.frontmatter_defaults.all(input.relative_path, :pages).tap do |default|
    default.delete("date")
  end

  data = Jekyll::Utils.deep_merge_hashes(defaults, input.data)

  out += JsonifyFilter.document_data_to_a(data, prevent, depth, max_depth)
  "{#{out.join(",")}}"
end

.simple_type?(input) ⇒ Boolean

Returns:

  • (Boolean)


30
31
32
# File 'lib/cloudcannon-jekyll/jsonify-filter.rb', line 30

def self.simple_type?(input)
  @simple_types.include?(input.class) || [true, false].include?(input)
end

.static_file_to_json(input, depth, max_depth) ⇒ Object



34
35
36
37
38
39
40
41
42
43
44
# File 'lib/cloudcannon-jekyll/jsonify-filter.rb', line 34

def self.static_file_to_json(input, depth, max_depth)
  path = input.relative_path.sub(%r!^\/+!, "")
  url = Jekyll::VERSION.start_with?("2.") ? "/#{path}" : input.url

  out = [
    "\"path\": #{JsonifyFilter.to_json(path, depth, max_depth)}",
    "\"url\": #{JsonifyFilter.to_json(url, depth, max_depth)}",
  ]

  "{#{out.join(",")}}"
end

.to_json(input, depth, max_depth = 12) ⇒ Object



168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# File 'lib/cloudcannon-jekyll/jsonify-filter.rb', line 168

def self.to_json(input, depth, max_depth = 12)
  depth += 1

  if depth > max_depth || (depth > 3 && JsonifyFilter.document_type?(input))
    '"MAXIMUM_DEPTH"'
  elsif JsonifyFilter.simple_type?(input)
    input.to_json
  elsif input.is_a?(Jekyll::StaticFile)
    JsonifyFilter.static_file_to_json(input, depth, max_depth)
  elsif input.is_a?(Jekyll::Page)
    JsonifyFilter.page_to_json(input, depth, max_depth)
  elsif Jekyll::VERSION.start_with?("2.") && input.is_a?(Jekyll::Post)
    JsonifyFilter.legacy_post_to_json(input, depth, max_depth)
  elsif input.is_a?(Jekyll::Document)
    JsonifyFilter.document_to_json(input, depth, max_depth)
  elsif input.is_a?(Array)
    JsonifyFilter.array_to_json(input, depth, max_depth)
  elsif input.is_a?(Hash)
    JsonifyFilter.hash_to_json(input, depth, max_depth)
  else
    input.class.to_s.prepend("UNSUPPORTED:").to_json
  end
end

Instance Method Details

#cc_jsonify(input, max_depth = 12) ⇒ Object



210
211
212
# File 'lib/cloudcannon-jekyll/jsonify-filter.rb', line 210

def cc_jsonify(input, max_depth = 12)
  JsonifyFilter.to_json(input, 0, max_depth)
end

#cc_select_data_jsonify(input) ⇒ Object



202
203
204
205
206
207
208
# File 'lib/cloudcannon-jekyll/jsonify-filter.rb', line 202

def cc_select_data_jsonify(input)
  if input.key? "_select_data"
    JsonifyFilter.to_json(input["_select_data"], 0)
  else
    JsonifyFilter.config_to_select_data_json(input, 0)
  end
end

#cc_static_files_jsonify(input) ⇒ Object



192
193
194
195
196
197
198
199
200
# File 'lib/cloudcannon-jekyll/jsonify-filter.rb', line 192

def cc_static_files_jsonify(input)
  out = input.map do |page|
    JsonifyFilter.to_json(page, 1) if STATIC_EXTENSIONS.include?(page.extname)
  end

  out.compact!

  "[#{out.join(",")}]"
end