connection = $connection; } public static function getDateTaken(File $file) { // Attempt to read exif data if (in_array($file->getMimeType(), Application::IMAGE_MIMES)) { $exif = exif_read_data($file->fopen('rb')); $dt = $exif['DateTimeOriginal']; if ($dt) { $dt = \DateTime::createFromFormat('Y:m:d H:i:s', $dt); if ($dt) { return $dt->getTimestamp(); } } } // Fall back to creation time $dateTaken = $file->getCreationTime(); // Fall back to upload time if ($dateTaken == 0) { $dateTaken = $file->getUploadTime(); } // Fall back to modification time if ($dateTaken == 0) { $dateTaken = $file->getMtime(); } return $dateTaken; } public function processFile(File $file): void { $mime = $file->getMimeType(); $is_image = in_array($mime, Application::IMAGE_MIMES); $is_video = in_array($mime, Application::VIDEO_MIMES); if (!$is_image && !$is_video) { return; } // Get parameters $user = $file->getOwner()->getUID(); $fileId = $file->getId(); $dateTaken = $this->getDateTaken($file); $dayId = floor($dateTaken / 86400); $sql = 'INSERT INTO oc_polaroid (day_id, date_taken, is_video, user_id, file_id) VALUES (?, ?, ?, ?, ?) ON DUPLICATE KEY UPDATE day_id = ?, date_taken = ?, is_video = ?'; $this->connection->executeStatement($sql, [ $dayId, $dateTaken, $is_video, $user, $fileId, $dayId, $dateTaken, $is_video, ], [ \PDO::PARAM_INT, \PDO::PARAM_INT, \PDO::PARAM_BOOL, \PDO::PARAM_STR, \PDO::PARAM_INT, \PDO::PARAM_INT, \PDO::PARAM_INT, \PDO::PARAM_BOOL, ]); } public function deleteFile(File $file) { $sql = 'DELETE FROM oc_polaroid WHERE file_id = ?'; $this->connection->executeStatement($sql, [$file->getId()], [\PDO::PARAM_INT]); } public function getDays( string $user, ): array { $sql = 'SELECT day_id, COUNT(file_id) AS count FROM `oc_polaroid` WHERE user_id=? GROUP BY day_id ORDER BY day_id DESC'; $rows = $this->connection->executeQuery($sql, [$user], [ \PDO::PARAM_STR, ])->fetchAll(); return $rows; } public function getDay( string $user, int $dayId, ): array { $sql = 'SELECT file_id, oc_filecache.etag, is_video FROM oc_polaroid LEFT JOIN oc_filecache ON oc_filecache.fileid = oc_polaroid.file_id WHERE user_id = ? AND day_id = ? ORDER BY date_taken DESC'; $rows = $this->connection->executeQuery($sql, [$user, $dayId], [ \PDO::PARAM_STR, \PDO::PARAM_INT, ])->fetchAll(); foreach($rows as &$row) { $row["file_id"] = intval($row["file_id"]); $row["is_video"] = intval($row["is_video"]); if (!$row["is_video"]) { unset($row["is_video"]); } } return $rows; } }