Class: Metanorma::CollectionRenderer

Inherits:
Object
  • Object
show all
Defined in:
lib/metanorma/collection_renderer.rb

Overview

XML collection renderer

Defined Under Namespace

Classes: Dummy

Constant Summary collapse

FORMATS =
%i[html xml doc pdf].freeze

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(xml, folder, options = {}) ⇒ CollectionRenderer

This is only going to render the HTML collection We presuppose that the bibdata of the document is equivalent to that of the collection, and that the flavour gem can sensibly process it. We may need to enhance metadata in the flavour gems isodoc/metadata.rb with collection metadata

Parameters:

  • xml (Metanorma::Collection)

    input XML collection

  • folder (String)

    input folder

  • options (Hash) (defaults to: {})

Options Hash (options):

  • :coverpage (String)

    cover page HTML (Liquid template)

  • :format (Array<Symbol>)

    list of formats (xml,html,doc,pdf)

  • :ourput_folder (String)

    output directory



22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/metanorma/collection_renderer.rb', line 22

def initialize(xml, folder, options = {}) # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
  check_options options
  @xml = Nokogiri::XML xml # @xml is the collection manifest
  @lang = @xml&.at(ns("//bibdata/language"))&.text || "en"
  @script = @xml&.at(ns("//bibdata/script"))&.text || "Latn"
  @doctype = doctype
  require "metanorma-#{@doctype}"

  # output processor for flavour
  @isodoc = isodoc

  @outdir = options[:output_folder]
  @coverpage = options[:coverpage]
  @format = options[:format]

  # list of files in the collection
  @files = read_files folder
  FileUtils.rm_rf @outdir
  FileUtils.mkdir_p @outdir
end

Class Method Details

.render(col, options = {}) ⇒ Object

Parameters:

Options Hash (options):

  • :coverpage (String)

    cover page HTML (Liquid template)

  • :format (Array<Synbol>)

    list of formats

  • :ourput_folder (Strong)

    output directory



48
49
50
51
52
53
54
# File 'lib/metanorma/collection_renderer.rb', line 48

def self.render(col, options = {})
  folder = File.dirname col.file
  cr = new(col.to_xml, folder, options)
  cr.files
  cr.concatenate(col, options)
  cr.coverpage if options[:format]&.include?(:html)
end

Instance Method Details

#concatenate(col, options) ⇒ Object



56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/metanorma/collection_renderer.rb', line 56

def concatenate(col, options)
  options[:format] << :presentation if options[:format].include?(:pdf)
  options[:format].uniq.each do |e|
    next unless %i(presentation xml).include?(e)
    ext = e == :presentation ? "presentation.xml" : e.to_s
    out = col.clone
    out.directives << "documents-inline"
    out.documents.keys.each do |id|
      filename = @files[id][:outputs][e]
      out.documents[id] = Metanorma::Document.raw_file(filename)
    end
    File.open(File.join(@outdir, "collection.#{ext}"), "w:UTF-8") { |f| f.write(out.to_xml) }
  end
  options[:format].include?(:pdf) and
    pdfconv.convert(File.join(@outdir, "collection.presentation.xml"))
end

#coverpageObject

populate liquid template of ARGV with metadata extracted from collection manifest



154
155
156
157
158
# File 'lib/metanorma/collection_renderer.rb', line 154

def coverpage
  File.open(File.join(@outdir, "index.html"), "w:UTF-8") do |f|
    f.write @isodoc.populate_template(File.read(@coverpage))
  end
end

#docrefs(elm, builder) ⇒ Object

Parameters:

  • elm (Nokogiri::XML::Element)
  • builder (Nokogiri::XML::Builder)


181
182
183
184
185
186
187
188
189
# File 'lib/metanorma/collection_renderer.rb', line 181

def docrefs(elm, builder)
  elm.xpath(ns("./docref")).each do |d|
    identifier = d.at(ns("./identifier")).text
    link = if d["fileref"] then d["fileref"].sub(/\.xml$/, ".html")
           else d["id"] + ".html"
           end
    builder.li { builder.a identifier, href: link }
  end
end

#doctypeObject

infer the flavour from the first document identifier; relaton does that



101
102
103
104
105
106
107
108
109
110
# File 'lib/metanorma/collection_renderer.rb', line 101

def doctype
  if (docid = @xml&.at(ns("//bibdata/docidentifier/@type"))&.text)
    dt = docid.downcase
  elsif (docid = @xml&.at(ns("//bibdata/docidentifier"))&.text)
    dt = docid.sub(/\s.*$/, "").lowercase
  else return "standoc"
  end
  @registry = Metanorma::Registry.instance
  @registry.alias(dt.to_sym)&.to_s || dt
end

#filesObject

process each file in the collection files are held in memory, and altered as postprocessing



304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
# File 'lib/metanorma/collection_renderer.rb', line 304

