summaryrefslogtreecommitdiff
path: root/lib/gitlab/tcp_checker.rb
blob: a07a2e8786ba42d091c3c277ab747b4795da5c4e (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
36
37
38
39
40
41
42
43
44
45
46
47
# frozen_string_literal: true

module Gitlab
  class TcpChecker
    attr_reader :remote_host, :remote_port, :local_host, :local_port, :error

    def initialize(remote_host, remote_port, local_host = nil, local_port = nil)
      @remote_host = remote_host
      @remote_port = remote_port
      @local_host = local_host
      @local_port = local_port
    end

    def local
      join_host_port(local_host, local_port)
    end

    def remote
      join_host_port(remote_host, remote_port)
    end

    def check(timeout: 10)
      Socket.tcp(
        remote_host, remote_port,
        local_host, local_port,
        connect_timeout: timeout
      ) do |sock|
        @local_port, @local_host = Socket.unpack_sockaddr_in(sock.local_address)
        @remote_port, @remote_host = Socket.unpack_sockaddr_in(sock.remote_address)
      end

      true
    rescue StandardError => err
      @error = err

      false
    end

    private

    def join_host_port(host, port)
      host = "[#{host}]" if host.include?(':')

      "#{host}:#{port}"
    end
  end
end