forked from neo4j-documentation/developer-resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
render.rb
executable file
·76 lines (64 loc) · 2.71 KB
/
render.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
68
69
70
71
72
73
74
75
76
#!/usr/bin/env ruby
require 'rubygems'
require 'bundler/setup'
require 'dotenv'
Dotenv.load
require 'logger'
require 'ascii_press'
LOGGER = Logger.new(STDOUT)
require './html_transformer' # Neo Tech specific
ASCIIDOC_TEMPLATES_DIR = ENV['ASCIIDOC_TEMPLATES_DIR'] || '_templates'
IMAGE_BASE_URL = ENV['IMAGE_BASE_URL'] || 'https://dist.neo4j.com/wp-content/uploads/'
EXAMPLES = ENV['EXAMPLES'] || 'https://github.com/neo4j-examples'
CYPHERMANUAL = ENV['CYPHERMANUAL'] || 'https://neo4j.com/docs/cypher-manual/current'
DRIVERMANUAL = ENV['DRIVERMANUAL'] || 'https://neo4j.com/docs/driver-manual/current'
OPSMANUAL = ENV['OPSMANUAL'] || 'http://neo4j.com/docs/operations-manual/current'
GITHUB = ENV['GITHUB'] || 'https://github.com/neo4j-contrib/developer-resources/tree/gh-pages'
ASCIIDOC_ATTRIBUTES = %W(allow-uri-read
icons=font
linkattrs
source-highlighter=codemirror
img=#{IMAGE_BASE_URL}
examples=#{EXAMPLES}
cyphermanual=#{CYPHERMANUAL}
drivermanual=#{DRIVERMANUAL}
opsmanual=#{OPSMANUAL}
github=#{GITHUB})
raise 'Usage: feed me asciidoctor files (or pass `all` to find all files)' if ARGV.empty?
adoc_file_paths = if ARGV == ['all']
`find . -mindepth 2 -maxdepth 4 -name "*.adoc"`.split(/[\n\r]+/)
else
ARGV
end
# AsciiPress.verify_adoc_slugs!(adoc_file_paths)
publish = ENV['BLOG_REST_HOSTNAME'] && ENV['BLOG_REST_USERNAME'] && ENV['BLOG_REST_PASSWORD'] && ENV['PUBLISH']
renderer = AsciiPress::Renderer.new(after_conversion: (publish ? HtmlTransformer.method(:transform) : nil),
asciidoc_options: {
attributes: ASCIIDOC_ATTRIBUTES,
header_footer: true,
safe: 0,
template_dir: ASCIIDOC_TEMPLATES_DIR,
})
if publish
syncer = AsciiPress::WordPressHttpSyncer.new(
ENV['BLOG_REST_HOSTNAME'],
ENV['BLOG_REST_USERNAME'],
ENV['BLOG_REST_PASSWORD'],
"developer",
renderer,
post_status: 'publish')
end
if syncer
puts "Syncing to WordPress"
syncer.sync(adoc_file_paths, {})
else
FileUtils.mkdir_p('developer')
`cp -r assets developer/`
adoc_file_paths.each do |adoc_file_path|
dir = File.join('developer', File.dirname(adoc_file_path))
FileUtils.mkdir_p(dir)
html_file_path = File.join(dir, 'index.html')
LOGGER.info "Rendering #{adoc_file_path} to #{html_file_path}"
File.open(html_file_path, 'w') { |f| f << renderer.render(adoc_file_path).html }
end
end