def files # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
  @files.each do |identifier, x|
    file, filename = targetfile(x, true)
    file = update_xrefs(file, identifier)
    Tempfile.open(["collection", ".xml"], encoding: "utf-8") do |f|
      f.write(file)
      f.close
      # warn "metanorma compile -x html #{f.path}"
      c = Compile.new
      c.compile f.path, format: :asciidoc, extension_keys: @format
      @files[identifier][:outputs] = {}
      @format.each do |e|
        ext = c.processor.output_formats[e]
        fn = File.basename(filename).sub(/(?<=\.)[^\.]+$/, ext.to_s)
        FileUtils.mv f.path.sub(/\.xml$/, ".#{ext}"), File.join(@outdir, fn)
        @files[identifier][:outputs][e] = File.join(@outdir, fn)
      end
    end
  end
end

#indexfile(elm) ⇒ String

single level navigation list, with hierarchical nesting if multiple lists are needed as separate HTML fragments, multiple instances of this function will be needed, and associated to different variables in the call to @isodoc.metadata_init (including possibly an array of HTML fragments)

Parameters:

  • elm (Nokogiri::XML::Element)

Returns:

  • (String)

    XML



199
200
201
202
203
204
205
206
207
208
209
# File 'lib/metanorma/collection_renderer.rb', line 199

def indexfile(elm)
  Nokogiri::HTML::Builder.new do |b|
    b.ul do
      b.li indexfile_title(elm)
      indexfile_docref(elm, b)
      elm.xpath(ns("./manifest")).each do |d|
        b << indexfile(d)
      end
    end
  end.doc.root.to_html
end

#indexfile_docref(elm, builder) ⇒ Object

uses the identifier to label documents; other attributes (title) can be looked up in @files[:bibdata]

Parameters:

  • elm (Nokogiri::XML::Element)
  • builder (Nokogiri::XML::Builder)


173
174
175
176
177
# File 'lib/metanorma/collection_renderer.rb', line 173

def indexfile_docref(elm, builder)
  return "" unless elm.at(ns("./docref"))

  builder.ul { |b| docrefs(elm, b) }
end

#indexfile_title(elm) ⇒ String

Parameters:

  • elm (Nokogiri::XML::Element)

Returns:

  • (String)


162
163
164
165
166
# File 'lib/metanorma/collection_renderer.rb', line 162

def indexfile_title(elm)
  lvl = elm&.at(ns("./level"))&.text&.capitalize
  lbl = elm&.at(ns("./title"))&.text
  "#{lvl}#{lvl && lbl ? ': ' : ''}#{lbl}"
end

#isodocObject

The isodoc class for the metanorma flavour we are using



84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# File 'lib/metanorma/collection_renderer.rb', line 84

def isodoc # rubocop:disable Metrics/MethodLength
  x = Asciidoctor.load nil, backend: @doctype.to_sym
  isodoc = x.converter.html_converter(Dummy.new)
  isodoc.i18n_init(@lang, @script) # read in internationalisation
  # create the @meta class of isodoc, with "navigation" set to the index bar
  # extracted from the manifest
  nav = indexfile(@xml.at(ns("//manifest")))
  i18n = isodoc.i18n
  i18n.set(:navigation, nav)
  isodoc.(@lang, @script, i18n)
  # populate the @meta class of isodoc with the various metadata fields
  # native to the flavour; used to populate Liquid
  isodoc.info(@xml, nil)
  isodoc
end

#ns(xpath) ⇒ Object



112
113
114
# File 'lib/metanorma/collection_renderer.rb', line 112

def ns(xpath)
  IsoDoc::Convert.new({}).ns(xpath)
end

#pdfconvObject



73
74
75
76
# File 'lib/metanorma/collection_renderer.rb', line 73

def pdfconv
  x = Asciidoctor.load nil, backend: @doctype.to_sym
  x.converter.pdf_converter(Dummy.new)
end

#read_anchors(xml) ⇒ Object

map locality type and label (e.g. “clause” “1”) to id = anchor for a document



140
141
142
143
144
145
146
147
148
149
150
# File 'lib/metanorma/collection_renderer.rb', line 140

def read_anchors(xml)
  ret = {}
  xrefs = @isodoc.xref_init(@lang, @script, @isodoc, @isodoc.i18n, {})
  xrefs.parse xml
  xrefs.get.each do |k, v|
    v[:label] && v[:type] || next
    ret[v[:type]] ||= {}
    ret[v[:type]][v[:label]] = k
  end
  ret
end

#read_files(path) ⇒ Hash{String=>Hash}

hash for each document in collection of document identifier to: document reference (fileref or id), type of document reference, and bibdata entry for that file

Parameters:

  • path (String)

    path to collection

Returns:

  • (Hash{String=>Hash})


121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'lib/metanorma/collection_renderer.rb', line 121

