Sha256: 0fb1345d27a3b74d78fb68c9032abbc1b59fd9c4de3ed12df02e03df2230ae44

Contents?: true

Size: 1.32 KB

Versions: 16

Compression:

Stored size: 1.32 KB

Contents

module FbGraph
  class Event < Node
    include Connections::Feed
    include Connections::Noreply
    include Connections::Maybe
    include Connections::Invited
    include Connections::Attending
    include Connections::Declined
    include Connections::Picture
    extend Searchable

    attr_accessor :owner, :name, :description, :start_time, :end_time, :location, :venue, :privacy, :updated_time

    def initialize(identifier, attributes = {})
      super
      if (owner = attributes[:owner])
        @owner = User.new(owner[:id], owner)
      end
      @name        = attributes[:name]
      @description = attributes[:description]
      @location    = attributes[:location]
      @privacy     = attributes[:privacy]
      if (start_time = attributes[:start_time])
        @start_time = case start_time
        when String
          Time.parse(start_time)
        when Fixnum
          Time.at(start_time)
        end
      end
      if (end_time = attributes[:end_time])
        @end_time = case end_time
        when String
          Time.parse(end_time)
        when Fixnum
          Time.at(end_time)
        end
      end
      if attributes[:venue]
        @venue = Venue.new(attributes[:venue])
      end
      if attributes[:updated_time]
        @updated_time = Time.parse(attributes[:updated_time]).utc
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
fb_graph-2.0.1 lib/fb_graph/event.rb
fb_graph-2.0.0 lib/fb_graph/event.rb
fb_graph-2.0.0.beta lib/fb_graph/event.rb
fb_graph-2.0.0.alpha lib/fb_graph/event.rb
fb_graph-1.9.5 lib/fb_graph/event.rb
fb_graph-1.9.4 lib/fb_graph/event.rb
fb_graph-1.9.3 lib/fb_graph/event.rb
fb_graph-1.9.2 lib/fb_graph/event.rb
fb_graph-1.9.1 lib/fb_graph/event.rb
fb_graph-1.9.0 lib/fb_graph/event.rb
fb_graph-1.8.6 lib/fb_graph/event.rb
fb_graph-1.8.5 lib/fb_graph/event.rb
fb_graph-1.8.4 lib/fb_graph/event.rb
fb_graph-1.8.3 lib/fb_graph/event.rb
fb_graph-1.8.2 lib/fb_graph/event.rb
fb_graph-1.8.1 lib/fb_graph/event.rb