Esempio n. 1
0
 public function retrieve($id, $params = null)
 {
     $requestor = new Pingpp_ApiRequestor($this->_apiKey);
     $base = $this['url'];
     $id = Pingpp_ApiRequestor::utf8($id);
     $extn = urlencode($id);
     list($response, $apiKey) = $requestor->request('get', "{$base}/{$extn}", $params);
     return Pingpp_Util::convertToPingppObject($response, $apiKey);
 }
Esempio n. 2
0
 /**
  * Refreshes this object using the provided values.
  *
  * @param stdObject $values
  * @param string $apiKey
  * @param boolean $partial Defaults to false.
  */
 public function refreshFrom($values, $apiKey, $partial = false)
 {
     $this->_apiKey = $apiKey;
     // Wipe old state before setting new.  This is useful for e.g. updating a
     // customer, where there is no persistent card parameter.  Mark those values
     // which don't persist as transient
     if ($partial) {
         $removed = new Pingpp_Util_Set();
     } else {
         $removed = array_diff(array_keys($this->_values), array_keys(get_object_vars($values)));
     }
     foreach ($removed as $k) {
         if (self::$permanentAttributes->includes($k)) {
             continue;
         }
         unset($this->{$k});
     }
     foreach ($values as $k => $v) {
         if (self::$permanentAttributes->includes($k)) {
             continue;
         }
         if (self::$nestedUpdatableAttributes->includes($k) && is_object($v)) {
             $this->_values[$k] = Pingpp_Object::scopedConstructFrom('Pingpp_AttachedObject', $v, $apiKey);
         } else {
             $this->_values[$k] = Pingpp_Util::convertToPingppObject($v, $apiKey);
         }
         $this->_transientValues->discard($k);
         $this->_unsavedValues->discard($k);
     }
 }
Esempio n. 3
0
 protected static function _scopedCreate($class, $params = null, $apiKey = null)
 {
     self::_validateCall('create', $params, $apiKey);
     $requestor = new Pingpp_ApiRequestor($apiKey);
     $url = self::_scopedLsb($class, 'classUrl', $class);
     list($response, $apiKey) = $requestor->request('post', $url, $params);
     return Pingpp_Util::convertToPingppObject($response, $apiKey);
 }