def read_files(path) # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
  files = {}
  @xml.xpath(ns("//docref")).each do |d|
    identifier = d.at(ns("./identifier")).text
    files[identifier] = if d["fileref"]
                          { type: "fileref",
                            ref: File.join(path, d["fileref"]) }
                        else { type: "id", ref: d["id"] }
                        end
    file, _filename = targetfile(files[identifier], true)
    xml = Nokogiri::XML(file)
    files[identifier][:anchors] = read_anchors(xml)
    files[identifier][:bibdata] = xml.at(ns("//bibdata"))
  end
  files
end

#ref_file(ref, read) ⇒ Array<String, nil>

Parameters:

  • ref (String)
  • read (Boolean)

Returns:

  • (Array<String, nil>)


225
226
227
228
229
# File 'lib/metanorma/collection_renderer.rb', line 225

def ref_file(ref, read)
  file = File.read(ref, encoding: "utf-8") if read
  filename = ref.sub(/\.xml$/, ".html")
  [file, filename]
end

#targetfile(data, read = false) ⇒ Array<String, nil>

return file contents + output filename for each file in the collection, given a docref entry

Parameters:

  • data (Hash)
  • read (Boolean) (defaults to: false)

Returns:

  • (Array<String, nil>)


216
217
218
219
220
# File 'lib/metanorma/collection_renderer.rb', line 216

def targetfile(data, read = false)
  if data[:type] == "fileref" then ref_file data[:ref], read
  else xml_file data[:id], read
  end
end

#update_anchors(bib, docxml, _id) ⇒ Object

if there is a crossref to another document, with no anchor, retrieve the anchor given the locality, and insert it into the crossref



285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
# File 'lib/metanorma/collection_renderer.rb', line 285

def update_anchors(bib, docxml, _id) # rubocop:disable Metrics/MethodLength, Metrics/AbcSize
  docid = bib&.at(ns("./docidentifier"))&.text
  docxml.xpath("//xmlns:eref[@citeas = '#{docid}']").each do |e|
    e.at(ns(".//locality[@type = 'anchor']")).nil? || next
    ins = e.at(ns("./localityStack")) || next
    type = ins&.at(ns("./locality/@type"))&.text
    ref = ins&.at(ns("./locality/referenceFrom"))&.text
    (anchor = @files[docid][:anchors][type][ref]) || next
    ref_from = Nokogiri::XML::Node.new "referenceFrom", bib
    ref_from.content = anchor.sub(/^_/, "")
    locality = Nokogiri::XML::Node.new "locality", bib
    locality[:type] = "anchor"
    locality.add_child ref_from
    ins << locality
  end
end

#update_bibitem(bib, identifier) ⇒ Object

Parameters:

  • bib (Nokogiri::XML::Element)
  • identifier (String)


242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
# File 'lib/metanorma/collection_renderer.rb', line 242

def update_bibitem(bib, identifier) # rubocop:disable Metrics/AbcSize, Metrics/MethodLength
  docid = bib&.at(ns("./docidentifier"))&.text
  unless @files[docid]
    warn "Cannot find crossreference to document #{docid} in document "\
      "#{identifier}!"
    abort
  end
  id = bib["id"]
  newbib = bib.replace(@files[docid][:bibdata])
  newbib.name = "bibitem"
  newbib["id"] = id
  newbib&.at(ns("./ext"))&.remove
  _file, url = targetfile(@files[docid], false)
  uri_node = Nokogiri::XML::Node.new "uri", newbib
  uri_node[:type] = "citation"
  uri_node.content = url
  newbib.at(ns("./docidentifier")).previous = uri_node
end

#update_xrefs(file, identifier) ⇒ String

TODO: update crossreferences to other files in the selection repo(current-metanorma-collection/ISO 17301-1:2016) replaced by bibdata of “ISO 17301-1:2016” in situ as bibitem Any erefs to that bibitem id are replaced with relative URL Preferably with anchor, and is a job to realise dynamic lookup of localities

Parameters:

  • file (String)

    XML content

  • identifier (String)

    docid

Returns:

  • (String)

    XML content



271
272
273
274
275
276
277
278
279
280
281
# File 'lib/metanorma/collection_renderer.rb', line 271

def update_xrefs(file, identifier)
  docxml = Nokogiri::XML(file)
  docxml.xpath(ns("//bibitem[not(ancestor::bibitem)]")).each do |b|
    docid = b&.at(ns("./docidentifier[@type = 'repository']"))&.text
    next unless docid && %r{^current-metanorma-collection/}.match(docid)

    update_bibitem(b, identifier)
    update_anchors(b, docxml, docid)
  end
  docxml.to_xml
end

#xml_file(id, read) ⇒ Array<String, nil>

Parameters:

  • id (String)
  • read (Boolean)

Returns:

  • (Array<String, nil>)


234
235
236
237
238
# File 'lib/metanorma/collection_renderer.rb', line 234

def xml_file(id, read)
  file = @xml.at(ns("//doc-container[@id = '#{id}']")).to_xml if read
  filename = id + ".html"
  [file, filename]
end