File: reference_extractor.rb

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (37 lines) | stat: -rw-r--r-- 1,020 bytes parent folder | download
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
# frozen_string_literal: true

module Banzai
  # Extract possible GFM references from an arbitrary String for further processing.
  class ReferenceExtractor
    def initialize
      @texts_and_contexts = []
    end

    def analyze(text, context = {})
      @texts_and_contexts << { text: text, context: context }
    end

    def references(type, project, current_user, ids_only: false)
      context = RenderContext.new(project, current_user)
      processor = Banzai::ReferenceParser[type].new(context)

      processor.process(html_documents, ids_only: ids_only)
    end

    def reset_memoized_values
      @html_documents     = nil
      @texts_and_contexts = []
    end

    private

    def html_documents
      # This ensures that we don't memoize anything until we have a number of
      # text blobs to parse.
      return [] if @texts_and_contexts.empty?

      @html_documents ||= Renderer.cache_collection_render(@texts_and_contexts)
        .map { |html| Nokogiri::HTML.fragment(html) }
    end
  end
end