7e6f6e1603
Enables frozens string for the following: * lib/gitlab/conflict/**/*.rb * lib/gitlab/cross_project_access/**/*.rb * lib/gitlab/cycle_analytics/**/*.rb * lib/gitlab/data_builder/**/*.rb * lib/gitlab/database/**/*.rb * lib/gitlab/dependency_linker/**/*.rb * lib/gitlab/diff/**/*.rb * lib/gitlab/downtime_check/**/*.rb * lib/gitlab/email/**/*.rb * lib/gitlab/etag_caching/**/*.rb Partially addresses gitlab-org/gitlab-ce#47424.
28 lines
696 B
Ruby
28 lines
696 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|