Class: OpenSocial::FetchPeopleRequest

Inherits:
Request
  • Object
show all
Defined in:
lib/opensocial/person.rb

Constant Summary collapse

SERVICE =

Defines the service fragment for use in constructing the request URL or JSON

'people'

Instance Method Summary collapse

Constructor Details

#initialize(connection = nil, guid = '@me', selector = '@friends') ⇒ FetchPeopleRequest

Initializes a request to the specified user’s group, or the default (@me, @friends). A valid Connection is not necessary if the request is to be used as part of an RpcRequest.



154
155
156
# File 'lib/opensocial/person.rb', line 154

def initialize(connection = nil, guid = '@me', selector = '@friends')
  super
end

Instance Method Details

#parse_rpc_response(response) ⇒ Object

Selects the appropriate fragment from the JSON response in order to create a native object.



168
169
170
# File 'lib/opensocial/person.rb', line 168

def parse_rpc_response(response)
  return parse_response(response['data']['list'])
end

#sendObject

Sends the request, passing in the appropriate SERVICE and specified instance variables.



160
161
162
163
164
# File 'lib/opensocial/person.rb', line 160

def send
  json = send_request(SERVICE, @guid, @selector)
  
  return parse_response(json['entry'])
end

#to_json(*a) ⇒ Object

Converts the request into a JSON fragment that can be used as part of a larger RPC request.



174
175
176
177
178
179
180
181
182
183
# File 'lib/opensocial/person.rb', line 174

def to_json(*a)
  value = {
    'method' => SERVICE + GET,
    'params' => {
      'userId' => ["#{@guid}"],
      'groupId' => "#{@selector}"
    },
    'id' => @key
  }.to_json(*a)
end