EVOLUTION-MANAGER
Edit File: User.php
<?php /** * Nexmo Client Library for PHP * * @copyright Copyright (c) 2016 Nexmo, Inc. (http://nexmo.com) * @license https://github.com/Nexmo/nexmo-php/blob/master/LICENSE.txt MIT License */ namespace Nexmo\User; use Nexmo\Client\ClientAwareInterface; use Nexmo\Client\ClientAwareTrait; use Nexmo\Entity\EntityInterface; use Nexmo\Entity\JsonResponseTrait; use Nexmo\Entity\JsonSerializableTrait; use Nexmo\Entity\JsonUnserializableInterface; use Nexmo\Entity\NoRequestResponseTrait; use Zend\Diactoros\Request; use Nexmo\Client\Exception; use Psr\Http\Message\ResponseInterface; class User implements EntityInterface, \JsonSerializable, JsonUnserializableInterface, ClientAwareInterface { use NoRequestResponseTrait; use JsonSerializableTrait; use JsonResponseTrait; use ClientAwareTrait; protected $data = []; public function __construct($id = null) { $this->data['id'] = $id; } public function setName($name) { $this->data['name'] = $name; return $this; } public function getId() { return $this->data['id']; } public function __toString() { return (string)$this->getId(); } public function get() { $request = new Request( $this->getClient()->getApiUrl() . Collection::getCollectionPath() . '/' . $this->getId() ,'GET' ); $response = $this->getClient()->send($request); if($response->getStatusCode() != '200'){ throw $this->getException($response); } $data = json_decode($response->getBody()->getContents(), true); $this->jsonUnserialize($data); return $this; } public function getConversations() { $response = $this->getClient()->get( $this->getClient()->getApiUrl() . Collection::getCollectionPath().'/'.$this->getId().'/conversations' ); if($response->getStatusCode() != '200'){ throw $this->getException($response); } $data = json_decode($response->getBody()->getContents(), true); $conversationCollection = $this->getClient()->conversation(); return $conversationCollection->hydrateAll($data); } public function jsonSerialize() { return $this->data; } public function jsonUnserialize(array $json) { $this->data = $json; } public function getRequestDataForConversation() { return [ 'user_id' => $this->getId() ]; } protected function getException(ResponseInterface $response) { $body = json_decode($response->getBody()->getContents(), true); $status = $response->getStatusCode(); // This message isn't very useful, but we shouldn't ever see it $errorTitle = 'Unexpected error'; if (isset($body['code'])) { $errorTitle = $body['code']; } if (isset($body['description']) && $body['description']) { $errorTitle = $body['description']; } if (isset($body['error_title'])) { $errorTitle = $body['error_title']; } if($status >= 400 AND $status < 500) { $e = new Exception\Request($errorTitle, $status); } elseif($status >= 500 AND $status < 600) { $e = new Exception\Server($errorTitle, $status); } else { $e = new Exception\Exception('Unexpected HTTP Status Code'); throw $e; } return $e; } }