Class: Zold::Remotes::Remote

Inherits:
Object
  • Object
show all
Defined in:
lib/zold/remotes.rb

Overview

One remote.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(host, port, score, log: Log::Quiet.new) ⇒ Remote

Returns a new instance of Remote.



55
56
57
58
59
60
61
62
# File 'lib/zold/remotes.rb', line 55

def initialize(host, port, score, log: Log::Quiet.new)
  @host = host
  raise 'Post must be Integer' unless port.is_a?(Integer)
  @port = port
  raise 'Score must be of type Score' unless score.is_a?(Score)
  @score = score
  @log = log
end

Instance Attribute Details

#hostObject (readonly)

Returns the value of attribute host.



54
55
56
# File 'lib/zold/remotes.rb', line 54

def host
  @host
end

#portObject (readonly)

Returns the value of attribute port.



54
55
56
# File 'lib/zold/remotes.rb', line 54

def port
  @port
end

Instance Method Details

#assert_code(code, response) ⇒ Object



72
73
74
75
76
77
78
# File 'lib/zold/remotes.rb', line 72

def assert_code(code, response)
  msg = response.message.strip
  return if response.code.to_i == code
  @log.debug("#{response.code} \"#{response.message}\" at \"#{response.body}\"")
  raise "Unexpected HTTP code #{response.code}, instead of #{code}" if msg.empty?
  raise "#{msg} (HTTP code #{response.code}, instead of #{code})"
end

#assert_score_ownership(score) ⇒ Object



85
86
87
88
# File 'lib/zold/remotes.rb', line 85

def assert_score_ownership(score)
  raise "Masqueraded host #{@host} as #{score.host}: #{score}" if @host != score.host
  raise "Masqueraded port #{@port} as #{score.port}: #{score}" if @port != score.port
end

#assert_score_strength(score) ⇒ Object



90
91
92
# File 'lib/zold/remotes.rb', line 90

def assert_score_strength(score)
  raise "Score is too weak #{score.strength}: #{score}" if score.strength < Score::STRENGTH
end

#assert_score_value(score, min) ⇒ Object



94
95
96
# File 'lib/zold/remotes.rb', line 94

def assert_score_value(score, min)
  raise "Score is too small (<#{min}): #{score}" if score.value < min
end

#assert_valid_score(score) ⇒ Object



80
81
82
83
# File 'lib/zold/remotes.rb', line 80

def assert_valid_score(score)
  raise "Invalid score #{score}" unless score.valid?
  raise "Expired score #{score}" if score.expired?
end

#http(path = '/') ⇒ Object



64
65
66
# File 'lib/zold/remotes.rb', line 64

def http(path = '/')
  Http.new("http://#{@host}:#{@port}#{path}", @score)
end

#to_sObject



68
69
70
# File 'lib/zold/remotes.rb', line 68

def to_s
  "#{@host}:#{@port}"
end