Class: Zold::RemoteNode

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

Overview

One remote.

Defined Under Namespace

Classes: CantAssert

Instance Method Summary collapse

Constructor Details

#initialize(host:, port:, score:, idx:, master:, network: 'test', log: Log::NULL) ⇒ RemoteNode

Returns a new instance of RemoteNode.



48
49
50
51
52
53
54
55
56
# File 'lib/zold/remotes.rb', line 48

def initialize(host:, port:, score:, idx:, master:, network: 'test', log: Log::NULL)
  @host = host
  @port = port
  @score = score
  @idx = idx
  @master = master
  @network = network
  @log = log
end

Instance Method Details

#assert_code(code, response) ⇒ Object

Raises:



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

def assert_code(code, response)
  msg = response.status_line.strip
  return if response.status.to_i == code
  if response.headers && response.headers['X-Zold-Error']
    raise CantAssert, "Error ##{response.status} \"#{response.headers['X-Zold-Error']}\"
        at #{response.headers['X-Zold-Path']}"
  end
  raise CantAssert, "Unexpected HTTP code #{response.status}, instead of #{code}" if msg.empty?
  raise CantAssert, "#{msg} (HTTP code #{response.status}, instead of #{code})"
end

#assert_score_ownership(score) ⇒ Object

Raises:



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

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

#assert_score_strength(score) ⇒ Object

Raises:



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

def assert_score_strength(score)
  return if score.strength >= Score::STRENGTH
  raise CantAssert, "Score #{score.strength} is too weak (<#{Score::STRENGTH}): #{score.reduced(4)}"
end

#assert_score_value(score, min) ⇒ Object

Raises:



96
97
98
# File 'lib/zold/remotes.rb', line 96

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

#assert_valid_score(score) ⇒ Object

Raises:



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

def assert_valid_score(score)
  raise CantAssert, "Invalid score #{score.reduced(4)}" unless score.valid?
  raise CantAssert, "Expired score (#{Age.new(score.time)}) #{score.reduced(4)}" if score.expired?
end

#http(path = '/') ⇒ Object



58
59
60
# File 'lib/zold/remotes.rb', line 58

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

#master?Boolean

Returns:

  • (Boolean)


62
63
64
# File 'lib/zold/remotes.rb', line 62

def master?
  @master
end

#to_sObject



66
67
68
# File 'lib/zold/remotes.rb', line 66

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