Class: Riddl::Client::Resource

Inherits:
Object
  • Object
show all
Defined in:
lib/ruby/riddl/client.rb

Overview

}}}

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(base, wrapper, path, options) ⇒ Resource

{{{



158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'lib/ruby/riddl/client.rb', line 158

def initialize(base,wrapper,path,options) #{{{
  @base = base
  @wrapper = wrapper
  @rpath = "/#{path}".gsub(/\/+/,'/')
  @options = options
  @path = if @wrapper.nil?
    @rpath
  else
    @path = @wrapper.paths.find{ |e| e[1] =~ @rpath }
    raise PathError, 'Path not found.' if @path.nil?
    @path[0]
  end
  @rpath = @rpath == '/' ? '' : @rpath 
end

Instance Attribute Details

#rpathObject (readonly)

}}}



172
173
174
# File 'lib/ruby/riddl/client.rb', line 172

def rpath
  @rpath
end

Instance Method Details

#delete(parameters = []) ⇒ Object

}}}



213
214
215
# File 'lib/ruby/riddl/client.rb', line 213

def delete(parameters = []) #{{{
  exec_request('DELETE',parameters,false)
end

#get(parameters = []) ⇒ Object

}}}



192
193
194
# File 'lib/ruby/riddl/client.rb', line 192

def get(parameters = []) #{{{
  exec_request('GET',parameters,false)
end

#post(parameters = []) ⇒ Object

}}}



199
200
201
# File 'lib/ruby/riddl/client.rb', line 199

def post(parameters = []) #{{{
  exec_request('POST',parameters,false)
end

#put(parameters = []) ⇒ Object

}}}



206
207
208
# File 'lib/ruby/riddl/client.rb', line 206

def put(parameters = []) #{{{
  exec_request('PUT',parameters,false)
end

#request(what) ⇒ Object

}}}



220
221
222
# File 'lib/ruby/riddl/client.rb', line 220

def request(what) #{{{
  priv_request(what,false)
end

#simulate_delete(parameters = []) ⇒ Object

}}}



216
217
218
# File 'lib/ruby/riddl/client.rb', line 216

def simulate_delete(parameters = []) #{{{
  exec_request('DELETE',parameters,true)
end

#simulate_get(parameters = []) ⇒ Object

}}}



195
196
197
# File 'lib/ruby/riddl/client.rb', line 195

def simulate_get(parameters = []) #{{{
  exec_request('GET',parameters,true)
end

#simulate_post(parameters = []) ⇒ Object

}}}



202
203
204
# File 'lib/ruby/riddl/client.rb', line 202

def simulate_post(parameters = []) #{{{
  exec_request('POST',parameters,true)
end

#simulate_put(parameters = []) ⇒ Object

}}}



209
210
211
# File 'lib/ruby/riddl/client.rb', line 209

def simulate_put(parameters = []) #{{{
  exec_request('PUT',parameters,true)
end

#simulate_request(what) ⇒ Object

}}}



223
224
225
# File 'lib/ruby/riddl/client.rb', line 223

def simulate_request(what) #{{{
  priv_request(what,true)
end

#ws(&blk) ⇒ Object

{{{



174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# File 'lib/ruby/riddl/client.rb', line 174

def ws(&blk) #{{{
  EM.run do
    conn = EventMachine::WebSocketClient.connect((@base + @rpath).sub(/^http/,'ws'))

    conn.disconnect do
      EM::stop_event_loop
    end

    if @options[:debug]
      conn.errback do |e|
        @options[:debug].puts "WS ERROR: #{e}"
      end
    end

    blk.call(conn)
  end   
end