Class: FbGraph::User

Direct Known Subclasses

AdUser, TestUser

Instance Attribute Summary collapse

Attributes inherited from Node

#access_token, #endpoint, #identifier

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Searchable

search, search, search_query_param

Methods included from OpenGraph::UserContext

#og_action!, #og_actions

Methods included from Connections::Videos

#video!, #videos

Methods included from Connections::UserLikes

#like?, #likes

Methods included from Connections::UserAchievements

#achieve!, #achievements, #unachieve!

Methods included from Connections::Threads

#threads

Methods included from Connections::Television

#television

Methods included from Connections::Tagged

#tagged

Methods included from Connections::Subscribers

#subscribers

Methods included from Connections::SubscribedTo

#subscribed_to

Methods included from Connections::Statuses

#statuses

Methods included from Connections::Scores

#score!, #scores, #unscore!

Methods included from Connections::Questions

#question!, #questions

Methods included from Connections::Posts

#posts

Methods included from Connections::Pokes

#pokes

Methods included from Connections::Picture

#picture

Methods included from Connections::Photos

#photo!, #photos

Methods included from Connections::Permissions

#permissions, #revoke!

Methods included from Connections::Payments

#payments

Methods included from Connections::Outbox

#outbox

Methods included from Connections::Notifications

#notifications

Methods included from Connections::Notes

#note!, #notes

Methods included from Connections::MutualFriends

#mutual_friends

Methods included from Connections::Music

#music

Methods included from Connections::Movies

#movies

Methods included from Connections::Links

#link!, #links

Methods included from Connections::Likes

#likes

Methods included from Connections::Interests

#interests

Methods included from Connections::Inbox

#inbox

Methods included from Connections::Home

#home

Methods included from Connections::Groups

#groups

Methods included from Connections::Games

#games

Methods included from Connections::Family

#family

Methods included from Connections::Friends

#friends

Methods included from Connections::FriendRequests

#friend_requests

Methods included from Connections::FriendLists

#friend_list!, #friend_lists

Methods included from Connections::Feed

#feed, #feed!

Methods included from Connections::Events

#event!, #events

Methods included from Connections::Checkins

#checkin!, #checkins

Methods included from Connections::Books

#books

Methods included from Connections::AppRequests

#app_request!, #app_requests

Methods included from Connections::Albums

#album!, #albums

Methods included from Connections::Activities

#activities

Methods included from Connections::AdAccounts

#ad_accounts

Methods included from Connections::Accounts

#accounts

Methods inherited from Node

#connection, #destroy, fetch, #fetch, #update

Methods included from Comparison

#==

Constructor Details

#initialize(identifier, attributes = {}) ⇒ User

Returns a new instance of User.



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# File 'lib/fb_graph/user.rb', line 54

def initialize(identifier, attributes = {})
  super
  @name        = attributes[:name]
  @first_name  = attributes[:first_name]
  @middle_name = attributes[:middle_name]
  @last_name   = attributes[:last_name]
  @gender      = attributes[:gender]
  @locale      = attributes[:locale]
  @languages = []
  if attributes[:languages]
    attributes[:languages].each do |language|
      @languages << Page.new(language[:id], language)
    end
  end
  @link           = attributes[:link]
  @username       = attributes[:username]
  @third_party_id = attributes[:third_party_id]
  @timezone       = attributes[:timezone]
  if attributes[:updated_time]
    @updated_time = Time.parse(attributes[:updated_time]).utc
  end
  @verified = attributes[:verified]
  @about    = attributes[:about]
  @bio      = attributes[:bio]
  if attributes[:birthday]
    month, day, year = attributes[:birthday].split('/').collect(&:to_i)
    year ||= 0
    @birthday = Date.new(year, month, day)
  end
  @education = []
  if attributes[:education]
    attributes[:education].each do |education|
      @education << Education.new(education)
    end
  end
  @email = attributes[:email]
  if (hometown = attributes[:hometown])
    @hometown = Page.new(hometown[:id], hometown)
  end
  @interested_in = Array(attributes[:interested_in])
  if (location = attributes[:location])
    @location = Page.new(location[:id], location)
  end
  @political = attributes[:political]
  @favorite_teams = []
  if attributes[:favorite_teams]
    attributes[:favorite_teams].each do |favorite_team|
      @favorite_teams << Page.new(favorite_team[:id], favorite_team)
    end
  end
  @quotes = attributes[:quotes]
  @relationship_status = attributes[:relationship_status]
  @religion            = attributes[:religion]
  if (significant_other = attributes[:significant_other])
    @significant_other = User.new(significant_other[:id], significant_other)
  end
  # If this user was build from the family connection, set the relationship type
  @relationship = attributes[:relationship]
  # NOTE: couldn't find "video_upload_limits" in the response..
  #  @video_upload_limits = ??
  @website = attributes[:website]
  @work = []
  if attributes[:work]
    attributes[:work].each do |work|
      @work << Work.new(work)
    end
  end

  # NOTE: below are non-documented
  @sports = []
  if (sports = attributes[:sports])
    sports.each do |sport|
      @sports << Page.new(sport[:id], sport)
    end
  end
  @favorite_athletes = []
  if attributes[:favorite_athletes]
    attributes[:favorite_athletes].each do |favorite_athlete|
      @favorite_athletes << Page.new(favorite_athlete[:id], favorite_athlete)
    end
  end
  @inspirational_people = []
  if attributes[:inspirational_people]
    attributes[:inspirational_people].each do |inspirational_person|
      @inspirational_people << Page.new(inspirational_person[:id], inspirational_person)
    end
  end
  if attributes[:address]
    @address = Venue.new(attributes[:address])
  end
  @mobile_phone = attributes[:mobile_phone]
  @installed = attributes[:installed]
