memories/lib/Db/TimelineQuery.php

134 lines
4.5 KiB
PHP
Raw Normal View History

2022-08-20 02:53:21 +00:00
<?php
declare(strict_types=1);
namespace OCA\Memories\Db;
use OCA\Memories\Exif;
use OCP\IConfig;
use OCP\IDBConnection;
class TimelineQuery {
2022-09-09 07:31:42 +00:00
protected IDBConnection $connection;
2022-08-20 02:53:21 +00:00
2022-09-09 07:31:42 +00:00
public function __construct(IDBConnection $connection) {
$this->connection = $connection;
}
2022-08-20 02:53:21 +00:00
/**
* Process the days response
* @param array $days
*/
private function processDays(&$days) {
foreach($days as &$row) {
$row["dayid"] = intval($row["dayid"]);
2022-08-20 02:53:21 +00:00
$row["count"] = intval($row["count"]);
}
return $days;
}
/**
* Get the days response from the database for the timeline
* @param IConfig $config
* @param string $userId
*/
public function getDays(
IConfig &$config,
2022-09-10 22:31:11 +00:00
string $user): array {
2022-08-22 18:48:35 +00:00
$sql = 'SELECT `*PREFIX*memories`.`dayid`, COUNT(`*PREFIX*memories`.`fileid`) AS count
2022-08-20 02:53:21 +00:00
FROM `*PREFIX*memories`
INNER JOIN `*PREFIX*filecache`
ON `*PREFIX*filecache`.`fileid` = `*PREFIX*memories`.`fileid`
2022-08-20 02:53:21 +00:00
AND `*PREFIX*filecache`.`path` LIKE ?
WHERE uid=?
GROUP BY `*PREFIX*memories`.`dayid`
ORDER BY `*PREFIX*memories`.`dayid` DESC';
2022-08-20 02:53:21 +00:00
$path = "files" . Exif::getPhotosPath($config, $user) . "%";
$rows = $this->connection->executeQuery($sql, [$path, $user], [
\PDO::PARAM_STR, \PDO::PARAM_STR,
])->fetchAll();
return $this->processDays($rows);
}
/**
* Get the days response from the database for one folder
* @param int $folderId
*/
2022-09-10 22:32:49 +00:00
public function getDaysFolder(int $folderId) {
$sql = 'SELECT `*PREFIX*memories`.`dayid`, COUNT(`*PREFIX*memories`.`fileid`) AS count
2022-08-20 02:53:21 +00:00
FROM `*PREFIX*memories`
INNER JOIN `*PREFIX*filecache`
ON `*PREFIX*filecache`.`fileid` = `*PREFIX*memories`.`fileid`
2022-08-20 02:53:21 +00:00
AND (`*PREFIX*filecache`.`parent`=? OR `*PREFIX*filecache`.`fileid`=?)
GROUP BY dayid
ORDER BY dayid DESC';
2022-08-20 02:53:21 +00:00
$rows = $this->connection->executeQuery($sql, [$folderId, $folderId], [
\PDO::PARAM_INT, \PDO::PARAM_INT,
])->fetchAll();
return $this->processDays($rows);
}
/**
* Process the single day response
* @param array $day
*/
private function processDay(&$day) {
foreach($day as &$row) {
$row["fileid"] = intval($row["fileid"]);
$row["isvideo"] = intval($row["isvideo"]);
if (!$row["isvideo"]) {
unset($row["isvideo"]);
2022-08-20 02:53:21 +00:00
}
}
return $day;
}
/**
* Get a day response from the database for the timeline
* @param IConfig $config
* @param string $userId
* @param int $dayId
*/
public function getDay(
IConfig &$config,
2022-09-10 22:31:11 +00:00
string $user,
int $dayId): array {
2022-08-22 18:48:35 +00:00
$sql = 'SELECT `*PREFIX*memories`.`fileid`, *PREFIX*filecache.etag, `*PREFIX*memories`.`isvideo`
2022-08-20 02:53:21 +00:00
FROM *PREFIX*memories
INNER JOIN *PREFIX*filecache
ON `*PREFIX*filecache`.`fileid` = `*PREFIX*memories`.`fileid`
2022-08-20 02:53:21 +00:00
AND `*PREFIX*filecache`.`path` LIKE ?
WHERE `*PREFIX*memories`.`uid` = ? AND `*PREFIX*memories`.`dayid` = ?
ORDER BY `*PREFIX*memories`.`datetaken` DESC';
2022-08-20 02:53:21 +00:00
$path = "files" . Exif::getPhotosPath($config, $user) . "%";
2022-09-09 07:31:42 +00:00
$rows = $this->connection->executeQuery($sql, [$path, $user, $dayId], [
2022-08-20 02:53:21 +00:00
\PDO::PARAM_STR, \PDO::PARAM_STR, \PDO::PARAM_INT,
])->fetchAll();
return $this->processDay($rows);
}
/**
* Get a day response from the database for one folder
* @param int $folderId
* @param int $dayId
*/
public function getDayFolder(
2022-09-11 00:49:21 +00:00
int $folderId,
int $dayId): array {
2022-08-22 18:48:35 +00:00
$sql = 'SELECT `*PREFIX*memories`.`fileid`, `*PREFIX*filecache`.`etag`, `*PREFIX*memories`.`isvideo`
2022-08-20 02:53:21 +00:00
FROM `*PREFIX*memories`
INNER JOIN `*PREFIX*filecache`
ON `*PREFIX*filecache`.`fileid` = `*PREFIX*memories`.`fileid`
2022-08-20 02:53:21 +00:00
AND (`*PREFIX*filecache`.`parent`=? OR `*PREFIX*filecache`.`fileid`=?)
2022-08-23 09:59:56 +00:00
WHERE `*PREFIX*memories`.`dayid`=?
ORDER BY `*PREFIX*memories`.`datetaken` DESC';
2022-09-09 07:31:42 +00:00
$rows = $this->connection->executeQuery($sql, [$folderId, $folderId, $dayId], [
2022-08-20 02:53:21 +00:00
\PDO::PARAM_INT, \PDO::PARAM_INT, \PDO::PARAM_INT,
])->fetchAll();
return $this->processDay($rows);
}
}