summaryrefslogtreecommitdiff
path: root/lib/banzai/filter/issuable_state_filter.rb
blob: 0b2b8bd7f4db909f46e2baa091d5a58f0d0a7fc1 (plain)
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
module Banzai
  module Filter
    # HTML filter that appends state information to issuable links.
    # Runs as a post-process filter as issuable state might change whilst
    # Markdown is in the cache.
    #
    # This filter supports cross-project references.
    class IssuableStateFilter < HTML::Pipeline::Filter
      VISIBLE_STATES = %w(closed merged).freeze

      def call
        extractor = Banzai::IssuableExtractor.new(project, current_user)
        issuables = extractor.extract([doc])

        issuables.each do |node, issuable|
          if VISIBLE_STATES.include?(issuable.state) && node.children.present?
            node.add_child(Nokogiri::XML::Text.new(" [#{issuable.state}]", doc))
          end
        end

        doc
      end

      private

      def current_user
        context[:current_user]
      end

      def project
        context[:project]
      end
    end
  end
end