Sha256: 72136abaa9d309b01a60e1668908ec4db182085e099a462b0c53038c830361cf

Contents?: true

Size: 880 Bytes

Versions: 63

Compression:

Stored size: 880 Bytes

Contents

module FbGraph
  class Note < Node
    include Connections::Comments
    include Connections::Likes
    include Connections::Likes::Likable

    attr_accessor :from, :subject, :message, :created_time, :updated_time, :icon

    def initialize(identifier, attributes = {})
      super
      if (from = attributes[:from])
        @from = if from[:category]
          Page.new(from[:id], from)
        else
          User.new(from[:id], from)
        end
      end
      @subject = attributes[:subject]
      @message = attributes[:message]
      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
      @icon = attributes[:icon]

      # cached connection
      cache_collection attributes, :comments
    end
  end
end

Version data entries

63 entries across 63 versions & 1 rubygems

Version Path
fb_graph-2.7.17 lib/fb_graph/note.rb
fb_graph-2.7.16 lib/fb_graph/note.rb
fb_graph-2.7.15 lib/fb_graph/note.rb
fb_graph-2.7.14 lib/fb_graph/note.rb
fb_graph-2.7.13 lib/fb_graph/note.rb
fb_graph-2.7.12 lib/fb_graph/note.rb
fb_graph-2.7.11 lib/fb_graph/note.rb
fb_graph-2.7.10 lib/fb_graph/note.rb
fb_graph-2.7.9 lib/fb_graph/note.rb
fb_graph-2.7.8 lib/fb_graph/note.rb
fb_graph-2.7.7 lib/fb_graph/note.rb
fb_graph-2.7.6 lib/fb_graph/note.rb
fb_graph-2.7.5 lib/fb_graph/note.rb
fb_graph-2.7.4 lib/fb_graph/note.rb
fb_graph-2.7.3 lib/fb_graph/note.rb
fb_graph-2.7.2 lib/fb_graph/note.rb
fb_graph-2.7.1 lib/fb_graph/note.rb
fb_graph-2.7.0 lib/fb_graph/note.rb
fb_graph-2.6.7 lib/fb_graph/note.rb
fb_graph-2.6.6 lib/fb_graph/note.rb