client->call(Client::METHOD_GET, $path, [ ], $params); } /** * Create User * * Create a new user. * * @param string $email * @param string $password * @param string $name * @throws Exception * @return array */ public function createUser($email, $password, $name = '') { $path = str_replace([], [], '/users'); $params = []; $params['email'] = $email; $params['password'] = $password; $params['name'] = $name; return $this->client->call(Client::METHOD_POST, $path, [ ], $params); } /** * Get User * * Get user by its unique ID. * * @param string $userId * @throws Exception * @return array */ public function getUser($userId) { $path = str_replace(['{userId}'], [$userId], '/users/{userId}'); $params = []; return $this->client->call(Client::METHOD_GET, $path, [ ], $params); } /** * Get User Logs * * Get user activity logs list by its unique ID. * * @param string $userId * @throws Exception * @return array */ public function getUserLogs($userId) { $path = str_replace(['{userId}'], [$userId], '/users/{userId}/logs'); $params = []; return $this->client->call(Client::METHOD_GET, $path, [ ], $params); } /** * Get User Prefs * * Get user preferences by its unique ID. * * @param string $userId * @throws Exception * @return array */ public function getUserPrefs($userId) { $path = str_replace(['{userId}'], [$userId], '/users/{userId}/prefs'); $params = []; return $this->client->call(Client::METHOD_GET, $path, [ ], $params); } /** * Get User Sessions * * Get user sessions list by its unique ID. * * @param string $userId * @throws Exception * @return array */ public function getUserSessions($userId) { $path = str_replace(['{userId}'], [$userId], '/users/{userId}/sessions'); $params = []; return $this->client->call(Client::METHOD_GET, $path, [ ], $params); } /** * Delete User Sessions * * Delete all user sessions by its unique ID. * * @param string $userId * @throws Exception * @return array */ public function deleteUserSessions($userId) { $path = str_replace(['{userId}'], [$userId], '/users/{userId}/sessions'); $params = []; return $this->client->call(Client::METHOD_DELETE, $path, [ ], $params); } /** * Delete User Session * * Delete user sessions by its unique ID. * * @param string $userId * @param string $sessionId * @throws Exception * @return array */ public function deleteUsersSession($userId, $sessionId) { $path = str_replace(['{userId}'], [$userId], '/users/{userId}/sessions/:session'); $params = []; $params['sessionId'] = $sessionId; return $this->client->call(Client::METHOD_DELETE, $path, [ ], $params); } /** * Update user status * * Update user status by its unique ID. * * @param string $userId * @param string $status * @throws Exception * @return array */ public function updateUserStatus($userId, $status) { $path = str_replace(['{userId}'], [$userId], '/users/{userId}/status'); $params = []; $params['status'] = $status; return $this->client->call(Client::METHOD_PATCH, $path, [ ], $params); } }