mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-08 10:34:34 +00:00
74 lines
1.9 KiB
PHP
74 lines
1.9 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2014 Alchemy
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Alchemy\Phrasea\Model\Manipulator;
|
|
|
|
use Alchemy\Phrasea\Model\Entities\ApiAccount;
|
|
use Alchemy\Phrasea\Model\Entities\ApiOauthRefreshtoken;
|
|
use Doctrine\Common\Persistence\ObjectManager;
|
|
use Doctrine\ORM\EntityRepository;
|
|
use RandomLib\Generator;
|
|
|
|
class ApiOauthRefreshTokenManipulator implements ManipulatorInterface
|
|
{
|
|
private $om;
|
|
private $repository;
|
|
private $randomGenerator;
|
|
|
|
public function __construct(ObjectManager $om, EntityRepository $repo, Generator $random)
|
|
{
|
|
$this->om = $om;
|
|
$this->repository = $repo;
|
|
$this->randomGenerator = $random;
|
|
}
|
|
|
|
public function create(ApiAccount $account, $expire, $scope = null)
|
|
{
|
|
$refreshToken = new ApiOauthRefreshtoken();
|
|
|
|
$refreshToken->setCode($this->getNewToken());
|
|
$refreshToken->setAccount($account);
|
|
$refreshToken->setExpires($expire);
|
|
$refreshToken->setScope($scope);
|
|
|
|
$this->update($refreshToken);
|
|
|
|
return $refreshToken;
|
|
}
|
|
|
|
public function delete(ApiOauthRefreshtoken $refreshToken)
|
|
{
|
|
$this->om->remove($refreshToken);
|
|
$this->om->flush();
|
|
}
|
|
|
|
public function update(ApiOauthRefreshtoken $refreshToken)
|
|
{
|
|
$this->om->persist($refreshToken);
|
|
$this->om->flush();
|
|
}
|
|
|
|
public function setRefreshToken(ApiOauthRefreshtoken $refreshToken, $token)
|
|
{
|
|
$refreshToken->setRefreshToken($token);
|
|
$this->update($refreshToken);
|
|
}
|
|
|
|
private function getNewToken()
|
|
{
|
|
do {
|
|
$refreshToken = $this->randomGenerator->generateString(32, TokenManipulator::LETTERS_AND_NUMBERS);
|
|
} while (null !== $this->repository->find($refreshToken));
|
|
|
|
return $refreshToken;
|
|
}
|
|
}
|