34 lines
851 B
PHP
34 lines
851 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\Memories\Db;
|
|
|
|
use OCP\IDBConnection;
|
|
|
|
class TimelineQuery {
|
|
use TimelineQueryDays;
|
|
use TimelineQueryFilters;
|
|
|
|
protected IDBConnection $connection;
|
|
|
|
public function __construct(IDBConnection $connection) {
|
|
$this->connection = $connection;
|
|
}
|
|
|
|
public function getInfoById(int $id): array {
|
|
$qb = $this->connection->getQueryBuilder();
|
|
$qb->select('*')
|
|
->from('memories')
|
|
->where($qb->expr()->eq('fileid', $qb->createNamedParameter($id, \PDO::PARAM_INT)));
|
|
|
|
$result = $qb->executeQuery();
|
|
$row = $result->fetch();
|
|
$result->closeCursor();
|
|
|
|
return [
|
|
'fileid' => intval($row['fileid']),
|
|
'dayid' => intval($row['dayid']),
|
|
'datetaken' => $row['datetaken'],
|
|
];
|
|
}
|
|
} |