Class: FbGraph::Photo
- Includes:
- Connections::Comments, Connections::Likes
- Defined in:
- lib/fb_graph/photo.rb
Instance Attribute Summary collapse
-
#created_time ⇒ Object
Returns the value of attribute created_time.
-
#from ⇒ Object
Returns the value of attribute from.
-
#height ⇒ Object
Returns the value of attribute height.
-
#icon ⇒ Object
Returns the value of attribute icon.
-
#link ⇒ Object
Returns the value of attribute link.
-
#name ⇒ Object
Returns the value of attribute name.
-
#picture ⇒ Object
Returns the value of attribute picture.
-
#source ⇒ Object
Returns the value of attribute source.
-
#tags ⇒ Object
Returns the value of attribute tags.
-
#updated_time ⇒ Object
Returns the value of attribute updated_time.
-
#width ⇒ Object
Returns the value of attribute width.
Attributes inherited from Node
#access_token, #endpoint, #identifier
Instance Method Summary collapse
-
#initialize(identifier, attributes = {}) ⇒ Photo
constructor
A new instance of Photo.
Methods included from Connections::Likes
Methods included from Connections::Comments
#comment!, #comments, #like!, #unlike!
Methods inherited from Node
#connection, #destroy, fetch, #fetch
Methods included from Comparison
Constructor Details
#initialize(identifier, attributes = {}) ⇒ Photo
Returns a new instance of Photo.
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/fb_graph/photo.rb', line 8 def initialize(identifier, attributes = {}) super if (from = attributes[:from]) @from = if from[:category] Page.new(from.delete(:id), from) else User.new(from.delete(:id), from) end end @tags = [] if attributes[:tags] Collection.new(attributes[:tags]).each do |tag| @tags << if tag.is_a?(Tag) tag else Tag.new(tag) end end end # NOTE: # for some reason, facebook uses different parameter names. # "name" in GET & "message" in POST @name = attributes[:name] || attributes[:message] @picture = attributes[:picture] @icon = attributes[:icon] @source = attributes[:source] @height = attributes[:height] @width = attributes[:width] @link = attributes[:link] if attributes[:created_time] @created_time = Time.parse(attributes[:created_time]).utc end if attributes[:updated_time] @updated_time = Time.parse(attributes[:updated_time]).utc end # cached connection @_comments_ = Collection.new(attributes[:comments]) end |
Instance Attribute Details
#created_time ⇒ Object
Returns the value of attribute created_time.
6 7 8 |
# File 'lib/fb_graph/photo.rb', line 6 def created_time @created_time end |
#from ⇒ Object
Returns the value of attribute from.
6 7 8 |
# File 'lib/fb_graph/photo.rb', line 6 def from @from end |
#height ⇒ Object
Returns the value of attribute height.
6 7 8 |
# File 'lib/fb_graph/photo.rb', line 6 def height @height end |
#icon ⇒ Object
Returns the value of attribute icon.
6 7 8 |
# File 'lib/fb_graph/photo.rb', line 6 def icon @icon end |
#link ⇒ Object
Returns the value of attribute link.
6 7 8 |
# File 'lib/fb_graph/photo.rb', line 6 def link @link end |
#name ⇒ Object
Returns the value of attribute name.
6 7 8 |
# File 'lib/fb_graph/photo.rb', line 6 def name @name end |
#picture ⇒ Object
Returns the value of attribute picture.
6 7 8 |
# File 'lib/fb_graph/photo.rb', line 6 def picture @picture end |
#source ⇒ Object
Returns the value of attribute source.
6 7 8 |
# File 'lib/fb_graph/photo.rb', line 6 def source @source end |
#tags ⇒ Object
Returns the value of attribute tags.
6 7 8 |
# File 'lib/fb_graph/photo.rb', line 6 def @tags end |
#updated_time ⇒ Object
Returns the value of attribute updated_time.
6 7 8 |
# File 'lib/fb_graph/photo.rb', line 6 def updated_time @updated_time end |
#width ⇒ Object
Returns the value of attribute width.
6 7 8 |
# File 'lib/fb_graph/photo.rb', line 6 def width @width end |