Class: Glossarist::Validation::Rules::OrphanedBibliographyRule

Inherits:
Base
  • Object
show all
Defined in:
lib/glossarist/validation/rules/orphaned_bibliography_rule.rb

Instance Method Summary collapse

Methods inherited from Base

inherited

Instance Method Details

#applicable?(context) ⇒ Boolean

Returns:

  • (Boolean)


12
13
14
# File 'lib/glossarist/validation/rules/orphaned_bibliography_rule.rb', line 12

def applicable?(context)
  context.bibliography_index.entries.any?
end

#categoryObject



8
# File 'lib/glossarist/validation/rules/orphaned_bibliography_rule.rb', line 8

def category = :references

#check(context) ⇒ Object



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
# File 'lib/glossarist/validation/rules/orphaned_bibliography_rule.rb', line 16

def check(context)
  extractor = ReferenceExtractor.new
  bib_index = context.bibliography_index
  referenced_anchors = Set.new

  context.concepts.each do |concept|
    concept.localizations.each do |l10n|
      l10n.text_content.each do |text|
        next unless text
        extractor.extract_from_text(text).each do |ref|
          if ref.is_a?(BibliographicReference)
            referenced_anchors.add(ref.anchor)
          end
        end
      end
    end
  end

  issues = []
  bib_index.each_entry do |entry|
    next if referenced_anchors.any? { |a| bib_index.resolve?(a) }

    anchor = entry[:anchor]
    issues << issue(
      "Orphaned bibliography entry: '#{anchor}'",
      code: code, severity: severity,
      location: "bibliography.yaml",
      suggestion: "Remove the entry or reference it from a concept",
    )
  end

  issues
end

#codeObject



7
# File 'lib/glossarist/validation/rules/orphaned_bibliography_rule.rb', line 7

def code = "GLS-020"

#scopeObject



10
# File 'lib/glossarist/validation/rules/orphaned_bibliography_rule.rb', line 10

def scope = :collection

#severityObject



9
# File 'lib/glossarist/validation/rules/orphaned_bibliography_rule.rb', line 9

def severity = "warning"