-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmethods.rb
110 lines (96 loc) · 2.65 KB
/
methods.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
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
105
106
107
108
109
110
# frozen_string_literal: true
module Nokogiri
module XML
# Patch to add class?
class Node
def class?(*classes)
present = false
if attribute('class')
present = true
classes.each do |klass|
present &&= self['class'].include? klass
end
end
present
end
end
end
end
# https://stackoverflow.com/a/42533209/368328
def command?(cmd)
exts = ENV['PATHEXT'] ? ENV['PATHEXT'].split(';') : ['']
ENV['PATH'].split(File::PATH_SEPARATOR).each do |path|
exts.each do |ext|
exe = File.join(path, "#{cmd}#{ext}")
return exe if File.executable?(exe) && !File.directory?(exe)
end
end
nil
end
def commands?(commands)
commands.map { |c| command? c }
end
def format_match(format, format_to_match)
[:all, format_to_match].include? format
end
def gen_epub(name, format)
return unless format_match(format, :epub)
begin
require 'paru/pandoc'
Paru::Pandoc.new do
from 'html'
to 'epub'
epub_metadata "metadata/#{name}.xml"
epub_cover_image "covers/#{name}.jpg"
metadata title: name
data_dir Dir.pwd
output "books/#{name}.epub"
end.convert File.read("books/#{name}.html")
puts '[epub] Generated EPUB file'
rescue LoadError
puts "[error] Can't generate EPUB without paru"
end
end
def gen_pdf_pandoc(name, format)
return unless format_match(format, :pdf)
begin
require 'paru/pandoc'
Paru::Pandoc.new do
from 'html'
to 'pdf'
pdf_engine 'xelatex'
metadata title: name
data_dir Dir.pwd
output "books/#{name}.pdf"
end.convert File.read("books/#{name}_pdf.html")
puts '[pdf] Generated PDF file'
rescue LoadError
puts "[error] Can't generate PDF without paru"
end
end
def inside_docker?
File.readlines('/proc/1/sched').each do |line|
return line.strip != 'systemd (1, #threads: 1)'
end
rescue Errno::ENOENT
false
end
def gen_pdf(name, format)
if commands?(%w[pandoc convert xhtml2pdf pdftk]) && format_match(format, :pdf)
# Generate PDF as well
# First, lets make a better css version of the html
`pandoc books/#{name}.html -s -c ../epub.css -o books/#{name}_pdf.html`
puts '[pdf] Generated html for pdf'
`xhtml2pdf books/#{name}_pdf.html books/#{name}-nocover.pdf`
puts '[pdf] Generated PDF without cover'
# Join the cover and pdf together
`pdftk covers/#{name}.pdf books/#{name}-nocover.pdf cat output books/#{name}.pdf`
puts '[pdf] Generated PDF file'
else
puts '[error] Please check README for PDF dependencies'
end
end
def generate(name, format = :all)
gen_epub(name, format)
gen_pdf(name, format)
end