Class: FbGraph::Post
- Extended by:
- Searchable
- Includes:
- Connections::Comments, Connections::Likes
- Defined in:
- lib/fb_graph/post.rb
Instance Attribute Summary collapse
-
#actions ⇒ Object
Returns the value of attribute actions.
-
#attribution ⇒ Object
Returns the value of attribute attribution.
-
#caption ⇒ Object
Returns the value of attribute caption.
-
#created_time ⇒ Object
Returns the value of attribute created_time.
-
#description ⇒ Object
Returns the value of attribute description.
-
#from ⇒ Object
Returns the value of attribute from.
-
#icon ⇒ Object
Returns the value of attribute icon.
-
#likes ⇒ Object
Returns the value of attribute likes.
-
#link ⇒ Object
Returns the value of attribute link.
-
#message ⇒ Object
Returns the value of attribute message.
-
#name ⇒ Object
Returns the value of attribute name.
-
#picture ⇒ Object
Returns the value of attribute picture.
-
#source ⇒ Object
Returns the value of attribute source.
-
#to ⇒ Object
Returns the value of attribute to.
-
#updated_time ⇒ Object
Returns the value of attribute updated_time.
Attributes inherited from Node
#access_token, #endpoint, #identifier
Instance Method Summary collapse
-
#initialize(identifier, attributes = {}) ⇒ Post
constructor
A new instance of Post.
Methods included from Searchable
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 = {}) ⇒ Post
Returns a new instance of Post.
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 47 48 |
# File 'lib/fb_graph/post.rb', line 9 def initialize(identifier, attributes = {}) super if (from = attributes[:from]) @from = if from[:category] FbGraph::Page.new(from.delete(:id), from) else FbGraph::User.new(from.delete(:id), from) end end @to = [] if attributes[:to] FbGraph::Collection.new(attributes[:to]).each do |to| @to << if to[:category] FbGraph::Page.new(to.delete(:id), to) else FbGraph::User.new(to.delete(:id), to) end end end @message = attributes[:message] @picture = attributes[:picture] @link = attributes[:link] @name = attributes[:name] @caption = attributes[:caption] @description = attributes[:description] @source = attributes[:source] @icon = attributes[:icon] @attribution = attributes[:attribution] @actions = attributes[:actions] @likes = attributes[:likes] 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_ = FbGraph::Collection.new(attributes[:comments]) end |
Instance Attribute Details
#actions ⇒ Object
Returns the value of attribute actions.
7 8 9 |
# File 'lib/fb_graph/post.rb', line 7 def actions @actions end |
#attribution ⇒ Object
Returns the value of attribute attribution.
7 8 9 |
# File 'lib/fb_graph/post.rb', line 7 def attribution @attribution end |
#caption ⇒ Object
Returns the value of attribute caption.
7 8 9 |
# File 'lib/fb_graph/post.rb', line 7 def @caption end |
#created_time ⇒ Object
Returns the value of attribute created_time.
7 8 9 |
# File 'lib/fb_graph/post.rb', line 7 def created_time @created_time end |
#description ⇒ Object
Returns the value of attribute description.
7 8 9 |
# File 'lib/fb_graph/post.rb', line 7 def description @description end |
#from ⇒ Object
Returns the value of attribute from.
7 8 9 |
# File 'lib/fb_graph/post.rb', line 7 def from @from end |
#icon ⇒ Object
Returns the value of attribute icon.
7 8 9 |
# File 'lib/fb_graph/post.rb', line 7 def icon @icon end |
#likes ⇒ Object
Returns the value of attribute likes.
7 8 9 |
# File 'lib/fb_graph/post.rb', line 7 def likes @likes end |
#link ⇒ Object
Returns the value of attribute link.
7 8 9 |
# File 'lib/fb_graph/post.rb', line 7 def link @link end |
#message ⇒ Object
Returns the value of attribute message.
7 8 9 |
# File 'lib/fb_graph/post.rb', line 7 def @message end |
#name ⇒ Object
Returns the value of attribute name.
7 8 9 |
# File 'lib/fb_graph/post.rb', line 7 def name @name end |
#picture ⇒ Object
Returns the value of attribute picture.
7 8 9 |
# File 'lib/fb_graph/post.rb', line 7 def picture @picture end |
#source ⇒ Object
Returns the value of attribute source.
7 8 9 |
# File 'lib/fb_graph/post.rb', line 7 def source @source end |
#to ⇒ Object
Returns the value of attribute to.
7 8 9 |
# File 'lib/fb_graph/post.rb', line 7 def to @to end |
#updated_time ⇒ Object
Returns the value of attribute updated_time.
7 8 9 |
# File 'lib/fb_graph/post.rb', line 7 def updated_time @updated_time end |