Class: Flickr::Photoset
- Inherits:
-
Object
- Object
- Flickr::Photoset
- Defined in:
- lib/flickr.rb
Overview
Todo: flickr.photosets.delete flickr.photosets.editMeta flickr.photosets.editPhotos flickr.photosets.getContext flickr.photosets.getInfo flickr.photosets.getPhotos
Instance Attribute Summary collapse
-
#client ⇒ Object
readonly
Returns the value of attribute client.
-
#description ⇒ Object
readonly
Returns the value of attribute description.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#owner ⇒ Object
readonly
Returns the value of attribute owner.
-
#photos ⇒ Object
readonly
Returns the value of attribute photos.
-
#primary ⇒ Object
readonly
Returns the value of attribute primary.
-
#title ⇒ Object
readonly
Returns the value of attribute title.
-
#url ⇒ Object
readonly
Returns the value of attribute url.
Instance Method Summary collapse
-
#getInfo ⇒ Object
Implements flickr.photosets.getInfo private, once we can call it as needed.
- #getPhotos ⇒ Object
-
#initialize(id = nil, api_key = {}) ⇒ Photoset
constructor
A new instance of Photoset.
Constructor Details
Instance Attribute Details
#client ⇒ Object (readonly)
Returns the value of attribute client.
720 721 722 |
# File 'lib/flickr.rb', line 720 def client @client end |
#description ⇒ Object (readonly)
Returns the value of attribute description.
720 721 722 |
# File 'lib/flickr.rb', line 720 def description @description end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
720 721 722 |
# File 'lib/flickr.rb', line 720 def id @id end |
#owner ⇒ Object (readonly)
Returns the value of attribute owner.
720 721 722 |
# File 'lib/flickr.rb', line 720 def owner @owner end |
#photos ⇒ Object (readonly)
Returns the value of attribute photos.
720 721 722 |
# File 'lib/flickr.rb', line 720 def photos @photos end |
#primary ⇒ Object (readonly)
Returns the value of attribute primary.
720 721 722 |
# File 'lib/flickr.rb', line 720 def primary @primary end |
#title ⇒ Object (readonly)
Returns the value of attribute title.
720 721 722 |
# File 'lib/flickr.rb', line 720 def title @title end |
#url ⇒ Object (readonly)
Returns the value of attribute url.
720 721 722 |
# File 'lib/flickr.rb', line 720 def url @url end |
Instance Method Details
#getInfo ⇒ Object
Implements flickr.photosets.getInfo private, once we can call it as needed
730 731 732 733 734 735 736 737 738 739 |
# File 'lib/flickr.rb', line 730 def getInfo info = @client.photosets_getInfo('photoset_id'=>@id)['photoset'] @owner = User.new(info['owner'], nil, nil, nil, @api_key) @primary = info['primary'] @photos = info['photos'] @title = info['title'] @description = info['description'] @url = "http://www.flickr.com/photos/#{@owner.getInfo.username}/sets/#{@id}/" self end |
#getPhotos ⇒ Object
741 742 743 |
# File 'lib/flickr.rb', line 741 def getPhotos photosetPhotos = @client.photos_request('photosets.getPhotos', {'photoset_id' => @id}, "photoset") end |