Sha256: c65012538a722ef2c78f7800bb7f7869f0bfec3c00ed32fd1ae0e00947cdaece
Contents?: true
Size: 1.48 KB
Versions: 4
Compression:
Stored size: 1.48 KB
Contents
module FbGraph class Collection < Array attr_reader :previous, :next, :total_count, :unread_count, :updated_time def initialize(collection = nil) collection = case collection when Array {:data => collection, :count => collection.size} when Hash collection[:data] ||= [] collection when nil collection = {:data => [], :count => 0} else raise ArgumentError.new("Invalid collection") end # NOTE: Graph API returns {"data":{"to":[null]}} sometimes... :( collection[:data].delete_if(&:nil?) result = replace(collection[:data]) if summary = collection[:summary] @total_count = summary[:total_count] @unread_count = summary[:unread_count] @updated_time = Time.parse(summary[:updated_time]) if summary[:updated_time] else @total_count = collection[:count] end @previous, @next = {}, {} if (paging = collection[:paging]) if paging[:previous] @previous = fetch_params(paging[:previous]) end if paging[:next] @next = fetch_params(paging[:next]) end end end private def fetch_params(url) query = URI.parse(URI.encode(url)).query params = {} query.split('&').each do |q| key, value = q.split('=') if ['limit', 'offset', 'until', 'since'].include?(key) params[key.to_sym] = URI.unescape(value) end end params end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
fb_graph-2.2.0 | lib/fb_graph/collection.rb |
fb_graph-2.2.0.beta | lib/fb_graph/collection.rb |
fb_graph-2.2.0.alpha2 | lib/fb_graph/collection.rb |
fb_graph-2.2.0.alpha | lib/fb_graph/collection.rb |