Sha256: c633e3a820ba9a9a5ec710302110d0907703b606e568a1fb93628cb56bafb062
Contents?: true
Size: 1.36 KB
Versions: 9
Compression:
Stored size: 1.36 KB
Contents
module Twilio module REST class NextGenListResource < Twilio::REST::ListResource def list(params={}, full_path=false) raise "Can't get a resource list without a REST Client" unless @client response = @client.get @path, params, full_path list_key = response['meta']['key'] if response['meta'] raise "Couldn't find a list key in response meta" unless list_key resources = response[list_key] path = @frozen_path ? @frozen_path : @path resource_list = resources.map do |resource| @instance_class.new "#{path}/#{resource[@instance_id_key]}", @client, resource end client, list_class = @client, self.class resource_list.instance_eval do eigenclass = class << self; self; end eigenclass.send :define_method, :next_page, &lambda { if response['meta']['next_page_url'] list_class.new(response['meta']['next_page_url'], client).list({}) else [] end } eigenclass.send :define_method, :previous_page, &lambda { if response['meta']['previous_page_url'] list_class.new(response['meta']['previous_page_url'], client).list({}) else [] end } end resource_list end end end end
Version data entries
9 entries across 9 versions & 1 rubygems