Sha256: 8de83529fc03809f37c9ffcbe286d3a6964433601cf7233d59c3bd2c565126b0
Contents?: true
Size: 1.14 KB
Versions: 3
Compression:
Stored size: 1.14 KB
Contents
class Flickr::Photosets < Flickr::Base def initialize(flickr) @flickr = flickr end # Get the authorized user's contact list. # def get_list(options={}) rsp = @flickr.send_request('flickr.photosets.getList', options) collect_photosets(rsp) end protected def collect_photosets(rsp) photosets = [] return photosets unless rsp if rsp.photosets.photoset rsp.photosets.photoset.each do |photoset| attributes = create_attributes(photoset) photosets << Photoset.new(@flickr, attributes) end end return photosets end def create_attributes(photoset) # comment by : smeevil # # for some reason it was needed to call to_s on photoset.title and photoset.description # without this it will not set the value correctly { :id => photoset[:id], :num_photos => photoset[:photos], :primary => photoset[:primary], :secret => photoset[:secret], :farm => photoset[:farm], :server => photoset[:server], :title => photoset.title.to_s, :description => photoset.description.to_s } end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ayn-flickr_fu-0.3.5 | lib/flickr/photosets.rb |
ayn-flickr_fu-0.3.6 | lib/flickr/photosets.rb |
ayn-flickr_fu-0.3.7 | lib/flickr/photosets.rb |