Pony.fm/app/Library/Poniverse/Poniverse.php

164 lines
4.6 KiB
PHP
Raw Normal View History

2015-08-30 15:01:12 +02:00
<?php
/**
* Pony.fm - A community for pony fan music.
* Copyright (C) 2015 Peter Deltchev
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2015-11-09 20:35:30 +01:00
use OAuth2\Client;
use Poniverse\Ponyfm\Exceptions\InvalidAccessTokenException;
2015-08-30 15:01:12 +02:00
/**
* Class Poniverse
*
* Just for the sake of being sane without an autoloader
* this class is going to be a simple flat api class.
*/
Laravel 5.2 Update (#106) * Adopt PSR-2 coding style The Laravel framework adopts the PSR-2 coding style in version 5.1. Laravel apps *should* adopt this coding style as well. Read the [PSR-2 coding style guide][1] for more details and check out [PHPCS][2] to use as a code formatting tool. [1]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md [2]: https://github.com/squizlabs/PHP_CodeSniffer * Adopt PHP short array syntax Laravel 5 adopted the short array syntax which became available in PHP 5.4. * Remove SelfHandling from Jobs Jobs are self handling by default in Laravel 5.2. * Add new exceptions to `$dontReport` property * Shift core files * Shift Middleware Laravel 5.2 adjusts the `Guard` object used within middleware. In addition, new `can` and `throttles` middleware were added. * Shift Input to Request facade Laravel 5.2 no longer registers the `Input` facade by default. Laravel now prefers using the `Request` facade or the `$request` object within *Controllers* instead. Review the [HTTP Requests][1] documentation for more details. [1]: https://laravel.com/docs/5.2/requests * Shift configuration Laravel 5.2 introduces the `env` app configuration option and removes the `pretend` mail configuration option. In addition, a few of the default `providers` and `aliases` bindings were removed. * Shift Laravel dependencies * Shift cleanup * Updated composer.lock * Updated Middleware to 5.2 * Config update for Laravel 5.2 * [Laravel 5.2] Updated validation strings * Updated auth config * Updated to use middleware groups * Added laravel 5.2 sessions migration
2016-09-30 00:26:31 +02:00
class Poniverse
{
2015-08-30 15:01:12 +02:00
protected $clientId;
protected $clientSecret;
protected $accessToken;
protected $redirectUri;
2015-10-25 03:35:37 +01:00
protected $urls;
2015-08-30 15:01:12 +02:00
/**
* @var OAuth2\Client
*/
protected $client;
/**
* Initialises the class
*
* @param string $clientId
* @param string $clientSecret
* @param string $accessToken
*/
public function __construct($clientId, $clientSecret, $accessToken = '')
{
2015-10-25 03:35:37 +01:00
$this->urls = Config::get('poniverse.urls');
2015-08-30 15:01:12 +02:00
$this->clientId = $clientId;
$this->clientSecret = $clientSecret;
$this->accessToken = $accessToken;
//Setup Dependencies
$this->setupOAuth2();
$this->setupHttpful();
}
protected function setupOAuth2()
{
require_once('oauth2/Client.php');
require_once('oauth2/GrantType/IGrantType.php');
require_once('oauth2/GrantType/AuthorizationCode.php');
$this->client = new \OAuth2\Client($this->clientId, $this->clientSecret);
}
protected function setupHttpful()
{
require_once('autoloader.php');
$autoloader = new SplClassLoader('Httpful', __DIR__."/httpful/src/");
$autoloader->register();
}
public function setAccessToken($accessToken)
{
$this->accessToken = $accessToken;
}
public function getAuthenticationUrl($state)
{
return $this->client->getAuthenticationUrl($this->urls['auth'], $this->redirectUri, ['state' => $state]);
}
public function setRedirectUri($redirectUri)
{
$this->redirectUri = $redirectUri;
}
/**
* Gets the OAuth2 Client
*
* @return \OAuth2\Client
*/
public function getClient()
{
return $this->client;
}
/**
* Gets data about the currently logged in user
*
* @return array
*/
public function getUser()
{
Laravel 5.2 Update (#106) * Adopt PSR-2 coding style The Laravel framework adopts the PSR-2 coding style in version 5.1. Laravel apps *should* adopt this coding style as well. Read the [PSR-2 coding style guide][1] for more details and check out [PHPCS][2] to use as a code formatting tool. [1]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md [2]: https://github.com/squizlabs/PHP_CodeSniffer * Adopt PHP short array syntax Laravel 5 adopted the short array syntax which became available in PHP 5.4. * Remove SelfHandling from Jobs Jobs are self handling by default in Laravel 5.2. * Add new exceptions to `$dontReport` property * Shift core files * Shift Middleware Laravel 5.2 adjusts the `Guard` object used within middleware. In addition, new `can` and `throttles` middleware were added. * Shift Input to Request facade Laravel 5.2 no longer registers the `Input` facade by default. Laravel now prefers using the `Request` facade or the `$request` object within *Controllers* instead. Review the [HTTP Requests][1] documentation for more details. [1]: https://laravel.com/docs/5.2/requests * Shift configuration Laravel 5.2 introduces the `env` app configuration option and removes the `pretend` mail configuration option. In addition, a few of the default `providers` and `aliases` bindings were removed. * Shift Laravel dependencies * Shift cleanup * Updated composer.lock * Updated Middleware to 5.2 * Config update for Laravel 5.2 * [Laravel 5.2] Updated validation strings * Updated auth config * Updated to use middleware groups * Added laravel 5.2 sessions migration
2016-09-30 00:26:31 +02:00
$data = \Httpful\Request::get($this->urls['api'] . "users?access_token=" . $this->accessToken);
2015-08-30 15:01:12 +02:00
$result = $data->addHeader('Accept', 'application/json')->send();
return json_decode($result, true);
}
2015-11-09 20:35:30 +01:00
/**
* Gets information about the given access token.
*
* @link https://tools.ietf.org/html/draft-richer-oauth-introspection-06
*
* @param $accessTokenToIntrospect
* @return \Poniverse\AccessTokenInfo
* @throws InvalidAccessTokenException
2015-11-09 20:35:30 +01:00
* @throws \Symfony\Component\HttpKernel\Exception\HttpException
*/
public function getAccessTokenInfo($accessTokenToIntrospect)
{
$token = $this->client->getAccessToken(
Config::get('poniverse.urls.token'),
Client::GRANT_TYPE_CLIENT_CREDENTIALS,
[]
)['result']['access_token'];
$request = \Httpful\Request::post($this->urls['api']. 'meta/introspect?token='.$accessTokenToIntrospect);
/** @var Httpful\Response $result */
$result = $request
->addHeader('Accept', 'application/json')
->addHeader('Authorization', 'Bearer '.$token)
->send();
$data = json_decode($result, true);
if (404 === $result->code) {
throw new InvalidAccessTokenException('This access token is expired or invalid!');
}
if (200 !== $result->code) {
throw new \Symfony\Component\HttpKernel\Exception\HttpException(500, 'An unknown error occurred while contacting the Poniverse API.');
}
$tokenInfo = new \Poniverse\AccessTokenInfo($accessTokenToIntrospect);
$tokenInfo
->setIsActive($data['active'])
->setScopes($data['scope'])
->setClientId($data['client_id']);
2015-11-09 20:35:30 +01:00
return $tokenInfo;
}
2015-10-25 03:35:37 +01:00
}