Class: Glossarist::Validation::Rules::OrphanedImagesRule

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

Instance Method Summary collapse

Instance Method Details

#applicable?(context) ⇒ Boolean

Returns:

  • (Boolean)


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

def applicable?(context)
  context.asset_index.paths.any?
end

#categoryObject



8
# File 'lib/glossarist/validation/rules/orphaned_images_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
49
50
51
52
53
# File 'lib/glossarist/validation/rules/orphaned_images_rule.rb', line 16

def check(context)
  extractor = ReferenceExtractor.new
  referenced_paths = Set.new

  context.concepts.each do |concept|
    # Text-embedded image refs
    concept.localizations.each do |l10n|
      texts = extract_texts(l10n)
      texts.each do |text|
        next unless text
        extractor.extract_from_text(text).each do |ref|
          if ref.is_a?(AssetReference)
            referenced_paths.add(ref.path)
          end
        end
      end
    end

    # Model-level asset refs
    extractor.extract_asset_refs_from_concept(concept).each do |ref|
      referenced_paths.add(ref.path)
    end
  end

  issues = []
  context.asset_index.each_path do |path|
    next if referenced_paths.include?(path)

    issues << issue(
      "Orphaned image: #{path} (not referenced by any concept)",
      code: code, severity: severity,
      location: path,
      suggestion: "Remove the image or reference it from a concept",
    )
  end

  issues
end

#codeObject



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

def code = "GLS-021"

#scopeObject



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

def scope = :collection

#severityObject



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

def severity = "warning"