szurubooru/src/Dao/SnapshotDao.php
Marcin Kurczewski 632bac8661 Added "use ..." statements
This version ditches backwards compatibility with PHP earlier than 5.6.
2014-10-18 18:48:36 +02:00

50 lines
1.1 KiB
PHP

<?php
namespace Szurubooru\Dao;
use Szurubooru\Dao\EntityConverters\SnapshotEntityConverter;
use Szurubooru\Dao\UserDao;
use Szurubooru\DatabaseConnection;
use Szurubooru\Entities\Entity;
use Szurubooru\Entities\Snapshot;
class SnapshotDao extends AbstractDao
{
private $userDao;
public function __construct(
DatabaseConnection $databaseConnection,
UserDao $userDao)
{
parent::__construct(
$databaseConnection,
'snapshots',
new SnapshotEntityConverter());
$this->userDao = $userDao;
}
public function findByTypeAndKey($type, $primaryKey)
{
$query = $this->fpdo
->from($this->tableName)
->where('type', $type)
->where('primaryKey', $primaryKey)
->orderBy('time DESC');
return $this->arrayToEntities(iterator_to_array($query));
}
public function afterLoad(Entity $snapshot)
{
$snapshot->setLazyLoader(
Snapshot::LAZY_LOADER_USER,
function (Snapshot $snapshot)
{
return $this->getUser($snapshot);
});
}
private function getUser(Snapshot $snapshot)
{
$userId = $snapshot->getUserId();
return $this->userDao->findById($userId);
}
}