summaryrefslogtreecommitdiff
path: root/lib/gitlab/markdown/cross_project_reference.rb
blob: 6ab04a584b0c8e8166a9e5cc908b5ac7e6140897 (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
require 'gitlab/markdown'

module Gitlab
  module Markdown
    # Common methods for ReferenceFilters that support an optional cross-project
    # reference.
    module CrossProjectReference
      # Given a cross-project reference string, get the Project record
      #
      # Defaults to value of `context[:project]` if:
      # * No reference is given OR
      # * Reference given doesn't exist
      #
      # ref - String reference.
      #
      # Returns a Project, or nil if the reference can't be found
      def project_from_ref(ref)
        return context[:project] unless ref

        Project.find_with_namespace(ref)
      end
    end
  end
end