2018-11-05 23:45:35 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-16 16:30:18 -04:00
|
|
|
module Gitlab
|
|
|
|
module DependencyLinker
|
|
|
|
class GodepsJsonLinker < JsonLinker
|
|
|
|
NESTED_REPO_REGEX = %r{([^/]+/)+[^/]+?}.freeze
|
|
|
|
|
|
|
|
self.file_type = :godeps_json
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def link_dependencies
|
|
|
|
link_json('ImportPath') do |path|
|
|
|
|
case path
|
|
|
|
when %r{\A(?<repo>gitlab\.com/#{NESTED_REPO_REGEX})\.git/(?<path>.+)\z},
|
|
|
|
%r{\A(?<repo>git(lab|hub)\.com/#{REPO_REGEX})/(?<path>.+)\z}
|
|
|
|
|
|
|
|
"https://#{$~[:repo]}/tree/master/#{$~[:path]}"
|
|
|
|
when /\Agolang\.org/
|
|
|
|
"https://godoc.org/#{path}"
|
|
|
|
else
|
|
|
|
"https://#{path}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|