-
Notifications
You must be signed in to change notification settings - Fork 1
/
jekyll_xml_source.rb
67 lines (55 loc) · 1.51 KB
/
jekyll_xml_source.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
##
# Download XML data from external sources
# Convert data to JSON and optionally save it to cache
#
# @author Derek Smart<[email protected]>
# @copyright 2018
# @license MIT
require 'json'
require 'net/http'
require 'active_support/isolated_execution_state'
require 'active_support/core_ext/hash'
module Jekyll_Xml_Source
class Generator < Jekyll::Generator
safe true
priority :highest
def saveToCache(data_source, name, content)
path = "#{data_source}/#{name}.json"
File.open(path,"w") do |file|
file.write(content)
end
end
def loadFromCache(data_source, name)
path = "#{data_source}/#{name}.json"
if not File.exist?(path)
return
end
File.open(path,"r") do |file|
return JSON.load(file.read())
end
end
def generate(site)
config = site.config['jekyll_xml']
data_source = (site.config['data_source'] || '_data')
if !config
return
end
config.each do |data|
if data['cache']
site.data[data['data']] = loadFromCache(data_source, data['data'])
end
if site.data[data['data']].nil?
begin
result = Net::HTTP.get_response(URI.parse(data['source'])).body
site.data[data['data']] = JSON.load(Hash.from_xml(result).to_json)
rescue
next
end
if data['cache']
saveToCache(data_source, data['data'], Hash.from_xml(result).to_json)
end
end
end
end
end
end