Class: Termtter::Connection

Inherits:
Object
  • Object
show all
Defined in:
lib/termtter/connection.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConnection

Returns a new instance of Connection.



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/termtter/connection.rb', line 7

def initialize
  @proxy_host = configatron.proxy.host
  @proxy_port = configatron.proxy.port
  @proxy_user = configatron.proxy.user_name
  @proxy_password = configatron.proxy.password
  @proxy_uri = nil
  @enable_ssl = configatron.enable_ssl
  @protocol = "http"
  @port = 80

  unless @proxy_host.empty?
    @http_class = Net::HTTP::Proxy(@proxy_host, @proxy_port,
                                   @proxy_user, @proxy_password)
    @proxy_uri =  "http://" + @proxy_host + ":" + @proxy_port + "/"
  else
    @http_class = Net::HTTP
  end

  if @enable_ssl
    @protocol = "https"
    @port = 443
  end
end

Instance Attribute Details

#portObject (readonly)

Returns the value of attribute port.



5
6
7
# File 'lib/termtter/connection.rb', line 5

def port
  @port
end

#protocolObject (readonly)

Returns the value of attribute protocol.



5
6
7
# File 'lib/termtter/connection.rb', line 5

def protocol
  @protocol
end

#proxy_uriObject (readonly)

Returns the value of attribute proxy_uri.



5
6
7
# File 'lib/termtter/connection.rb', line 5

def proxy_uri
  @proxy_uri
end

Instance Method Details

#start(host, port, &block) ⇒ Object



31
32
33
34
35
36
# File 'lib/termtter/connection.rb', line 31

def start(host, port, &block)
  http = @http_class.new(host, port)
  http.use_ssl = @enable_ssl
  http.verify_mode = OpenSSL::SSL::VERIFY_NONE if http.use_ssl?
  http.start(&block)
end