Current File : /home/inlingua/www/crm.vprotectindia.com/vendor/laravel/passport/src/Bridge/AuthCodeRepository.php |
<?php
namespace Laravel\Passport\Bridge;
use Laravel\Passport\Passport;
use Illuminate\Database\Connection;
use League\OAuth2\Server\Entities\AuthCodeEntityInterface;
use League\OAuth2\Server\Repositories\AuthCodeRepositoryInterface;
class AuthCodeRepository implements AuthCodeRepositoryInterface
{
use FormatsScopesForStorage;
/**
* The database connection.
*
* @var \Illuminate\Database\Connection
*/
protected $database;
/**
* Create a new repository instance.
*
* @param \Illuminate\Database\Connection $database
* @return void
*/
public function __construct(Connection $database)
{
$this->database = $database;
}
/**
* {@inheritdoc}
*/
public function getNewAuthCode()
{
return new AuthCode;
}
/**
* {@inheritdoc}
*/
public function persistNewAuthCode(AuthCodeEntityInterface $authCodeEntity)
{
$attributes = [
'id' => $authCodeEntity->getIdentifier(),
'user_id' => $authCodeEntity->getUserIdentifier(),
'client_id' => $authCodeEntity->getClient()->getIdentifier(),
'scopes' => $this->formatScopesForStorage($authCodeEntity->getScopes()),
'revoked' => false,
'expires_at' => $authCodeEntity->getExpiryDateTime(),
];
Passport::authCode()->setRawAttributes($attributes)->save();
}
/**
* {@inheritdoc}
*/
public function revokeAuthCode($codeId)
{
$this->database->table(Passport::authCode()->getTable())
->where('id', $codeId)->update(['revoked' => true]);
}
/**
* {@inheritdoc}
*/
public function isAuthCodeRevoked($codeId)
{
return $this->database->table(Passport::authCode()->getTable())
->where('id', $codeId)->where('revoked', 1)->exists();
}
}