This repository has been archived on 2024-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
epubreader/lib/Db/BookmarkMapper.php

93 lines
2.2 KiB
PHP
Raw Normal View History

2020-04-21 20:37:42 +00:00
<?php
/**
* @author Frank de Lange
* @copyright 2017 Frank de Lange
*
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace OCA\Epubreader\Db;
2020-04-21 20:37:42 +00:00
2023-06-16 14:58:23 +00:00
use OCA\Epubreader\Utility\Time;
2020-04-21 20:37:42 +00:00
use OCP\IDBConnection;
2023-08-02 20:04:03 +00:00
class BookmarkMapper extends ReaderMapper
{
2023-06-16 19:20:03 +00:00
private string $userId;
2023-06-16 14:58:23 +00:00
2023-08-02 20:04:03 +00:00
public function __construct(IDBConnection $db, string $UserId, Time $time)
{
2023-06-16 14:58:23 +00:00
parent::__construct($db, 'reader_bookmarks', Bookmark::class, $time);
$this->userId = $UserId;
}
/**
* @brief get bookmarks for $fileId+$userId(+$name)
2023-06-16 19:20:03 +00:00
*
* @return ReaderEntity[]
2023-06-16 14:58:23 +00:00
*/
2023-08-02 20:04:03 +00:00
public function get(int $fileId, ?string $name = null, ?string $type = null): array
{
2023-06-16 14:58:23 +00:00
$query = $this->db->getQueryBuilder();
$query->select('*')
->from($this->getTableName())
->where($query->expr()->eq('file_id', $query->createNamedParameter($fileId)))
2023-08-02 20:04:03 +00:00
->andWhere($query->expr()->eq('user_id', $query->createNamedParameter($this->userId)))
;
2023-06-16 14:58:23 +00:00
2023-08-02 20:04:03 +00:00
if (null !== $type) {
2023-06-16 14:58:23 +00:00
$query->andWhere($query->expr()->eq('type', $query->createNamedParameter($type)));
}
2023-08-02 20:04:03 +00:00
if (null !== $name) {
2023-06-16 14:58:23 +00:00
$query->andWhere($query->expr()->eq('name', $query->createNamedParameter($name)));
}
return $this->findEntities($query);
}
/**
* @brief write bookmark to database
*
2023-06-16 19:20:03 +00:00
* @return ReaderEntity the newly created or updated bookmark
2023-06-16 14:58:23 +00:00
*/
2023-08-02 20:04:03 +00:00
public function set(int $fileId, string $name, string $value, ?string $type = null, ?string $content = null): ReaderEntity
{
2023-06-16 14:58:23 +00:00
$result = $this->get($fileId, $name);
2023-08-02 20:04:03 +00:00
if (empty($result)) {
2023-06-16 14:58:23 +00:00
// anonymous bookmarks are named after their contents
2023-06-17 22:08:38 +00:00
if (empty($name)) {
2023-06-16 14:58:23 +00:00
$name = $value;
}
// default type is "bookmark"
if (null === $type) {
2023-08-02 20:04:03 +00:00
$type = 'bookmark';
2023-06-16 14:58:23 +00:00
}
$bookmark = new Bookmark();
$bookmark->setFileId($fileId);
$bookmark->setUserId($this->userId);
$bookmark->setType($type);
$bookmark->setName($name);
$bookmark->setValue($value);
2023-06-16 19:20:03 +00:00
$bookmark->setContent($content ?? '');
2023-06-16 14:58:23 +00:00
$this->insert($bookmark);
2023-06-17 22:26:54 +00:00
} elseif ($result[0] instanceof Bookmark) {
2023-06-16 14:58:23 +00:00
$bookmark = $result[0];
$bookmark->setValue($value);
2023-06-16 19:20:03 +00:00
$bookmark->setContent($content ?? '');
2023-06-16 14:58:23 +00:00
$this->update($bookmark);
2023-06-17 22:26:54 +00:00
} else {
$bookmark = new Bookmark();
2023-06-16 14:58:23 +00:00
}
return $bookmark;
}
2020-04-21 20:37:42 +00:00
}