Class: OpenSocial::FetchPersonRequest
- Inherits:
-
Request
- Object
- Request
- OpenSocial::FetchPersonRequest
- Defined in:
- lib/opensocial/person.rb
Constant Summary collapse
- SERVICE =
Defines the service fragment for use in constructing the request URL or JSON
'people'
- DEFAULT_FIELDS =
[:id, :dateOfBirth, :name, :emails, :gender, :state, :postalCode, :ethnicity, :relationshipStatus, :thumbnailUrl, :displayName]
Instance Method Summary collapse
-
#initialize(connection = nil, guid = '@me', selector = '@self') ⇒ FetchPersonRequest
constructor
Initializes a request to the specified user, or the default (@me, @self).
-
#parse_rpc_response(response) ⇒ Object
Selects the appropriate fragment from the JSON response in order to create a native object.
-
#send ⇒ Object
Sends the request, passing in the appropriate SERVICE and specified instance variables.
-
#to_json(*a) ⇒ Object
Converts the request into a JSON fragment that can be used as part of a larger RpcRequest.
Constructor Details
#initialize(connection = nil, guid = '@me', selector = '@self') ⇒ FetchPersonRequest
Initializes a request to the specified user, or the default (@me, @self). A valid Connection is not necessary if the request is to be used as part of an RpcRequest.
98 99 100 |
# File 'lib/opensocial/person.rb', line 98 def initialize(connection = nil, guid = '@me', selector = '@self') 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.
112 113 114 |
# File 'lib/opensocial/person.rb', line 112 def parse_rpc_response(response) return parse_response(response['data']) end |
#send ⇒ Object
Sends the request, passing in the appropriate SERVICE and specified instance variables.
104 105 106 107 108 |
# File 'lib/opensocial/person.rb', line 104 def send json = send_request(SERVICE, @guid, @selector, nil, false, :fields => DEFAULT_FIELDS.join(",")) 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 RpcRequest.
118 119 120 121 122 123 124 125 126 127 |
# File 'lib/opensocial/person.rb', line 118 def to_json(*a) value = { 'method' => SERVICE + GET, 'params' => { 'userId' => ["#{@guid}"], 'groupId' => "#{@selector}" }, 'id' => @key }.to_json(*a) end |