$this->appID, 'redirect_uri' => $this->callback, 'response_type' => 'code', 'scope' => $this->getScopes(), 'state' => \json_encode($this->state) ]); } /** * @param string $code * * @return array */ protected function getTokens(string $code): array { if (empty($this->tokens)) { $this->tokens = \json_decode($this->request( 'POST', 'https://public-api.wordpress.com/oauth2/token', [], \http_build_query([ 'client_id' => $this->appID, 'redirect_uri' => $this->callback, 'client_secret' => $this->appSecret, 'grant_type' => 'authorization_code', 'code' => $code ]) ), true); } return $this->tokens; } /** * @param string $refreshToken * * @return array */ public function refreshTokens(string $refreshToken): array { $this->tokens = \json_decode($this->request( 'POST', 'https://public-api.wordpress.com/oauth2/token', [], \http_build_query([ 'client_id' => $this->appID, 'client_secret' => $this->appSecret, 'grant_type' => 'refresh_token', 'refresh_token' => $refreshToken ]) ), true); if (empty($this->tokens['refresh_token'])) { $this->tokens['refresh_token'] = $refreshToken; } return $this->tokens; } /** * @param string $accessToken * * @return string */ public function getUserID(string $accessToken): string { $user = $this->getUser($accessToken); return $user['ID'] ?? ''; } /** * @param string $accessToken * * @return string */ public function getUserEmail(string $accessToken): string { $user = $this->getUser($accessToken); if ($user['verified']) { return $user['email'] ?? ''; } return ''; } /** * Check if the OAuth email is verified * * @link https://developer.wordpress.com/docs/api/1.1/get/me/ * * @param string $accessToken * * @return bool */ public function isEmailVerified(string $accessToken): bool { $user = $this->getUser($accessToken); if ($user['email_verified'] ?? false) { return true; } return false; } /** * @param string $accessToken * * @return string */ public function getUserName(string $accessToken): string { $user = $this->getUser($accessToken); return $user['username'] ?? ''; } /** * @param string $accessToken * * @return array */ protected function getUser(string $accessToken) { if (empty($this->user)) { $this->user = \json_decode($this->request('GET', 'https://public-api.wordpress.com/rest/v1/me', ['Authorization: Bearer ' . $accessToken]), true); } return $this->user; } }