-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathepub_update
274 lines (240 loc) · 8.67 KB
/
epub_update
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
#!/usr/bin/env ruby
# frozen_string_literal: true
# Script takes a list of EPUBs, determines the list of
# CSS stylesheets and outputs info about each, and
# possibly replaces stylesheets
require 'optparse'
require 'ostruct'
require 'os'
# Determine the root directory of the code base.
script_dir = File.expand_path(File.dirname(__FILE__))
root_dir = File.dirname(script_dir)
require_relative File.join(root_dir, "lib", "logger")
script_logger = UMPTG::Logger.create(logger_fp: STDOUT)
# Process the script parameters.
options = OpenStruct.new
options.css_file_list = []
options.manifest_item_file_list = []
options.force_update = false
options.license = nil
options.monograph_metadata_file = nil
options.section_type = false
option_parser = OptionParser.new do |opts|
opts.banner = "Usage: #{File.basename(__FILE__)} [-f] [-c css_file] [-l license] [-m manifest_item] [-r metadata_file] [-y] epub_file [epub_file...]"
opts.on('-c', '--css [css_file]', 'CSS replacement') do |css_file|
options.css_file_list << css_file
end
opts.on('-f', '--force-update', 'CSS force update') do |flag|
options.force_update = true
end
opts.on('-l', '--license [license]', 'License') do |license|
options.license = license
end
opts.on('-m', '--manifest_item item_file', 'Manifest item') do |item_file|
options.manifest_item_file_list << item_file
end
opts.on('-r', '--monograph_metadata_file [metadata_file]', 'Monograph metadata file') do |item_file|
options.monograph_metadata_file = item_file
end
opts.on('-y', '--section-type', 'Section roles/types') do |flag|
options.section_type = true
end
opts.on_tail('-h', '--help', 'Print this help message') do
script_logger.info(opts)
exit 0
end
end
option_parser.parse!(ARGV)
if ARGV.count < 1
script_logger.info(option_parser.help)
return
end
epub_file_list = ARGV
require_relative File.join(root_dir, 'lib', 'review')
require_relative File.join(root_dir, 'lib', 'csvfile')
unless options.license.nil?
# Determine is license badge is available
lic_file = Dir.glob(File.join(root_dir, "lib", "license", "cc_badges", "cc_" + options.license + ".xhtml")).first
if lic_file.nil?
script_logger.error("CC badge #{options.license} is not found.")
exit(1)
end
script_logger.info("CC badge #{options.license} found.")
end
metadata_csv = nil
unless options.monograph_metadata_file.nil?
metadata_csv = UMPTG::CSVFile.read(csv_path: options.monograph_metadata_file)
script_logger.info("using metadata file #{options.monograph_metadata_file} found.")
end
epub_updater = UMPTG::Review::EPUBUpdater.new(
logger: script_logger
)
# Travese the list of EPUB files to update.
epub_file_list.each do |epub_file|
epub_file = File.expand_path(epub_file)
unless File.exist?(epub_file)
script_logger.error("invalid EPUB file path #{epub_file}.")
next
end
script_logger.info("*** processing #{File.basename(epub_file)} ***")
STDOUT.flush
epub = UMPTG::EPUB::Archive.new(epub_file: epub_file)
unless options.css_file_list.empty?
epub_updater.update_css(
epub: epub,
css_file_list: options.css_file_list,
css_force_update: options.force_update,
)
end
manifest_item_list = []
failed = false
options.manifest_item_file_list.each do |manifest_item_file|
manifest_item_file = File.expand_path(manifest_item_file)
unless File.exist?(manifest_item_file)
script_logger.info("manifest file does not exist #{manifest_item_file}")
next
end
unless File.extname(manifest_item_file) == ".xhtml"
manifest_item_list << manifest_item_file
next
end
xml_doc = Nokogiri::XML(File.read(manifest_item_file))
img_file_list = []
xml_doc.xpath("//*[local-name()='img']").each do |img_node|
src = img_node['src']
img_file = File.expand_path(src, File.dirname(manifest_item_file))
unless File.exist?(img_file)
script_logger.error("image file #{img_file} not found in manifest item #{manifest_item_file}")
failed = true
next
end
img_file_list << img_file
end
next if failed
#manifest_item_list << manifest_item_file
manifest_item_list += img_file_list
puts img_file_list
end
next if failed
metadata_row = nil
unless metadata_csv.nil?
bname = File.basename(epub_file)
metadata_row = metadata_csv.find {|r| r['Monograph ID'] == bname }
if metadata_row.nil?
script_logger.warn("metadata row not found #{bname}.")
else
script_logger.info("metadata row found #{bname}.")
end
end
cc_lic = options.license
unless metadata_row.nil?
cc = metadata_row['CC License']
m = cc.match(/\/licenses\/([^\/]+)\//)
if m.nil?
script_logger.warn("license #{cc} not found.")
else
cc_lic = m[1].gsub(/\-/, '_')
script_logger.info("license #{cc_lic} found.")
end
end
unless cc_lic.nil?
license_badge_file = File.join(root_dir, "lib", "license", "cc_badges", "cc_" + cc_lic + ".png")
manifest_item_list << license_badge_file if File.exist?(license_badge_file)
end
manifest_item_list.each do |manifest_item_file|
manifest_item_file = File.expand_path(manifest_item_file)
script_logger.info("adding manifest item #{manifest_item_file}")
epub_updater.add_item(
epub: epub,
item_file: manifest_item_file,
spine_loc: 2
)
end
unless cc_lic.nil? and !options.section_type
# Process the epub and generate the image information.
epub_reviewer = UMPTG::Review::EPUBReviewer.new(
epub: epub,
logger: script_logger
)
unless cc_lic.nil?
license_fragment = nil
license_file = File.join(root_dir, "lib", "license", "cc_badges", "cc_" + cc_lic + ".xhtml")
if File.exist?(license_file)
script_logger.info("using CC license file #{File.basename(license_file)}.")
license_doc = Nokogiri::XML(File.read(license_file))
license_fragment = license_doc.xpath("//*[local-name()='body']").first
unless metadata_csv.nil?
bname = File.basename(epub_file)
mrow = metadata_csv.find {|r| r['Monograph ID'] == bname }
unless mrow.nil?
=begin
doi = mrow['DOI']
frag = Nokogiri::XML::DocumentFragment.parse("<p id='doi'>DOI: <a href=\"#{doi}\">#{doi}</a></p>")
license_fragment.add_child(frag)
=end
oa_isbn_list = []
ebook_isbn_list = []
mrow['ISBN(s)'].split(';').each do |s|
s.strip!
m = s.match(/\(([^\)]+)\)/)
next if m.nil?
m[1].downcase!
if m[1] == 'open access' or m[1].start_with?('oa ')
oa_isbn_list << "ISBN: #{s}"
elsif m[1].start_with?('ebook')
ebook_isbn_list << "ISBN: #{s}"
end
end
if !oa_isbn_list.empty?
script_logger.info("using OA ISBNs.")
isbn_markup = oa_isbn_list.join('<br/>')
elsif !ebook_isbn_list.empty?
script_logger.warn("using ebook ISBNs.")
isbn_markup = ebook_isbn_list.join('<br/>')
else
script_logger.warn("no OA/ebook ISBNs found.")
isbn_markup = ""
end
frag = Nokogiri::XML::DocumentFragment.parse("#{isbn_markup}")
oa_node = license_fragment.xpath("//*[@id='isbn_open_access']").first
oa_node.add_child(frag) unless oa_node.nil?
end
end
else
script_logger.warn("CC license file #{File.basename(license_file)} does not exist.")
end
epub_reviewer.review(
review_options: { add_license: true },
license_file: license_badge_file,
license_fragment: license_fragment,
normalize: true
)
action_map = epub_reviewer.action_map
end
if options.section_type
epub_reviewer.review(
review_options: { section_type: true }
)
end
end
if epub.modified
epub_reviewer = UMPTG::Review::EPUBReviewer.new(
epub: epub,
logger: script_logger
)
epub_reviewer.review(
review_options: { fix_img_ref: true },
normalize: true
)
# EPUB updated. Save it to a new file.
new_epub_file = File.join(File.dirname(epub_file), File.basename(epub_file, ".*") + "_replace" + File.extname(epub_file))
script_logger.info("EPUB updated. Writing new EPUB file #{File.basename(new_epub_file)}")
epub.save(epub_file: new_epub_file)
else
# No EPUB updates.
script_logger.info("no updates for EPUB file #{File.basename(epub_file)}")
end
script_logger.info()
STDOUT.flush
end
script_logger.info("#{File.basename(__FILE__)} processing completed.")