end

Instance Attribute Details

#aboutObject

Returns the value of attribute about.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def about
  @about
end

#addressObject

NOTE: below are non-documented



52
53
54
# File 'lib/fb_graph/user.rb', line 52

def address
  @address
end

#bioObject

Returns the value of attribute bio.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def bio
  @bio
end

#birthdayObject

Returns the value of attribute birthday.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def birthday
  @birthday
end

#educationObject

Returns the value of attribute education.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def education
  @education
end

#emailObject

Returns the value of attribute email.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def email
  @email
end

#favorite_athletesObject

NOTE: below are non-documented



52
53
54
# File 'lib/fb_graph/user.rb', line 52

def favorite_athletes
  @favorite_athletes
end

#favorite_teamsObject

Returns the value of attribute favorite_teams.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def favorite_teams
  @favorite_teams
end

#first_nameObject

Returns the value of attribute first_name.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def first_name
  @first_name
end

#genderObject

Returns the value of attribute gender.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def gender
  @gender
end

#hometownObject

Returns the value of attribute hometown.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def hometown
  @hometown
end

#inspirational_peopleObject

NOTE: below are non-documented



52
53
54
# File 'lib/fb_graph/user.rb', line 52

def inspirational_people
  @inspirational_people
end

#installedObject

NOTE: below are non-documented



52
53
54
# File 'lib/fb_graph/user.rb', line 52

def installed
  @installed
end

#interested_inObject

Returns the value of attribute interested_in.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def interested_in
  @interested_in
end

#languagesObject

Returns the value of attribute languages.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def languages
  @languages
end

#last_nameObject

Returns the value of attribute last_name.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def last_name
  @last_name
end

Returns the value of attribute link.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def link
  @link
end

#localeObject

Returns the value of attribute locale.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def locale
  @locale
end

#locationObject

Returns the value of attribute location.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def location
  @location
end

#middle_nameObject

Returns the value of attribute middle_name.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def middle_name
  @middle_name
end

#mobile_phoneObject

NOTE: below are non-documented



52
53
54
# File 'lib/fb_graph/user.rb', line 52

def mobile_phone
  @mobile_phone
end

#nameObject

Returns the value of attribute name.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def name
  @name
end

#politicalObject

Returns the value of attribute political.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def political
  @political
end

#quotesObject

Returns the value of attribute quotes.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def quotes
  @quotes
end

#relationshipObject

Returns the value of attribute relationship.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def relationship
  @relationship
end

#relationship_statusObject

Returns the value of attribute relationship_status.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def relationship_status
  @relationship_status
end

#religionObject

Returns the value of attribute religion.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def religion
  @religion
end

#significant_otherObject

Returns the value of attribute significant_other.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def significant_other
  @significant_other
end

#sportsObject

NOTE: below are non-documented



52
53
54
# File 'lib/fb_graph/user.rb', line 52

def sports
  @sports
end

#third_party_idObject

Returns the value of attribute third_party_id.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def third_party_id
  @third_party_id
end

#timezoneObject

Returns the value of attribute timezone.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def timezone
  @timezone
end

#updated_timeObject

Returns the value of attribute updated_time.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def updated_time
  @updated_time
end

#usernameObject

Returns the value of attribute username.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def username
  @username
end

#verifiedObject

Returns the value of attribute verified.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def verified
  @verified
end

#video_upload_limitsObject

Returns the value of attribute video_upload_limits.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def video_upload_limits
  @video_upload_limits
end

#websiteObject

Returns the value of attribute website.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def website
  @website
end

#workObject

Returns the value of attribute work.



49
50
51
# File 'lib/fb_graph/user.rb', line 49

def work
  @work
end

Class Method Details

.me(access_token) ⇒ Object



148
149
150
# File 'lib/fb_graph/user.rb', line 148

def self.me(access_token)
  new('me', :access_token => access_token)
end