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

location.rb « git « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3733572e703852452feb42a849d3d6a133f8b64 (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
34
35
# frozen_string_literal: true

require 'uri'
require 'forwardable'

module QA
  module Git
    class Location
      extend Forwardable

      attr_reader :git_uri, :uri

      def_delegators :@uri, :user, :host, :path

      # See: config/initializers/1_settings.rb
      # Settings#build_gitlab_shell_ssh_path_prefix
      def initialize(git_uri)
        @git_uri = git_uri
        @uri =
          if git_uri =~ %r{\A(?:ssh|http|https)://}
            URI.parse(git_uri)
          else
            *rest, path = git_uri.split(':')
            # Host cannot have : so we'll need to escape it
            user_host = rest.join('%3A').sub(/\A\[(.+)\]\z/, '\1')
            URI.parse("ssh://#{user_host}/#{path}")
          end
      end

      def port
        uri.port || 22
      end
    end
  end
end