module RelatonIetf class RfcIndexEntry # # Document parser initalization # # @param [Nokogiri::XML::Element] doc document # @param [String] doc_id document id # @param [Array] is_also included document ids # def initialize(doc, doc_id, is_also) @doc = doc @name = doc.name.split("-").first @shortnum = doc_id[-4..-1].sub(/^0+/, "") @doc_id = doc_id @is_also = is_also end # # Initialize document parser and run it # # @param [Nokogiri::XML::Element] doc document # # @return [RelatonIetf::IetfBibliographicItem, nil] # def self.parse(doc) doc_id = doc.at("./xmlns:doc-id") is_also = doc.xpath("./xmlns:is-also/xmlns:doc-id").map &:text return unless doc_id && is_also.any? new(doc, doc_id.text, is_also).parse end # # Parse document # # @return [RelatonIetf::IetfBibliographicItem] bib item # def parse # rubocop:disable Metrics/MethodLength IetfBibliographicItem.new( fetched: Date.today.to_s, title: make_title, docnumber: docnumber, type: "standard", docid: parse_docid, language: ["en"], script: ["Latn"], link: parse_link, formattedref: formattedref, relation: parse_relation, ) end def make_title t = case @name when "bcp" then "Best Current Practice #{@shortnum}" when "fyi" then "For Your Information #{@shortnum}" when "std" then "Internet Standard technical specification #{@shortnum}" end [RelatonBib::TypedTitleString.new(content: t, language: "en", script: "Latn")] end # # Document number # # @return [Strinng] document number # def docnumber @doc_id end # # Create docidentifiers # # @return [Array] docidentifiers # def parse_docid [ RelatonBib::DocumentIdentifier.new(type: "IETF", id: pub_id, primary: true), RelatonBib::DocumentIdentifier.new(type: "IETF", scope: "anchor", id: anchor), ] end # # Create pub_id # # @return [String] pub_id # def pub_id "#{@name.upcase} #{@shortnum}" end # # Create anchor # # @return [String] anchor # def anchor "#{@name.upcase}#{@shortnum}" end # # Create link # # @return [Array] # def parse_link [RelatonBib::TypedUri.new(type: "src", content: "https://www.rfc-editor.org/info/#{@name}#{@shortnum}")] end # # Create formatted reference # # @return [RelatonBib::FormattedRef] # def formattedref RelatonBib::FormattedRef.new( content: anchor, language: "en", script: "Latn", ) end # # Create relations # # @return [Array] relations # def parse_relation @is_also.map do |ref| fref = RelatonBib::FormattedRef.new content: ref id = ref.sub(/^([A-Z]+)0*(\d+)$/, '\1 \2') docid = RelatonBib::DocumentIdentifier.new(type: "IETF", id: id, primary: true) bib = IetfBibliographicItem.new formattedref: fref, docid: [docid] { type: "includes", bibitem: bib } end end end end