Exception: Orange::Reroute

Inherits:
Exception
  • Object
show all
Defined in:
lib/orange-core/middleware/rerouter.rb

Instance Method Summary collapse

Constructor Details

#initialize(packet) ⇒ Reroute

Returns a new instance of Reroute.



31
32
33
34
35
# File 'lib/orange-core/middleware/rerouter.rb', line 31

def initialize(packet)
  @packet = packet
  @packet[:headers] = {"Content-Type" => 'text/html', "Location" => self.url}
  @packet[:status] = 302
end

Instance Method Details

#packetObject



49
50
51
# File 'lib/orange-core/middleware/rerouter.rb', line 49

def packet
  @packet
end

#urlObject



37
38
39
40
41
42
43
44
45
46
47
# File 'lib/orange-core/middleware/rerouter.rb', line 37

def url
  case packet['reroute.type']
  when :real
    packet['reroute.to']
  # Parsing for orange urls or something
  when :orange
    packet.route_to(packet['reroute.to'], *packet['reroute.args', []])
  else
    packet['reroute.to']
  end
end