ResourceServer.php in Simple OAuth (OAuth2) & OpenID Connect 8.2
File
src/Server/ResourceServer.php
View source
<?php
namespace Drupal\simple_oauth\Server;
use Drupal\Core\Config\ConfigFactoryInterface;
use League\OAuth2\Server\Exception\OAuthServerException;
use League\OAuth2\Server\Repositories\AccessTokenRepositoryInterface;
use League\OAuth2\Server\ResourceServer as LeageResourceServer;
use Symfony\Bridge\PsrHttpMessage\HttpFoundationFactoryInterface;
use Symfony\Bridge\PsrHttpMessage\HttpMessageFactoryInterface;
use Symfony\Component\HttpFoundation\Request;
class ResourceServer implements ResourceServerInterface {
protected $subject;
protected $messageFactory;
protected $foundationFactory;
public function __construct(AccessTokenRepositoryInterface $access_token_repository, ConfigFactoryInterface $config_factory, HttpMessageFactoryInterface $message_factory, HttpFoundationFactoryInterface $foundation_factory) {
try {
if ($public_key = $config_factory
->get('simple_oauth.settings')
->get('public_key')) {
$this->subject = new LeageResourceServer($access_token_repository, realpath($public_key));
}
} catch (\LogicException $exception) {
}
$this->messageFactory = $message_factory;
$this->foundationFactory = $foundation_factory;
}
public function validateAuthenticatedRequest(Request $request) {
$psr7_request = $this->messageFactory
->createRequest($request);
$output_psr7_request = $this->subject
->validateAuthenticatedRequest($psr7_request);
return $this->foundationFactory
->createRequest($output_psr7_request);
}
}