summaryrefslogtreecommitdiff
path: root/lib/gitlab/repository_url_builder.rb
blob: 2b88af1f77c2e25677b79b05522dca9efc2703a0 (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
# frozen_string_literal: true

module Gitlab
  module RepositoryUrlBuilder
    class << self
      def build(path, protocol: :ssh)
        # TODO: See https://gitlab.com/gitlab-org/gitlab/-/issues/213021
        path = path.sub('@snippets', 'snippets')

        case protocol
        when :ssh
          ssh_url(path)
        when :http
          http_url(path)
        else
          raise NotImplementedError.new("No URL builder defined for protocol #{protocol}")
        end
      end

      private

      def ssh_url(path)
        Gitlab.config.gitlab_shell.ssh_path_prefix + "#{path}.git"
      end

      def http_url(path)
        root = Gitlab::CurrentSettings.custom_http_clone_url_root.presence || Gitlab::Routing.url_helpers.root_url

        Gitlab::Utils.append_path(root, "#{path}.git")
      end
    end
  end
end