Files
Phraseanet/lib/Alchemy/Phrasea/Model/Manipulator/ApiOauthTokenManipulator.php
Nicolas Le Goff 66fa05f4ee Fix CS
2014-07-17 15:17:04 +02:00

94 lines
2.3 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\ApiOauthToken;
use Doctrine\Common\Persistence\ObjectManager;
use Doctrine\ORM\EntityRepository;
use RandomLib\Generator;
class ApiOauthTokenManipulator 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 = null, $scope = null)
{
$token = new ApiOauthToken();
$token->setOauthToken($this->getNewToken());
$token->setExpires($expire);
$token->setScope($scope);
$token->setAccount($account);
$this->om->persist($account);
$this->update($token);
return $token;
}
public function delete(ApiOauthToken $token)
{
$this->om->remove($token);
$this->om->flush();
}
public function update(ApiOauthToken $token)
{
$this->om->persist($token);
$this->om->flush();
}
public function setLastUsed(ApiOauthToken $token, \DateTime $date)
{
$token->setLastUsed($date);
$this->update($token);
}
public function rememberSessionId(ApiOauthToken $token, $sessionId)
{
$token->setSessionId($sessionId);
$this->update($token);
}
public function renew(ApiOauthToken $token, $expire = null)
{
$token->setOauthToken($this->getNewToken());
$token->setExpires($expire);
$this->update($token);
}
public function setOauthToken(ApiOauthToken $token, $oauthToken)
{
$token->setOauthToken($oauthToken);
$this->update($token);
}
private function getNewToken()
{
do {
$token = $this->randomGenerator->generateString(32, TokenManipulator::LETTERS_AND_NUMBERS);
} while (null !== $this->repository->find($token));
return $token;
}
}