| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455 |
- <?php
- declare(strict_types=1);
- class FreshRSS_TagDAO extends Minz_ModelPdo {
- public function sqlIgnore(): string {
- return 'IGNORE';
- }
- /**
- * @param array{'id'?:int,'name':string,'attributes'?:array<string,mixed>} $valuesTmp
- * @return int|false
- */
- public function addTag(array $valuesTmp) {
- // TRIM() gives a text type hint to PostgreSQL
- // No category of the same name
- $sql = <<<'SQL'
- INSERT INTO `_tag`(name, attributes)
- SELECT * FROM (SELECT TRIM(?) as name, TRIM(?) as attributes) t2
- WHERE NOT EXISTS (SELECT 1 FROM `_category` WHERE name = TRIM(?))
- SQL;
- $stm = $this->pdo->prepare($sql);
- $valuesTmp['name'] = mb_strcut(trim($valuesTmp['name']), 0, FreshRSS_DatabaseDAO::LENGTH_INDEX_UNICODE, 'UTF-8');
- if (!isset($valuesTmp['attributes'])) {
- $valuesTmp['attributes'] = [];
- }
- $values = [
- $valuesTmp['name'],
- is_string($valuesTmp['attributes']) ? $valuesTmp['attributes'] : json_encode($valuesTmp['attributes'], JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE),
- $valuesTmp['name'],
- ];
- if ($stm !== false && $stm->execute($values) && $stm->rowCount() > 0) {
- $tagId = $this->pdo->lastInsertId('`_tag_id_seq`');
- return $tagId === false ? false : (int)$tagId;
- } else {
- $info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
- Minz_Log::error('SQL error ' . __METHOD__ . json_encode($info));
- return false;
- }
- }
- /** @return int|false */
- public function addTagObject(FreshRSS_Tag $tag) {
- $tag0 = $this->searchByName($tag->name());
- if (!$tag0) {
- $values = [
- 'name' => $tag->name(),
- 'attributes' => $tag->attributes(),
- ];
- return $this->addTag($values);
- }
- return $tag->id();
- }
- /** @return int|false */
- public function updateTagName(int $id, string $name) {
- // No category of the same name
- $sql = <<<'SQL'
- UPDATE `_tag` SET name = :name1 WHERE id = :id
- AND NOT EXISTS (SELECT 1 FROM `_category` WHERE name = :name2)
- SQL;
- $name = mb_strcut(trim($name), 0, FreshRSS_DatabaseDAO::LENGTH_INDEX_UNICODE, 'UTF-8');
- $stm = $this->pdo->prepare($sql);
- if ($stm !== false &&
- $stm->bindValue(':id', $id, PDO::PARAM_INT) &&
- $stm->bindValue(':name1', $name, PDO::PARAM_STR) &&
- $stm->bindValue(':name2', $name, PDO::PARAM_STR) &&
- $stm->execute()) {
- return $stm->rowCount();
- } else {
- $info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
- Minz_Log::error('SQL error ' . __METHOD__ . json_encode($info));
- return false;
- }
- }
- /**
- * @param array<string,mixed> $attributes
- * @return int|false
- */
- public function updateTagAttributes(int $id, array $attributes) {
- $sql = 'UPDATE `_tag` SET attributes=:attributes WHERE id=:id';
- $stm = $this->pdo->prepare($sql);
- if ($stm !== false &&
- $stm->bindValue(':id', $id, PDO::PARAM_INT) &&
- $stm->bindValue(':attributes', json_encode($attributes, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE), PDO::PARAM_STR) &&
- $stm->execute()) {
- return $stm->rowCount();
- }
- $info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
- Minz_Log::error('SQL error ' . __METHOD__ . json_encode($info));
- return false;
- }
- /**
- * @param non-empty-string $key
- * @param mixed $value
- * @return int|false
- */
- public function updateTagAttribute(FreshRSS_Tag $tag, string $key, $value) {
- $tag->_attribute($key, $value);
- return $this->updateTagAttributes($tag->id(), $tag->attributes());
- }
- /**
- * @return int|false
- */
- public function deleteTag(int $id) {
- if ($id <= 0) {
- return false;
- }
- $sql = 'DELETE FROM `_tag` WHERE id=?';
- $stm = $this->pdo->prepare($sql);
- $values = [$id];
- if ($stm !== false && $stm->execute($values)) {
- return $stm->rowCount();
- } else {
- $info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
- Minz_Log::error('SQL error ' . __METHOD__ . json_encode($info));
- return false;
- }
- }
- /** @return Traversable<array{'id':int,'name':string,'attributes'?:array<string,mixed>}> */
- public function selectAll(): Traversable {
- $sql = 'SELECT id, name, attributes FROM `_tag`';
- $stm = $this->pdo->query($sql);
- if ($stm === false) {
- Minz_Log::error('SQL error ' . __METHOD__ . json_encode($this->pdo->errorInfo()));
- return;
- }
- while ($row = $stm->fetch(PDO::FETCH_ASSOC)) {
- /** @var array{'id':int,'name':string,'attributes'?:array<string,mixed>} $row */
- yield $row;
- }
- }
- /** @return Traversable<array{'id_tag':int,'id_entry':string}> */
- public function selectEntryTag(): Traversable {
- $sql = 'SELECT id_tag, id_entry FROM `_entrytag`';
- $stm = $this->pdo->query($sql);
- if ($stm === false) {
- Minz_Log::error('SQL error ' . __METHOD__ . json_encode($this->pdo->errorInfo()));
- return;
- }
- while ($row = $stm->fetch(PDO::FETCH_ASSOC)) {
- FreshRSS_DatabaseDAO::pdoInt($row, ['id_tag']);
- FreshRSS_DatabaseDAO::pdoString($row, ['id_entry']);
- yield $row;
- }
- }
- /** @return int|false */
- public function updateEntryTag(int $oldTagId, int $newTagId) {
- $sql = <<<'SQL'
- DELETE FROM `_entrytag` WHERE EXISTS (
- SELECT 1 FROM `_entrytag` AS e
- WHERE e.id_entry = `_entrytag`.id_entry AND e.id_tag = ? AND `_entrytag`.id_tag = ?)
- SQL;
- $stm = $this->pdo->prepare($sql);
- if ($stm === false || !$stm->execute([$newTagId, $oldTagId])) {
- $info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
- Minz_Log::error('SQL error ' . __METHOD__ . ' A ' . json_encode($info));
- return false;
- }
- $sql = 'UPDATE `_entrytag` SET id_tag = ? WHERE id_tag = ?';
- $stm = $this->pdo->prepare($sql);
- if ($stm !== false && $stm->execute([$newTagId, $oldTagId])) {
- return $stm->rowCount();
- }
- $info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
- Minz_Log::error('SQL error ' . __METHOD__ . ' B ' . json_encode($info));
- return false;
- }
- public function searchById(int $id): ?FreshRSS_Tag {
- $res = $this->fetchAssoc('SELECT * FROM `_tag` WHERE id=:id', [':id' => $id]);
- /** @var array<array{'id':int,'name':string,'attributes'?:string}>|null $res */
- return $res === null ? null : (current(self::daoToTags($res)) ?: null);
- }
- public function searchByName(string $name): ?FreshRSS_Tag {
- $res = $this->fetchAssoc('SELECT * FROM `_tag` WHERE name=:name', [':name' => $name]);
- /** @var array<array{'id':int,'name':string,'attributes'?:string}>|null $res */
- return $res === null ? null : (current(self::daoToTags($res)) ?: null);
- }
- /** @return array<int,FreshRSS_Tag>|false */
- public function listTags(bool $precounts = false) {
- if ($precounts) {
- $sql = <<<'SQL'
- SELECT t.id, t.name, count(e.id) AS unreads
- FROM `_tag` t
- LEFT OUTER JOIN `_entrytag` et ON et.id_tag = t.id
- LEFT OUTER JOIN `_entry` e ON et.id_entry = e.id AND e.is_read = 0
- GROUP BY t.id
- ORDER BY t.name
- SQL;
- } else {
- $sql = 'SELECT * FROM `_tag` ORDER BY name';
- }
- $stm = $this->pdo->query($sql);
- if ($stm !== false) {
- $res = $stm->fetchAll(PDO::FETCH_ASSOC) ?: [];
- return self::daoToTags($res);
- } else {
- $info = $this->pdo->errorInfo();
- Minz_Log::error('SQL error ' . __METHOD__ . json_encode($info));
- return false;
- }
- }
- /** @return array<string,string> */
- public function listTagsNewestItemUsec(?int $id_tag = null): array {
- $sql = <<<'SQL'
- SELECT t.id AS id_tag, MAX(e.id) AS newest_item_us
- FROM `_tag` t
- LEFT OUTER JOIN `_entrytag` et ON et.id_tag = t.id
- LEFT OUTER JOIN `_entry` e ON et.id_entry = e.id
- SQL;
- if ($id_tag === null) {
- $sql .= ' GROUP BY t.id';
- } else {
- $sql .= ' WHERE t.id=' . $id_tag;
- }
- $res = $this->fetchAssoc($sql);
- if ($res == null) {
- return [];
- }
- $newestItemUsec = [];
- foreach ($res as $line) {
- $newestItemUsec['t_' . $line['id_tag']] = (string)($line['newest_item_us']);
- }
- return $newestItemUsec;
- }
- public function count(): int {
- $sql = 'SELECT COUNT(*) AS count FROM `_tag`';
- $stm = $this->pdo->query($sql);
- if ($stm !== false) {
- $res = $stm->fetchAll(PDO::FETCH_ASSOC);
- return (int)$res[0]['count'];
- }
- $info = $this->pdo->errorInfo();
- Minz_Log::error('SQL error ' . __METHOD__ . json_encode($info));
- return -1;
- }
- public function countEntries(int $id): int {
- $sql = 'SELECT COUNT(*) AS count FROM `_entrytag` WHERE id_tag=:id_tag';
- $res = $this->fetchAssoc($sql, [':id_tag' => $id]);
- if ($res == null || !isset($res[0]['count'])) {
- return -1;
- }
- return (int)$res[0]['count'];
- }
- public function countNotRead(?int $id = null): int {
- $sql = <<<'SQL'
- SELECT COUNT(*) AS count FROM `_entrytag` et
- INNER JOIN `_entry` e ON et.id_entry=e.id
- WHERE e.is_read=0
- SQL;
- $values = [];
- if (null !== $id) {
- $sql .= ' AND et.id_tag=:id_tag';
- $values[':id_tag'] = $id;
- }
- $res = $this->fetchAssoc($sql, $values);
- if ($res == null || !isset($res[0]['count'])) {
- return -1;
- }
- return (int)$res[0]['count'];
- }
- public function tagEntry(int $id_tag, string $id_entry, bool $checked = true): bool {
- if ($checked) {
- $sql = 'INSERT ' . $this->sqlIgnore() . ' INTO `_entrytag`(id_tag, id_entry) VALUES(?, ?)';
- } else {
- $sql = 'DELETE FROM `_entrytag` WHERE id_tag=? AND id_entry=?';
- }
- $stm = $this->pdo->prepare($sql);
- $values = [$id_tag, $id_entry];
- if ($stm !== false && $stm->execute($values)) {
- return true;
- }
- $info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
- Minz_Log::error('SQL error ' . __METHOD__ . json_encode($info));
- return false;
- }
- /**
- * @param array<array{id_tag:int,id_entry:string}> $addLabels Labels to insert as batch
- * @return int|false Number of new entries or false in case of error
- */
- public function tagEntries(array $addLabels) {
- $hasValues = false;
- $sql = 'INSERT ' . $this->sqlIgnore() . ' INTO `_entrytag`(id_tag, id_entry) VALUES ';
- foreach ($addLabels as $addLabel) {
- $id_tag = (int)($addLabel['id_tag'] ?? 0);
- $id_entry = $addLabel['id_entry'] ?? '';
- if ($id_tag > 0 && ctype_digit($id_entry)) {
- $sql .= "({$id_tag},{$id_entry}),";
- $hasValues = true;
- }
- }
- $sql = rtrim($sql, ',');
- if (!$hasValues) {
- return false;
- }
- $affected = $this->pdo->exec($sql);
- if ($affected !== false) {
- return $affected;
- }
- $info = $this->pdo->errorInfo();
- Minz_Log::error('SQL error ' . __METHOD__ . json_encode($info));
- return false;
- }
- /**
- * @return array<int,array{'id':int,'name':string,'id_entry':string,'checked':bool}>|false
- */
- public function getTagsForEntry(string $id_entry) {
- $sql = <<<'SQL'
- SELECT t.id, t.name, et.id_entry IS NOT NULL as checked
- FROM `_tag` t
- LEFT OUTER JOIN `_entrytag` et ON et.id_tag = t.id AND et.id_entry=?
- ORDER BY t.name
- SQL;
- $stm = $this->pdo->prepare($sql);
- $values = [$id_entry];
- if ($stm !== false && $stm->execute($values)) {
- $lines = $stm->fetchAll(PDO::FETCH_ASSOC);
- for ($i = count($lines) - 1; $i >= 0; $i--) {
- $lines[$i]['id'] = (int)($lines[$i]['id']);
- $lines[$i]['checked'] = !empty($lines[$i]['checked']);
- }
- return $lines;
- }
- $info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
- Minz_Log::error('SQL error ' . __METHOD__ . json_encode($info));
- return false;
- }
- /**
- * @param array<FreshRSS_Entry|numeric-string|array<string,string>> $entries
- * @return array<array{'id_entry':string,'id_tag':int,'name':string}>|false
- */
- public function getTagsForEntries(array $entries) {
- $sql = <<<'SQL'
- SELECT et.id_entry, et.id_tag, t.name
- FROM `_tag` t
- INNER JOIN `_entrytag` et ON et.id_tag = t.id
- SQL;
- $values = [];
- if (count($entries) > 0) {
- if (count($entries) > FreshRSS_DatabaseDAO::MAX_VARIABLE_NUMBER) {
- // Split a query with too many variables parameters
- $idsChunks = array_chunk($entries, FreshRSS_DatabaseDAO::MAX_VARIABLE_NUMBER);
- foreach ($idsChunks as $idsChunk) {
- $valuesChunk = $this->getTagsForEntries($idsChunk);
- if (!is_array($valuesChunk)) {
- return false;
- }
- $values = array_merge($values, $valuesChunk);
- }
- return $values;
- }
- $sql .= ' AND et.id_entry IN (' . str_repeat('?,', count($entries) - 1) . '?)';
- if (is_array($entries[0])) {
- /** @var array<array<string,string>> $entries */
- foreach ($entries as $entry) {
- if (!empty($entry['id'])) {
- $values[] = $entry['id'];
- }
- }
- } elseif (is_object($entries[0])) {
- /** @var array<FreshRSS_Entry> $entries */
- foreach ($entries as $entry) {
- $values[] = $entry->id();
- }
- } else {
- /** @var array<numeric-string> $entries */
- foreach ($entries as $entry) {
- $values[] = $entry;
- }
- }
- }
- $stm = $this->pdo->prepare($sql);
- if ($stm !== false && $stm->execute($values)) {
- return $stm->fetchAll(PDO::FETCH_ASSOC);
- }
- $info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
- Minz_Log::error('SQL error ' . __METHOD__ . json_encode($info));
- return false;
- }
- /**
- * Produces an array: for each entry ID (prefixed by `e_`), associate a list of labels.
- * Used by API and by JSON export, to speed up queries (would be very expensive to perform a label look-up on each entry individually).
- * @param array<FreshRSS_Entry|numeric-string> $entries the list of entries for which to retrieve the labels.
- * @return array<string,array<string>> An array of the shape `[e_id_entry => ["label 1", "label 2"]]`
- */
- public function getEntryIdsTagNames(array $entries): array {
- $result = [];
- foreach ($this->getTagsForEntries($entries) ?: [] as $line) {
- $entryId = 'e_' . $line['id_entry'];
- $tagName = $line['name'];
- if (empty($result[$entryId])) {
- $result[$entryId] = [];
- }
- $result[$entryId][] = $tagName;
- }
- return $result;
- }
- /**
- * @param iterable<array{'id':int,'name':string,'attributes'?:string}> $listDAO
- * @return array<int,FreshRSS_Tag>
- */
- private static function daoToTags(iterable $listDAO): array {
- $list = [];
- foreach ($listDAO as $dao) {
- if (empty($dao['id']) || empty($dao['name'])) {
- continue;
- }
- $tag = new FreshRSS_Tag($dao['name']);
- $tag->_id($dao['id']);
- if (!empty($dao['attributes'])) {
- $tag->_attributes($dao['attributes']);
- }
- if (isset($dao['unreads'])) {
- $tag->_nbUnread($dao['unreads']);
- }
- $list[$tag->id()] = $tag;
- }
- return $list;
- }
- }
|