EntryDAOSQLite.php 6.5 KB

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