EntryDAOSQLite.php 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <?php
  2. declare(strict_types=1);
  3. class FreshRSS_EntryDAOSQLite extends FreshRSS_EntryDAO {
  4. #[\Override]
  5. public static function isCompressed(): bool {
  6. return false;
  7. }
  8. #[\Override]
  9. public static function hasNativeHex(): bool {
  10. return false;
  11. }
  12. #[\Override]
  13. protected static function sqlConcat(string $s1, string $s2): string {
  14. return $s1 . '||' . $s2;
  15. }
  16. #[\Override]
  17. public static function sqlHexDecode(string $x): string {
  18. return $x;
  19. }
  20. #[\Override]
  21. public static function sqlIgnoreConflict(string $sql): string {
  22. return str_replace('INSERT INTO ', 'INSERT OR IGNORE INTO ', $sql);
  23. }
  24. #[\Override]
  25. protected static function sqlLimitAll(): string {
  26. // https://sqlite.org/lang_select.html#the_limit_clause
  27. return '-1';
  28. }
  29. #[\Override]
  30. public static function sqlGreatest(string $a, string $b): string {
  31. return 'MAX(' . $a . ', ' . $b . ')';
  32. }
  33. #[\Override]
  34. public static function sqlRandom(): string {
  35. return 'RANDOM()';
  36. }
  37. #[\Override]
  38. protected static function sqlRegex(string $expression, string $regex, array &$values): string {
  39. $values[] = $regex;
  40. return "{$expression} REGEXP ?";
  41. }
  42. #[\Override]
  43. protected function registerSqlFunctions(string $sql): void {
  44. if (!str_contains($sql, ' REGEXP ')) {
  45. return;
  46. }
  47. // https://php.net/pdo.sqlitecreatefunction
  48. // https://www.sqlite.org/lang_expr.html#the_like_glob_regexp_match_and_extract_operators
  49. $this->pdo->sqliteCreateFunction('regexp',
  50. function (string $pattern, string $text): bool {
  51. return preg_match($pattern, $text) === 1;
  52. },
  53. 2
  54. );
  55. }
  56. /** @param array{0:string,1:int,2:string} $errorInfo */
  57. #[\Override]
  58. protected function autoUpdateDb(array $errorInfo): bool {
  59. if (($tableInfo = $this->pdo->query("PRAGMA table_info('entry')")) !== false && ($columns = $tableInfo->fetchAll(PDO::FETCH_COLUMN, 1)) !== false) {
  60. foreach (['attributes', 'lastUserModified'] as $column) {
  61. if (!in_array($column, $columns, true)) {
  62. return $this->addColumn($column);
  63. }
  64. }
  65. }
  66. return false;
  67. }
  68. #[\Override]
  69. public function commitNewEntries(): bool {
  70. $sql = <<<'SQL'
  71. DROP TABLE IF EXISTS `tmp`;
  72. CREATE TEMP TABLE `tmp` AS
  73. SELECT id, guid, title, author, content, link, date, `lastSeen`, hash, is_read, is_favorite, id_feed, tags, attributes
  74. FROM `_entrytmp`
  75. ORDER BY date, id;
  76. INSERT OR IGNORE INTO `_entry`
  77. (id, guid, title, author, content, link, date, `lastSeen`, hash, is_read, is_favorite, id_feed, tags, attributes)
  78. SELECT rowid + (SELECT MAX(id) - COUNT(*) FROM `tmp`) AS id,
  79. guid, title, author, content, link, date, `lastSeen`, hash, is_read, is_favorite, id_feed, tags, attributes
  80. FROM `tmp` t
  81. ORDER BY t.date, t.id;
  82. DELETE FROM `_entrytmp` WHERE id <= (SELECT MAX(id) FROM `tmp`);
  83. DROP TABLE IF EXISTS `tmp`;
  84. SQL;
  85. $hadTransaction = $this->pdo->inTransaction();
  86. if (!$hadTransaction) {
  87. $this->pdo->beginTransaction();
  88. }
  89. $result = $this->pdo->exec($sql) !== false;
  90. if (!$result) {
  91. Minz_Log::error('SQL error ' . __METHOD__ . json_encode($this->pdo->errorInfo()));
  92. }
  93. if (!$hadTransaction) {
  94. $this->pdo->commit();
  95. }
  96. return $result;
  97. }
  98. /**
  99. * Toggle the read marker on one or more article.
  100. * Then the cache is updated.
  101. *
  102. * @param numeric-string|array<numeric-string> $ids
  103. * @return int|false affected rows
  104. */
  105. #[\Override]
  106. public function markRead(array|string $ids, bool $is_read = true): int|false {
  107. if (is_array($ids)) { //Many IDs at once (used by API)
  108. //if (true) { //Speed heuristics //TODO: Not implemented yet for SQLite (so always call IDs one by one)
  109. $affected = 0;
  110. foreach ($ids as $id) {
  111. $affected += ($this->markRead($id, $is_read) ?: 0);
  112. }
  113. return $affected;
  114. //}
  115. } else {
  116. FreshRSS_UserDAO::touch();
  117. $this->pdo->beginTransaction();
  118. $sql = 'UPDATE `_entry` SET is_read=?, `lastUserModified` = ? WHERE id=? AND is_read=?';
  119. $values = [$is_read ? 1 : 0, time(), $ids, $is_read ? 0 : 1];
  120. $stm = $this->pdo->prepare($sql);
  121. if ($stm === false || !$stm->execute($values)) {
  122. $info = $stm === false ? $this->pdo->errorInfo() : $stm->errorInfo();
  123. Minz_Log::error('SQL error ' . __METHOD__ . ' A ' . json_encode($info));
  124. $this->pdo->rollBack();
  125. return false;
  126. }
  127. $affected = $stm->rowCount();
  128. if ($affected > 0) {
  129. $sql = 'UPDATE `_feed` SET `cache_nbUnreads`=`cache_nbUnreads`' . ($is_read ? '-' : '+') . '1 '
  130. . 'WHERE id=(SELECT e.id_feed FROM `_entry` e WHERE e.id=?)';
  131. $values = [$ids];
  132. $stm = $this->pdo->prepare($sql);
  133. if ($stm === false || !$stm->execute($values)) {
  134. $info = $stm === false ? $this->pdo->errorInfo() : $stm->errorInfo();
  135. Minz_Log::error('SQL error ' . __METHOD__ . ' B ' . json_encode($info));
  136. $this->pdo->rollBack();
  137. return false;
  138. }
  139. }
  140. $this->pdo->commit();
  141. return $affected;
  142. }
  143. }
  144. /**
  145. * Mark all the articles in a tag as read.
  146. * @param int $id tag ID, or empty for targeting any tag
  147. * @param string $idMax max article ID
  148. * @return int|false affected rows
  149. */
  150. #[\Override]
  151. public function markReadTag(int $id = 0, string $idMax = '0', ?FreshRSS_BooleanSearch $filters = null, int $state = 0, bool $is_read = true): int|false {
  152. FreshRSS_UserDAO::touch();
  153. if ($idMax == 0) {
  154. $idMax = uTimeString();
  155. Minz_Log::debug('Calling markReadTag(0) is deprecated!');
  156. }
  157. $sql = 'UPDATE `_entry` SET is_read = ?, `lastUserModified` = ? WHERE is_read <> ? AND id <= ? AND '
  158. . 'id IN (SELECT et.id_entry FROM `_entrytag` et '
  159. . ($id == 0 ? '' : 'WHERE et.id_tag = ?')
  160. . ')';
  161. $values = [$is_read ? 1 : 0, time(), $is_read ? 1 : 0, $idMax];
  162. if ($id != 0) {
  163. $values[] = $id;
  164. }
  165. [$searchValues, $search] = $this->sqlListEntriesWhere(alias: 'e.', state: $state, filters: $filters);
  166. $stm = $this->pdo->prepare($sql . $search);
  167. if ($stm === false || !$stm->execute(array_merge($values, $searchValues))) {
  168. $info = $stm === false ? $this->pdo->errorInfo() : $stm->errorInfo();
  169. Minz_Log::error('SQL error ' . __METHOD__ . json_encode($info));
  170. return false;
  171. }
  172. $affected = $stm->rowCount();
  173. if (($affected > 0) && (!$this->updateCacheUnreads(null, null))) {
  174. return false;
  175. }
  176. return $affected;
  177. }
  178. }