mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-01-09 21:37:59 +05:30
52 lines
1.5 KiB
PHP
52 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* @author Alex Bilbie <hello@alexbilbie.com>
|
|
* @copyright Copyright (c) Alex Bilbie
|
|
* @license http://mit-license.org/
|
|
*
|
|
* @link https://github.com/thephpleague/oauth2-server
|
|
*/
|
|
|
|
namespace OAuth2ServerExamples\Repositories;
|
|
|
|
use League\OAuth2\Server\Repositories\ClientRepositoryInterface;
|
|
use OAuth2ServerExamples\Entities\ClientEntity;
|
|
|
|
class ClientRepository implements ClientRepositoryInterface
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getClientEntity($clientIdentifier, $grantType, $clientSecret = null, $mustValidateSecret = true)
|
|
{
|
|
$clients = [
|
|
'myawesomeapp' => [
|
|
'secret' => password_hash('abc123', PASSWORD_BCRYPT),
|
|
'name' => 'My Awesome App',
|
|
'redirect_uri' => 'http://foo/bar',
|
|
'is_confidential' => true,
|
|
],
|
|
];
|
|
|
|
// Check if client is registered
|
|
if (array_key_exists($clientIdentifier, $clients) === false) {
|
|
return;
|
|
}
|
|
|
|
if (
|
|
$mustValidateSecret === true
|
|
&& $clients[$clientIdentifier]['is_confidential'] === true
|
|
&& password_verify($clientSecret, $clients[$clientIdentifier]['secret']) === false
|
|
) {
|
|
return;
|
|
}
|
|
|
|
$client = new ClientEntity();
|
|
$client->setIdentifier($clientIdentifier);
|
|
$client->setName($clients[$clientIdentifier]['name']);
|
|
$client->setRedirectUri($clients[$clientIdentifier]['redirect_uri']);
|
|
|
|
return $client;
|
|
}
|
|
}
|