Welcome to mirror list, hosted at ThFree Co, Russian Federation.

godeps_json_linker.rb « dependency_linker « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d12198d637e0d0cac1c3e07ccab55eb38c1b501 (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
# frozen_string_literal: true

module Gitlab
  module DependencyLinker
    class GodepsJsonLinker < JsonLinker
      NESTED_REPO_REGEX = %r{([^/]+/)+[^/]+?}

      self.file_type = :godeps_json

      private

      def link_dependencies
        link_json('ImportPath') do |path|
          case path
          when %r{\A(?<repo>github\.com/#{REPO_REGEX})/(?<path>.+)\z}o
            "https://#{$~[:repo]}/tree/master/#{$~[:path]}"
          when %r{\A(?<repo>gitlab\.com/#{NESTED_REPO_REGEX})\.git/(?<path>.+)\z}o,
            %r{\A(?<repo>gitlab\.com/#{REPO_REGEX})/(?<path>.+)\z}o

            "https://#{$~[:repo]}/-/tree/master/#{$~[:path]}"
          when /\Agolang\.org/
            "https://godoc.org/#{path}"
          else
            "https://#{path}"
          end
        end
      end
    end
  end
end