mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-26 14:18:02 -05:00
* Better performance with yield Largely decrease the time to first byte, and reduced memory consumtion. Before, we used to make several copies in memory of the whole list of articles before sending them to the client. Now streamed as they are processed. * Travis
1064 lines
36 KiB
PHP
1064 lines
36 KiB
PHP
<?php
|
|
|
|
class FreshRSS_EntryDAO extends Minz_ModelPdo implements FreshRSS_Searchable {
|
|
|
|
public function isCompressed() {
|
|
return true;
|
|
}
|
|
|
|
public function hasNativeHex() {
|
|
return true;
|
|
}
|
|
|
|
public function sqlHexDecode($x) {
|
|
return 'unhex(' . $x . ')';
|
|
}
|
|
|
|
public function sqlHexEncode($x) {
|
|
return 'hex(' . $x . ')';
|
|
}
|
|
|
|
//TODO: Move the database auto-updates to DatabaseDAO
|
|
protected function createEntryTempTable() {
|
|
$ok = false;
|
|
$hadTransaction = $this->pdo->inTransaction();
|
|
if ($hadTransaction) {
|
|
$this->pdo->commit();
|
|
}
|
|
try {
|
|
require(APP_PATH . '/SQL/install.sql.' . $this->pdo->dbType() . '.php');
|
|
Minz_Log::warning('SQL CREATE TABLE entrytmp...');
|
|
$ok = $this->pdo->exec($SQL_CREATE_TABLE_ENTRYTMP . $SQL_CREATE_INDEX_ENTRY_1) !== false;
|
|
} catch (Exception $ex) {
|
|
Minz_Log::error(__method__ . ' error: ' . $ex->getMessage());
|
|
}
|
|
if ($hadTransaction) {
|
|
$this->pdo->beginTransaction();
|
|
}
|
|
return $ok;
|
|
}
|
|
|
|
private function updateToMediumBlob() {
|
|
if ($this->pdo->dbType() !== 'mysql') {
|
|
return false;
|
|
}
|
|
Minz_Log::warning('Update MySQL table to use MEDIUMBLOB...');
|
|
|
|
$sql = <<<'SQL'
|
|
ALTER TABLE `_entry` MODIFY `content_bin` MEDIUMBLOB;
|
|
ALTER TABLE `_entrytmp` MODIFY `content_bin` MEDIUMBLOB;
|
|
SQL;
|
|
try {
|
|
$ok = $this->pdo->exec($sql) !== false;
|
|
} catch (Exception $e) {
|
|
$ok = false;
|
|
Minz_Log::error(__method__ . ' error: ' . $e->getMessage());
|
|
}
|
|
return $ok;
|
|
}
|
|
|
|
//TODO: Move the database auto-updates to DatabaseDAO
|
|
protected function autoUpdateDb($errorInfo) {
|
|
if (isset($errorInfo[0])) {
|
|
if ($errorInfo[0] === FreshRSS_DatabaseDAO::ER_BAD_TABLE_ERROR) {
|
|
if (stripos($errorInfo[2], 'tag') !== false) {
|
|
$tagDAO = FreshRSS_Factory::createTagDao();
|
|
return $tagDAO->createTagTable(); //v1.12.0
|
|
} elseif (stripos($errorInfo[2], 'entrytmp') !== false) {
|
|
return $this->createEntryTempTable(); //v1.7.0
|
|
}
|
|
}
|
|
}
|
|
if (isset($errorInfo[1])) {
|
|
if ($errorInfo[1] == FreshRSS_DatabaseDAO::ER_DATA_TOO_LONG) {
|
|
if (stripos($errorInfo[2], 'content_bin') !== false) {
|
|
return $this->updateToMediumBlob(); //v1.15.0
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
private $addEntryPrepared = null;
|
|
|
|
public function addEntry($valuesTmp, $useTmpTable = true) {
|
|
if ($this->addEntryPrepared == null) {
|
|
$sql = 'INSERT INTO `_' . ($useTmpTable ? 'entrytmp' : 'entry') . '` (id, guid, title, author, '
|
|
. ($this->isCompressed() ? 'content_bin' : 'content')
|
|
. ', link, date, `lastSeen`, hash, is_read, is_favorite, id_feed, tags) '
|
|
. 'VALUES(:id, :guid, :title, :author, '
|
|
. ($this->isCompressed() ? 'COMPRESS(:content)' : ':content')
|
|
. ', :link, :date, :last_seen, '
|
|
. $this->sqlHexDecode(':hash')
|
|
. ', :is_read, :is_favorite, :id_feed, :tags)';
|
|
$this->addEntryPrepared = $this->pdo->prepare($sql);
|
|
}
|
|
if ($this->addEntryPrepared) {
|
|
$this->addEntryPrepared->bindParam(':id', $valuesTmp['id']);
|
|
$valuesTmp['guid'] = substr($valuesTmp['guid'], 0, 760);
|
|
$valuesTmp['guid'] = safe_ascii($valuesTmp['guid']);
|
|
$this->addEntryPrepared->bindParam(':guid', $valuesTmp['guid']);
|
|
$valuesTmp['title'] = mb_strcut($valuesTmp['title'], 0, 255, 'UTF-8');
|
|
$valuesTmp['title'] = safe_utf8($valuesTmp['title']);
|
|
$this->addEntryPrepared->bindParam(':title', $valuesTmp['title']);
|
|
$valuesTmp['author'] = mb_strcut($valuesTmp['author'], 0, 255, 'UTF-8');
|
|
$valuesTmp['author'] = safe_utf8($valuesTmp['author']);
|
|
$this->addEntryPrepared->bindParam(':author', $valuesTmp['author']);
|
|
$valuesTmp['content'] = safe_utf8($valuesTmp['content']);
|
|
$this->addEntryPrepared->bindParam(':content', $valuesTmp['content']);
|
|
$valuesTmp['link'] = substr($valuesTmp['link'], 0, 1023);
|
|
$valuesTmp['link'] = safe_ascii($valuesTmp['link']);
|
|
$this->addEntryPrepared->bindParam(':link', $valuesTmp['link']);
|
|
$this->addEntryPrepared->bindParam(':date', $valuesTmp['date'], PDO::PARAM_INT);
|
|
if (empty($valuesTmp['lastSeen'])) {
|
|
$valuesTmp['lastSeen'] = time();
|
|
}
|
|
$this->addEntryPrepared->bindParam(':last_seen', $valuesTmp['lastSeen'], PDO::PARAM_INT);
|
|
$valuesTmp['is_read'] = $valuesTmp['is_read'] ? 1 : 0;
|
|
$this->addEntryPrepared->bindParam(':is_read', $valuesTmp['is_read'], PDO::PARAM_INT);
|
|
$valuesTmp['is_favorite'] = $valuesTmp['is_favorite'] ? 1 : 0;
|
|
$this->addEntryPrepared->bindParam(':is_favorite', $valuesTmp['is_favorite'], PDO::PARAM_INT);
|
|
$this->addEntryPrepared->bindParam(':id_feed', $valuesTmp['id_feed'], PDO::PARAM_INT);
|
|
$valuesTmp['tags'] = mb_strcut($valuesTmp['tags'], 0, 1023, 'UTF-8');
|
|
$valuesTmp['tags'] = safe_utf8($valuesTmp['tags']);
|
|
$this->addEntryPrepared->bindParam(':tags', $valuesTmp['tags']);
|
|
|
|
if ($this->hasNativeHex()) {
|
|
$this->addEntryPrepared->bindParam(':hash', $valuesTmp['hash']);
|
|
} else {
|
|
$valuesTmp['hashBin'] = hex2bin($valuesTmp['hash']);
|
|
$this->addEntryPrepared->bindParam(':hash', $valuesTmp['hashBin']);
|
|
}
|
|
}
|
|
if ($this->addEntryPrepared && $this->addEntryPrepared->execute()) {
|
|
return true;
|
|
} else {
|
|
$info = $this->addEntryPrepared == null ? $this->pdo->errorInfo() : $this->addEntryPrepared->errorInfo();
|
|
if ($this->autoUpdateDb($info)) {
|
|
$this->addEntryPrepared = null;
|
|
return $this->addEntry($valuesTmp);
|
|
} elseif ((int)((int)$info[0] / 1000) !== 23) { //Filter out "SQLSTATE Class code 23: Constraint Violation" because of expected duplicate entries
|
|
Minz_Log::error('SQL error addEntry: ' . $info[0] . ': ' . $info[1] . ' ' . $info[2]
|
|
. ' while adding entry in feed ' . $valuesTmp['id_feed'] . ' with title: ' . $valuesTmp['title']);
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public function commitNewEntries() {
|
|
$sql = <<<'SQL'
|
|
SET @rank=(SELECT MAX(id) - COUNT(*) FROM `_entrytmp`);
|
|
|
|
INSERT IGNORE INTO `_entry` (
|
|
id, guid, title, author, content_bin, link, date, `lastSeen`,
|
|
hash, is_read, is_favorite, id_feed, tags
|
|
)
|
|
SELECT @rank:=@rank+1 AS id, guid, title, author, content_bin, link, date, `lastSeen`, hash, is_read, is_favorite, id_feed, tags
|
|
FROM `_entrytmp`
|
|
ORDER BY date;
|
|
|
|
DELETE FROM `_entrytmp` WHERE id <= @rank;';
|
|
SQL;
|
|
$hadTransaction = $this->pdo->inTransaction();
|
|
if (!$hadTransaction) {
|
|
$this->pdo->beginTransaction();
|
|
}
|
|
$result = $this->pdo->exec($sql) !== false;
|
|
if (!$hadTransaction) {
|
|
$this->pdo->commit();
|
|
}
|
|
return $result;
|
|
}
|
|
|
|
private $updateEntryPrepared = null;
|
|
|
|
public function updateEntry($valuesTmp) {
|
|
if (!isset($valuesTmp['is_read'])) {
|
|
$valuesTmp['is_read'] = null;
|
|
}
|
|
|
|
if ($this->updateEntryPrepared === null) {
|
|
$sql = 'UPDATE `_entry` '
|
|
. 'SET title=:title, author=:author, '
|
|
. ($this->isCompressed() ? 'content_bin=COMPRESS(:content)' : 'content=:content')
|
|
. ', link=:link, date=:date, `lastSeen`=:last_seen, '
|
|
. 'hash=' . $this->sqlHexDecode(':hash')
|
|
. ', ' . ($valuesTmp['is_read'] === null ? '' : 'is_read=:is_read, ')
|
|
. 'tags=:tags '
|
|
. 'WHERE id_feed=:id_feed AND guid=:guid';
|
|
$this->updateEntryPrepared = $this->pdo->prepare($sql);
|
|
}
|
|
|
|
$valuesTmp['guid'] = substr($valuesTmp['guid'], 0, 760);
|
|
$valuesTmp['guid'] = safe_ascii($valuesTmp['guid']);
|
|
$this->updateEntryPrepared->bindParam(':guid', $valuesTmp['guid']);
|
|
$valuesTmp['title'] = mb_strcut($valuesTmp['title'], 0, 255, 'UTF-8');
|
|
$valuesTmp['title'] = safe_utf8($valuesTmp['title']);
|
|
$this->updateEntryPrepared->bindParam(':title', $valuesTmp['title']);
|
|
$valuesTmp['author'] = mb_strcut($valuesTmp['author'], 0, 255, 'UTF-8');
|
|
$valuesTmp['author'] = safe_utf8($valuesTmp['author']);
|
|
$this->updateEntryPrepared->bindParam(':author', $valuesTmp['author']);
|
|
$valuesTmp['content'] = safe_utf8($valuesTmp['content']);
|
|
$this->updateEntryPrepared->bindParam(':content', $valuesTmp['content']);
|
|
$valuesTmp['link'] = substr($valuesTmp['link'], 0, 1023);
|
|
$valuesTmp['link'] = safe_ascii($valuesTmp['link']);
|
|
$this->updateEntryPrepared->bindParam(':link', $valuesTmp['link']);
|
|
$this->updateEntryPrepared->bindParam(':date', $valuesTmp['date'], PDO::PARAM_INT);
|
|
$valuesTmp['lastSeen'] = time();
|
|
$this->updateEntryPrepared->bindParam(':last_seen', $valuesTmp['lastSeen'], PDO::PARAM_INT);
|
|
if ($valuesTmp['is_read'] !== null) {
|
|
$this->updateEntryPrepared->bindValue(':is_read', $valuesTmp['is_read'] ? 1 : 0, PDO::PARAM_INT);
|
|
}
|
|
$this->updateEntryPrepared->bindParam(':id_feed', $valuesTmp['id_feed'], PDO::PARAM_INT);
|
|
$valuesTmp['tags'] = mb_strcut($valuesTmp['tags'], 0, 1023, 'UTF-8');
|
|
$valuesTmp['tags'] = safe_utf8($valuesTmp['tags']);
|
|
$this->updateEntryPrepared->bindParam(':tags', $valuesTmp['tags']);
|
|
|
|
if ($this->hasNativeHex()) {
|
|
$this->updateEntryPrepared->bindParam(':hash', $valuesTmp['hash']);
|
|
} else {
|
|
$valuesTmp['hashBin'] = hex2bin($valuesTmp['hash']);
|
|
$this->updateEntryPrepared->bindParam(':hash', $valuesTmp['hashBin']);
|
|
}
|
|
|
|
if ($this->updateEntryPrepared && $this->updateEntryPrepared->execute()) {
|
|
return true;
|
|
} else {
|
|
$info = $this->updateEntryPrepared == null ? $this->pdo->errorInfo() : $this->updateEntryPrepared->errorInfo();
|
|
if ($this->autoUpdateDb($info)) {
|
|
return $this->updateEntry($valuesTmp);
|
|
}
|
|
Minz_Log::error('SQL error updateEntry: ' . $info[0] . ': ' . $info[1] . ' ' . $info[2]
|
|
. ' while updating entry with GUID ' . $valuesTmp['guid'] . ' in feed ' . $valuesTmp['id_feed']);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Toggle favorite marker on one or more article
|
|
*
|
|
* @todo simplify the query by removing the str_repeat. I am pretty sure
|
|
* there is an other way to do that.
|
|
*
|
|
* @param integer|array $ids
|
|
* @param boolean $is_favorite
|
|
* @return false|integer
|
|
*/
|
|
public function markFavorite($ids, $is_favorite = true) {
|
|
if (!is_array($ids)) {
|
|
$ids = array($ids);
|
|
}
|
|
if (count($ids) < 1) {
|
|
return 0;
|
|
}
|
|
FreshRSS_UserDAO::touch();
|
|
$sql = 'UPDATE `_entry` '
|
|
. 'SET is_favorite=? '
|
|
. 'WHERE id IN (' . str_repeat('?,', count($ids) - 1). '?)';
|
|
$values = array($is_favorite ? 1 : 0);
|
|
$values = array_merge($values, $ids);
|
|
$stm = $this->pdo->prepare($sql);
|
|
if ($stm && $stm->execute($values)) {
|
|
return $stm->rowCount();
|
|
} else {
|
|
$info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
|
|
Minz_Log::error('SQL error markFavorite: ' . $info[2]);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Update the unread article cache held on every feed details.
|
|
* Depending on the parameters, it updates the cache on one feed, on all
|
|
* feeds from one category or on all feeds.
|
|
*
|
|
* @todo It can use the query builder refactoring to build that query
|
|
*
|
|
* @param false|integer $catId category ID
|
|
* @param false|integer $feedId feed ID
|
|
* @return boolean
|
|
*/
|
|
protected function updateCacheUnreads($catId = false, $feedId = false) {
|
|
$sql = 'UPDATE `_feed` f '
|
|
. 'LEFT OUTER JOIN ('
|
|
. 'SELECT e.id_feed, '
|
|
. 'COUNT(*) AS nbUnreads '
|
|
. 'FROM `_entry` e '
|
|
. 'WHERE e.is_read=0 '
|
|
. 'GROUP BY e.id_feed'
|
|
. ') x ON x.id_feed=f.id '
|
|
. 'SET f.`cache_nbUnreads`=COALESCE(x.nbUnreads, 0)';
|
|
$hasWhere = false;
|
|
$values = array();
|
|
if ($feedId !== false) {
|
|
$sql .= $hasWhere ? ' AND' : ' WHERE';
|
|
$hasWhere = true;
|
|
$sql .= ' f.id=?';
|
|
$values[] = $feedId;
|
|
}
|
|
if ($catId !== false) {
|
|
$sql .= $hasWhere ? ' AND' : ' WHERE';
|
|
$hasWhere = true;
|
|
$sql .= ' f.category=?';
|
|
$values[] = $catId;
|
|
}
|
|
$stm = $this->pdo->prepare($sql);
|
|
if ($stm && $stm->execute($values)) {
|
|
return true;
|
|
} else {
|
|
$info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
|
|
Minz_Log::error('SQL error updateCacheUnreads: ' . $info[2]);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Toggle the read marker on one or more article.
|
|
* Then the cache is updated.
|
|
*
|
|
* @todo change the way the query is build because it seems there is
|
|
* unnecessary code in here. For instance, the part with the str_repeat.
|
|
* @todo remove code duplication. It seems the code is basically the
|
|
* same if it is an array or not.
|
|
*
|
|
* @param integer|array $ids
|
|
* @param boolean $is_read
|
|
* @return integer affected rows
|
|
*/
|
|
public function markRead($ids, $is_read = true) {
|
|
FreshRSS_UserDAO::touch();
|
|
if (is_array($ids)) { //Many IDs at once
|
|
if (count($ids) < 6) { //Speed heuristics
|
|
$affected = 0;
|
|
foreach ($ids as $id) {
|
|
$affected += $this->markRead($id, $is_read);
|
|
}
|
|
return $affected;
|
|
}
|
|
|
|
$sql = 'UPDATE `_entry` '
|
|
. 'SET is_read=? '
|
|
. 'WHERE id IN (' . str_repeat('?,', count($ids) - 1). '?)';
|
|
$values = array($is_read ? 1 : 0);
|
|
$values = array_merge($values, $ids);
|
|
$stm = $this->pdo->prepare($sql);
|
|
if (!($stm && $stm->execute($values))) {
|
|
$info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
|
|
Minz_Log::error('SQL error markRead: ' . $info[2]);
|
|
return false;
|
|
}
|
|
$affected = $stm->rowCount();
|
|
if (($affected > 0) && (!$this->updateCacheUnreads(false, false))) {
|
|
return false;
|
|
}
|
|
return $affected;
|
|
} else {
|
|
$sql = 'UPDATE `_entry` e INNER JOIN `_feed` f ON e.id_feed=f.id '
|
|
. 'SET e.is_read=?,'
|
|
. 'f.`cache_nbUnreads`=f.`cache_nbUnreads`' . ($is_read ? '-' : '+') . '1 '
|
|
. 'WHERE e.id=? AND e.is_read=?';
|
|
$values = array($is_read ? 1 : 0, $ids, $is_read ? 0 : 1);
|
|
$stm = $this->pdo->prepare($sql);
|
|
if ($stm && $stm->execute($values)) {
|
|
return $stm->rowCount();
|
|
} else {
|
|
$info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
|
|
Minz_Log::error('SQL error markRead: ' . $info[2]);
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Mark all entries as read depending on parameters.
|
|
* If $onlyFavorites is true, it is used when the user mark as read in
|
|
* the favorite pseudo-category.
|
|
* If $priorityMin is greater than 0, it is used when the user mark as
|
|
* read in the main feed pseudo-category.
|
|
* Then the cache is updated.
|
|
*
|
|
* If $idMax equals 0, a deprecated debug message is logged
|
|
*
|
|
* @todo refactor this method along with markReadCat and markReadFeed
|
|
* since they are all doing the same thing. I think we need to build a
|
|
* tool to generate the query instead of having queries all over the
|
|
* place. It will be reused also for the filtering making every thing
|
|
* separated.
|
|
*
|
|
* @param integer $idMax fail safe article ID
|
|
* @param boolean $onlyFavorites
|
|
* @param integer $priorityMin
|
|
* @return integer affected rows
|
|
*/
|
|
public function markReadEntries($idMax = 0, $onlyFavorites = false, $priorityMin = 0, $filters = null, $state = 0, $is_read = true) {
|
|
FreshRSS_UserDAO::touch();
|
|
if ($idMax == 0) {
|
|
$idMax = time() . '000000';
|
|
Minz_Log::debug('Calling markReadEntries(0) is deprecated!');
|
|
}
|
|
|
|
$sql = 'UPDATE `_entry` e INNER JOIN `_feed` f ON e.id_feed=f.id '
|
|
. 'SET e.is_read=? '
|
|
. 'WHERE e.is_read <> ? AND e.id <= ?';
|
|
if ($onlyFavorites) {
|
|
$sql .= ' AND e.is_favorite=1';
|
|
} elseif ($priorityMin >= 0) {
|
|
$sql .= ' AND f.priority > ' . intval($priorityMin);
|
|
}
|
|
$values = array($is_read ? 1 : 0, $is_read ? 1 : 0, $idMax);
|
|
|
|
list($searchValues, $search) = $this->sqlListEntriesWhere('e.', $filters, $state);
|
|
|
|
$stm = $this->pdo->prepare($sql . $search);
|
|
if (!($stm && $stm->execute(array_merge($values, $searchValues)))) {
|
|
$info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
|
|
Minz_Log::error('SQL error markReadEntries: ' . $info[2]);
|
|
return false;
|
|
}
|
|
$affected = $stm->rowCount();
|
|
if (($affected > 0) && (!$this->updateCacheUnreads(false, false))) {
|
|
return false;
|
|
}
|
|
return $affected;
|
|
}
|
|
|
|
/**
|
|
* Mark all the articles in a category as read.
|
|
* There is a fail safe to prevent to mark as read articles that are
|
|
* loaded during the mark as read action. Then the cache is updated.
|
|
*
|
|
* If $idMax equals 0, a deprecated debug message is logged
|
|
*
|
|
* @param integer $id category ID
|
|
* @param integer $idMax fail safe article ID
|
|
* @return integer affected rows
|
|
*/
|
|
public function markReadCat($id, $idMax = 0, $filters = null, $state = 0, $is_read = true) {
|
|
FreshRSS_UserDAO::touch();
|
|
if ($idMax == 0) {
|
|
$idMax = time() . '000000';
|
|
Minz_Log::debug('Calling markReadCat(0) is deprecated!');
|
|
}
|
|
|
|
$sql = 'UPDATE `_entry` e INNER JOIN `_feed` f ON e.id_feed=f.id '
|
|
. 'SET e.is_read=? '
|
|
. 'WHERE f.category=? AND e.is_read <> ? AND e.id <= ?';
|
|
$values = array($is_read ? 1 : 0, $id, $is_read ? 1 : 0, $idMax);
|
|
|
|
list($searchValues, $search) = $this->sqlListEntriesWhere('e.', $filters, $state);
|
|
|
|
$stm = $this->pdo->prepare($sql . $search);
|
|
if (!($stm && $stm->execute(array_merge($values, $searchValues)))) {
|
|
$info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
|
|
Minz_Log::error('SQL error markReadCat: ' . $info[2]);
|
|
return false;
|
|
}
|
|
$affected = $stm->rowCount();
|
|
if (($affected > 0) && (!$this->updateCacheUnreads($id, false))) {
|
|
return false;
|
|
}
|
|
return $affected;
|
|
}
|
|
|
|
/**
|
|
* Mark all the articles in a feed as read.
|
|
* There is a fail safe to prevent to mark as read articles that are
|
|
* loaded during the mark as read action. Then the cache is updated.
|
|
*
|
|
* If $idMax equals 0, a deprecated debug message is logged
|
|
*
|
|
* @param integer $id_feed feed ID
|
|
* @param integer $idMax fail safe article ID
|
|
* @return integer affected rows
|
|
*/
|
|
public function markReadFeed($id_feed, $idMax = 0, $filters = null, $state = 0, $is_read = true) {
|
|
FreshRSS_UserDAO::touch();
|
|
if ($idMax == 0) {
|
|
$idMax = time() . '000000';
|
|
Minz_Log::debug('Calling markReadFeed(0) is deprecated!');
|
|
}
|
|
$this->pdo->beginTransaction();
|
|
|
|
$sql = 'UPDATE `_entry` '
|
|
. 'SET is_read=? '
|
|
. 'WHERE id_feed=? AND is_read <> ? AND id <= ?';
|
|
$values = array($is_read ? 1 : 0, $id_feed, $is_read ? 1 : 0, $idMax);
|
|
|
|
list($searchValues, $search) = $this->sqlListEntriesWhere('', $filters, $state);
|
|
|
|
$stm = $this->pdo->prepare($sql . $search);
|
|
if (!($stm && $stm->execute(array_merge($values, $searchValues)))) {
|
|
$info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
|
|
Minz_Log::error('SQL error markReadFeed: ' . $info[2] . ' with SQL: ' . $sql . $search);
|
|
$this->pdo->rollBack();
|
|
return false;
|
|
}
|
|
$affected = $stm->rowCount();
|
|
|
|
if ($affected > 0) {
|
|
$sql = 'UPDATE `_feed` '
|
|
. 'SET `cache_nbUnreads`=`cache_nbUnreads`-' . $affected
|
|
. ' WHERE id=:id';
|
|
$stm = $this->pdo->prepare($sql);
|
|
$stm->bindParam(':id', $id_feed, PDO::PARAM_INT);
|
|
if (!($stm && $stm->execute())) {
|
|
$info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
|
|
Minz_Log::error('SQL error markReadFeed cache: ' . $info[2]);
|
|
$this->pdo->rollBack();
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$this->pdo->commit();
|
|
return $affected;
|
|
}
|
|
|
|
/**
|
|
* Mark all the articles in a tag as read.
|
|
* @param integer $id tag ID, or empty for targetting any tag
|
|
* @param integer $idMax max article ID
|
|
* @return integer affected rows
|
|
*/
|
|
public function markReadTag($id = '', $idMax = 0, $filters = null, $state = 0, $is_read = true) {
|
|
FreshRSS_UserDAO::touch();
|
|
if ($idMax == 0) {
|
|
$idMax = time() . '000000';
|
|
Minz_Log::debug('Calling markReadTag(0) is deprecated!');
|
|
}
|
|
|
|
$sql = 'UPDATE `_entry` e INNER JOIN `_entrytag` et ON et.id_entry = e.id '
|
|
. 'SET e.is_read = ? '
|
|
. 'WHERE '
|
|
. ($id == '' ? '' : 'et.id_tag = ? AND ')
|
|
. 'e.is_read <> ? AND e.id <= ?';
|
|
$values = array($is_read ? 1 : 0);
|
|
if ($id != '') {
|
|
$values[] = $id;
|
|
}
|
|
$values[] = $is_read ? 1 : 0;
|
|
$values[] = $idMax;
|
|
|
|
list($searchValues, $search) = $this->sqlListEntriesWhere('e.', $filters, $state);
|
|
|
|
$stm = $this->pdo->prepare($sql . $search);
|
|
if (!($stm && $stm->execute(array_merge($values, $searchValues)))) {
|
|
$info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
|
|
Minz_Log::error('SQL error markReadTag: ' . $info[2]);
|
|
return false;
|
|
}
|
|
$affected = $stm->rowCount();
|
|
if (($affected > 0) && (!$this->updateCacheUnreads(false, false))) {
|
|
return false;
|
|
}
|
|
return $affected;
|
|
}
|
|
|
|
public function cleanOldEntries($id_feed, $options = []) { //Remember to call updateCachedValue($id_feed) or updateCachedValues() just after
|
|
$sql = 'DELETE FROM `_entry` WHERE id_feed = :id_feed1'; //No alias for MySQL / MariaDB
|
|
$params = [];
|
|
$params[':id_feed1'] = $id_feed;
|
|
|
|
//==Exclusions==
|
|
if (!empty($options['keep_favourites'])) {
|
|
$sql .= ' AND is_favorite = 0';
|
|
}
|
|
if (!empty($options['keep_unreads'])) {
|
|
$sql .= ' AND is_read = 1';
|
|
}
|
|
if (!empty($options['keep_labels'])) {
|
|
$sql .= ' AND NOT EXISTS (SELECT 1 FROM `_entrytag` WHERE id_entry = id)';
|
|
}
|
|
if (!empty($options['keep_min']) && $options['keep_min'] > 0) {
|
|
//Double SELECT for MySQL workaround ERROR 1093 (HY000)
|
|
$sql .= ' AND `lastSeen` < (SELECT `lastSeen`'
|
|
. ' FROM (SELECT e2.`lastSeen` FROM `_entry` e2 WHERE e2.id_feed = :id_feed2'
|
|
. ' ORDER BY e2.`lastSeen` DESC LIMIT 1 OFFSET :keep_min) last_seen2)';
|
|
$params[':id_feed2'] = $id_feed;
|
|
$params[':keep_min'] = (int)$options['keep_min'];
|
|
}
|
|
//Keep at least the articles seen at the last refresh
|
|
$sql .= ' AND `lastSeen` < (SELECT maxlastseen'
|
|
. ' FROM (SELECT MAX(e3.`lastSeen`) AS maxlastseen FROM `_entry` e3 WHERE e3.id_feed = :id_feed3) last_seen3)';
|
|
$params[':id_feed3'] = $id_feed;
|
|
|
|
//==Inclusions==
|
|
$sql .= ' AND (1=0';
|
|
if (!empty($options['keep_period'])) {
|
|
$sql .= ' OR `lastSeen` < :max_last_seen';
|
|
$now = new DateTime('now');
|
|
$now->sub(new DateInterval($options['keep_period']));
|
|
$params[':max_last_seen'] = $now->format('U');
|
|
}
|
|
if (!empty($options['keep_max']) && $options['keep_max'] > 0) {
|
|
$sql .= ' OR `lastSeen` <= (SELECT `lastSeen`'
|
|
. ' FROM (SELECT e4.`lastSeen` FROM `_entry` e4 WHERE e4.id_feed = :id_feed4'
|
|
. ' ORDER BY e4.`lastSeen` DESC LIMIT 1 OFFSET :keep_max) last_seen4)';
|
|
$params[':id_feed4'] = $id_feed;
|
|
$params[':keep_max'] = (int)$options['keep_max'];
|
|
}
|
|
$sql .= ')';
|
|
|
|
$stm = $this->pdo->prepare($sql);
|
|
|
|
if ($stm && $stm->execute($params)) {
|
|
return $stm->rowCount();
|
|
} else {
|
|
$info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
|
|
if ($this->autoUpdateDb($info)) {
|
|
return $this->cleanOldEntries($id_feed, $options);
|
|
}
|
|
Minz_Log::error(__method__ . ' error:' . json_encode($info));
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public function selectAll() {
|
|
$sql = 'SELECT id, guid, title, author, '
|
|
. ($this->isCompressed() ? 'UNCOMPRESS(content_bin) AS content' : 'content')
|
|
. ', link, date, `lastSeen`, ' . $this->sqlHexEncode('hash') . ' AS hash, is_read, is_favorite, id_feed, tags '
|
|
. 'FROM `_entry`';
|
|
$stm = $this->pdo->query($sql);
|
|
while ($row = $stm->fetch(PDO::FETCH_ASSOC)) {
|
|
yield $row;
|
|
}
|
|
}
|
|
|
|
public function searchByGuid($id_feed, $guid) {
|
|
// un guid est unique pour un flux donné
|
|
$sql = 'SELECT id, guid, title, author, '
|
|
. ($this->isCompressed() ? 'UNCOMPRESS(content_bin) AS content' : 'content')
|
|
. ', link, date, is_read, is_favorite, id_feed, tags '
|
|
. 'FROM `_entry` WHERE id_feed=:id_feed AND guid=:guid';
|
|
$stm = $this->pdo->prepare($sql);
|
|
$stm->bindParam(':id_feed', $id_feed, PDO::PARAM_INT);
|
|
$stm->bindParam(':guid', $guid);
|
|
$stm->execute();
|
|
$res = $stm->fetchAll(PDO::FETCH_ASSOC);
|
|
return isset($res[0]) ? self::daoToEntry($res[0]) : null;
|
|
}
|
|
|
|
public function searchById($id) {
|
|
$sql = 'SELECT id, guid, title, author, '
|
|
. ($this->isCompressed() ? 'UNCOMPRESS(content_bin) AS content' : 'content')
|
|
. ', link, date, is_read, is_favorite, id_feed, tags '
|
|
. 'FROM `_entry` WHERE id=:id';
|
|
$stm = $this->pdo->prepare($sql);
|
|
$stm->bindParam(':id', $id, PDO::PARAM_INT);
|
|
$stm->execute();
|
|
$res = $stm->fetchAll(PDO::FETCH_ASSOC);
|
|
return isset($res[0]) ? self::daoToEntry($res[0]) : null;
|
|
}
|
|
|
|
public function searchIdByGuid($id_feed, $guid) {
|
|
$sql = 'SELECT id FROM `_entry` WHERE id_feed=:id_feed AND guid=:guid';
|
|
$stm = $this->pdo->prepare($sql);
|
|
$stm->bindParam(':id_feed', $id_feed, PDO::PARAM_INT);
|
|
$stm->bindParam(':guid', $guid);
|
|
$stm->execute();
|
|
$res = $stm->fetchAll(PDO::FETCH_COLUMN, 0);
|
|
return isset($res[0]) ? $res[0] : null;
|
|
}
|
|
|
|
protected function sqlConcat($s1, $s2) {
|
|
return 'CONCAT(' . $s1 . ',' . $s2 . ')'; //MySQL
|
|
}
|
|
|
|
protected function sqlListEntriesWhere($alias = '', $filters = null, $state = FreshRSS_Entry::STATE_ALL, $order = 'DESC', $firstId = '', $date_min = 0) {
|
|
$search = ' ';
|
|
$values = array();
|
|
if ($state & FreshRSS_Entry::STATE_NOT_READ) {
|
|
if (!($state & FreshRSS_Entry::STATE_READ)) {
|
|
$search .= 'AND ' . $alias . 'is_read=0 ';
|
|
}
|
|
} elseif ($state & FreshRSS_Entry::STATE_READ) {
|
|
$search .= 'AND ' . $alias . 'is_read=1 ';
|
|
}
|
|
if ($state & FreshRSS_Entry::STATE_FAVORITE) {
|
|
if (!($state & FreshRSS_Entry::STATE_NOT_FAVORITE)) {
|
|
$search .= 'AND ' . $alias . 'is_favorite=1 ';
|
|
}
|
|
} elseif ($state & FreshRSS_Entry::STATE_NOT_FAVORITE) {
|
|
$search .= 'AND ' . $alias . 'is_favorite=0 ';
|
|
}
|
|
|
|
switch ($order) {
|
|
case 'DESC':
|
|
case 'ASC':
|
|
break;
|
|
default:
|
|
throw new FreshRSS_EntriesGetter_Exception('Bad order in Entry->listByType: [' . $order . ']!');
|
|
}
|
|
if ($firstId !== '') {
|
|
$search .= 'AND ' . $alias . 'id ' . ($order === 'DESC' ? '<=' : '>=') . ' ? ';
|
|
$values[] = $firstId;
|
|
}
|
|
if ($date_min > 0) {
|
|
$search .= 'AND ' . $alias . 'id >= ? ';
|
|
$values[] = $date_min . '000000';
|
|
}
|
|
if ($filters && count($filters->searches()) > 0) {
|
|
$isOpen = false;
|
|
foreach ($filters->searches() as $filter) {
|
|
if ($filter == null) {
|
|
continue;
|
|
}
|
|
$sub_search = '';
|
|
if ($filter->getMinDate()) {
|
|
$sub_search .= 'AND ' . $alias . 'id >= ? ';
|
|
$values[] = "{$filter->getMinDate()}000000";
|
|
}
|
|
if ($filter->getMaxDate()) {
|
|
$sub_search .= 'AND ' . $alias . 'id <= ? ';
|
|
$values[] = "{$filter->getMaxDate()}000000";
|
|
}
|
|
if ($filter->getMinPubdate()) {
|
|
$sub_search .= 'AND ' . $alias . 'date >= ? ';
|
|
$values[] = $filter->getMinPubdate();
|
|
}
|
|
if ($filter->getMaxPubdate()) {
|
|
$sub_search .= 'AND ' . $alias . 'date <= ? ';
|
|
$values[] = $filter->getMaxPubdate();
|
|
}
|
|
|
|
if ($filter->getAuthor()) {
|
|
foreach ($filter->getAuthor() as $author) {
|
|
$sub_search .= 'AND ' . $alias . 'author LIKE ? ';
|
|
$values[] = "%{$author}%";
|
|
}
|
|
}
|
|
if ($filter->getIntitle()) {
|
|
foreach ($filter->getIntitle() as $title) {
|
|
$sub_search .= 'AND ' . $alias . 'title LIKE ? ';
|
|
$values[] = "%{$title}%";
|
|
}
|
|
}
|
|
if ($filter->getTags()) {
|
|
foreach ($filter->getTags() as $tag) {
|
|
$sub_search .= 'AND ' . $alias . 'tags LIKE ? ';
|
|
$values[] = "%{$tag}%";
|
|
}
|
|
}
|
|
if ($filter->getInurl()) {
|
|
foreach ($filter->getInurl() as $url) {
|
|
$sub_search .= 'AND ' . $this->sqlConcat($alias . 'link', $alias . 'guid') . ' LIKE ? ';
|
|
$values[] = "%{$url}%";
|
|
}
|
|
}
|
|
|
|
if ($filter->getNotAuthor()) {
|
|
foreach ($filter->getNotAuthor() as $author) {
|
|
$sub_search .= 'AND (NOT ' . $alias . 'author LIKE ?) ';
|
|
$values[] = "%{$author}%";
|
|
}
|
|
}
|
|
if ($filter->getNotIntitle()) {
|
|
foreach ($filter->getNotIntitle() as $title) {
|
|
$sub_search .= 'AND (NOT ' . $alias . 'title LIKE ?) ';
|
|
$values[] = "%{$title}%";
|
|
}
|
|
}
|
|
if ($filter->getNotTags()) {
|
|
foreach ($filter->getNotTags() as $tag) {
|
|
$sub_search .= 'AND (NOT ' . $alias . 'tags LIKE ?) ';
|
|
$values[] = "%{$tag}%";
|
|
}
|
|
}
|
|
if ($filter->getNotInurl()) {
|
|
foreach ($filter->getNotInurl() as $url) {
|
|
$sub_search .= 'AND (NOT ' . $this->sqlConcat($alias . 'link', $alias . 'guid') . ' LIKE ?) ';
|
|
$values[] = "%{$url}%";
|
|
}
|
|
}
|
|
|
|
if ($filter->getSearch()) {
|
|
foreach ($filter->getSearch() as $search_value) {
|
|
$sub_search .= 'AND ' . $this->sqlConcat($alias . 'title', $this->isCompressed() ? 'UNCOMPRESS(' . $alias . 'content_bin)' : '' . $alias . 'content') . ' LIKE ? ';
|
|
$values[] = "%{$search_value}%";
|
|
}
|
|
}
|
|
if ($filter->getNotSearch()) {
|
|
foreach ($filter->getNotSearch() as $search_value) {
|
|
$sub_search .= 'AND (NOT ' . $this->sqlConcat($alias . 'title', $this->isCompressed() ? 'UNCOMPRESS(' . $alias . 'content_bin)' : '' . $alias . 'content') . ' LIKE ?) ';
|
|
$values[] = "%{$search_value}%";
|
|
}
|
|
}
|
|
|
|
if ($sub_search != '') {
|
|
if ($isOpen) {
|
|
$search .= 'OR ';
|
|
} else {
|
|
$search .= 'AND (';
|
|
$isOpen = true;
|
|
}
|
|
$search .= '(' . substr($sub_search, 4) . ') ';
|
|
}
|
|
}
|
|
if ($isOpen) {
|
|
$search .= ') ';
|
|
}
|
|
}
|
|
return array($values, $search);
|
|
}
|
|
|
|
private function sqlListWhere($type = 'a', $id = '', $state = FreshRSS_Entry::STATE_ALL, $order = 'DESC', $limit = 1, $firstId = '', $filters = null, $date_min = 0) {
|
|
if (!$state) {
|
|
$state = FreshRSS_Entry::STATE_ALL;
|
|
}
|
|
$where = '';
|
|
$joinFeed = false;
|
|
$values = array();
|
|
switch ($type) {
|
|
case 'a': //All PRIORITY_MAIN_STREAM
|
|
$where .= 'f.priority > ' . FreshRSS_Feed::PRIORITY_NORMAL . ' ';
|
|
break;
|
|
case 'A': //All except PRIORITY_ARCHIVED
|
|
$where .= 'f.priority >= ' . FreshRSS_Feed::PRIORITY_NORMAL . ' ';
|
|
break;
|
|
case 's': //Starred. Deprecated: use $state instead
|
|
$where .= 'f.priority >= ' . FreshRSS_Feed::PRIORITY_NORMAL . ' ';
|
|
$where .= 'AND e.is_favorite=1 ';
|
|
break;
|
|
case 'S': //Starred
|
|
$where .= 'e.is_favorite=1 ';
|
|
break;
|
|
case 'c': //Category
|
|
$where .= 'f.priority >= ' . FreshRSS_Feed::PRIORITY_NORMAL . ' ';
|
|
$where .= 'AND f.category=? ';
|
|
$values[] = intval($id);
|
|
break;
|
|
case 'f': //Feed
|
|
$where .= 'e.id_feed=? ';
|
|
$values[] = intval($id);
|
|
break;
|
|
case 't': //Tag
|
|
$where .= 'et.id_tag=? ';
|
|
$values[] = intval($id);
|
|
break;
|
|
case 'T': //Any tag
|
|
$where .= '1=1 ';
|
|
break;
|
|
case 'ST': //Starred or tagged
|
|
$where .= 'e.is_favorite=1 OR EXISTS (SELECT et2.id_tag FROM `_entrytag` et2 WHERE et2.id_entry = e.id) ';
|
|
break;
|
|
default:
|
|
throw new FreshRSS_EntriesGetter_Exception('Bad type in Entry->listByType: [' . $type . ']!');
|
|
}
|
|
|
|
list($searchValues, $search) = $this->sqlListEntriesWhere('e.', $filters, $state, $order, $firstId, $date_min);
|
|
|
|
return array(array_merge($values, $searchValues),
|
|
'SELECT '
|
|
. ($type === 'T' ? 'DISTINCT ' : '')
|
|
. 'e.id FROM `_entry` e '
|
|
. 'INNER JOIN `_feed` f ON e.id_feed = f.id '
|
|
. ($type === 't' || $type === 'T' ? 'INNER JOIN `_entrytag` et ON et.id_entry = e.id ' : '')
|
|
. 'WHERE ' . $where
|
|
. $search
|
|
. 'ORDER BY e.id ' . $order
|
|
. ($limit > 0 ? ' LIMIT ' . intval($limit) : '')); //TODO: See http://explainextended.com/2009/10/23/mysql-order-by-limit-performance-late-row-lookups/
|
|
}
|
|
|
|
public function listWhereRaw($type = 'a', $id = '', $state = FreshRSS_Entry::STATE_ALL, $order = 'DESC', $limit = 1, $firstId = '', $filters = null, $date_min = 0) {
|
|
list($values, $sql) = $this->sqlListWhere($type, $id, $state, $order, $limit, $firstId, $filters, $date_min);
|
|
|
|
$sql = 'SELECT e0.id, e0.guid, e0.title, e0.author, '
|
|
. ($this->isCompressed() ? 'UNCOMPRESS(content_bin) AS content' : 'content')
|
|
. ', e0.link, e0.date, e0.is_read, e0.is_favorite, e0.id_feed, e0.tags '
|
|
. 'FROM `_entry` e0 '
|
|
. 'INNER JOIN ('
|
|
. $sql
|
|
. ') e2 ON e2.id=e0.id '
|
|
. 'ORDER BY e0.id ' . $order;
|
|
|
|
$stm = $this->pdo->prepare($sql);
|
|
if ($stm && $stm->execute($values)) {
|
|
return $stm;
|
|
} else {
|
|
$info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
|
|
Minz_Log::error('SQL error listWhereRaw: ' . $info[2]);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public function listWhere($type = 'a', $id = '', $state = FreshRSS_Entry::STATE_ALL, $order = 'DESC', $limit = 1, $firstId = '', $filters = null, $date_min = 0) {
|
|
$stm = $this->listWhereRaw($type, $id, $state, $order, $limit, $firstId, $filters, $date_min);
|
|
if ($stm) {
|
|
while ($row = $stm->fetch(PDO::FETCH_ASSOC)) {
|
|
yield self::daoToEntry($row);
|
|
}
|
|
} else {
|
|
yield false;
|
|
}
|
|
}
|
|
|
|
public function listByIds($ids, $order = 'DESC') {
|
|
if (count($ids) < 1) {
|
|
yield false;
|
|
}
|
|
|
|
$sql = 'SELECT id, guid, title, author, '
|
|
. ($this->isCompressed() ? 'UNCOMPRESS(content_bin) AS content' : 'content')
|
|
. ', link, date, is_read, is_favorite, id_feed, tags '
|
|
. 'FROM `_entry` '
|
|
. 'WHERE id IN (' . str_repeat('?,', count($ids) - 1). '?) '
|
|
. 'ORDER BY id ' . $order;
|
|
|
|
$stm = $this->pdo->prepare($sql);
|
|
$stm->execute($ids);
|
|
while ($row = $stm->fetch(PDO::FETCH_ASSOC)) {
|
|
yield self::daoToEntry($row);
|
|
}
|
|
}
|
|
|
|
public function listIdsWhere($type = 'a', $id = '', $state = FreshRSS_Entry::STATE_ALL, $order = 'DESC', $limit = 1, $firstId = '', $filters = null) { //For API
|
|
list($values, $sql) = $this->sqlListWhere($type, $id, $state, $order, $limit, $firstId, $filters);
|
|
|
|
$stm = $this->pdo->prepare($sql);
|
|
$stm->execute($values);
|
|
|
|
return $stm->fetchAll(PDO::FETCH_COLUMN, 0);
|
|
}
|
|
|
|
public function listHashForFeedGuids($id_feed, $guids) {
|
|
if (count($guids) < 1) {
|
|
return array();
|
|
}
|
|
$guids = array_unique($guids);
|
|
$sql = 'SELECT guid, ' . $this->sqlHexEncode('hash') . ' AS hex_hash FROM `_entry` WHERE id_feed=? AND guid IN (' . str_repeat('?,', count($guids) - 1). '?)';
|
|
$stm = $this->pdo->prepare($sql);
|
|
$values = array($id_feed);
|
|
$values = array_merge($values, $guids);
|
|
if ($stm && $stm->execute($values)) {
|
|
$result = array();
|
|
$rows = $stm->fetchAll(PDO::FETCH_ASSOC);
|
|
foreach ($rows as $row) {
|
|
$result[$row['guid']] = $row['hex_hash'];
|
|
}
|
|
return $result;
|
|
} else {
|
|
$info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
|
|
if ($this->autoUpdateDb($info)) {
|
|
return $this->listHashForFeedGuids($id_feed, $guids);
|
|
}
|
|
Minz_Log::error('SQL error listHashForFeedGuids: ' . $info[0] . ': ' . $info[1] . ' ' . $info[2]
|
|
. ' while querying feed ' . $id_feed);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public function updateLastSeen($id_feed, $guids, $mtime = 0) {
|
|
if (count($guids) < 1) {
|
|
return 0;
|
|
}
|
|
$sql = 'UPDATE `_entry` SET `lastSeen`=? WHERE id_feed=? AND guid IN (' . str_repeat('?,', count($guids) - 1). '?)';
|
|
$stm = $this->pdo->prepare($sql);
|
|
if ($mtime <= 0) {
|
|
$mtime = time();
|
|
}
|
|
$values = array($mtime, $id_feed);
|
|
$values = array_merge($values, $guids);
|
|
if ($stm && $stm->execute($values)) {
|
|
return $stm->rowCount();
|
|
} else {
|
|
$info = $stm == null ? $this->pdo->errorInfo() : $stm->errorInfo();
|
|
if ($this->autoUpdateDb($info)) {
|
|
return $this->updateLastSeen($id_feed, $guids);
|
|
}
|
|
Minz_Log::error('SQL error updateLastSeen: ' . $info[0] . ': ' . $info[1] . ' ' . $info[2]
|
|
. ' while updating feed ' . $id_feed);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public function countUnreadRead() {
|
|
$sql = 'SELECT COUNT(e.id) AS count FROM `_entry` e INNER JOIN `_feed` f ON e.id_feed=f.id WHERE f.priority > 0'
|
|
. ' UNION SELECT COUNT(e.id) AS count FROM `_entry` e INNER JOIN `_feed` f ON e.id_feed=f.id WHERE f.priority > 0 AND e.is_read=0';
|
|
$stm = $this->pdo->query($sql);
|
|
if ($stm === false) {
|
|
return false;
|
|
}
|
|
$res = $stm->fetchAll(PDO::FETCH_COLUMN, 0);
|
|
rsort($res);
|
|
$all = empty($res[0]) ? 0 : $res[0];
|
|
$unread = empty($res[1]) ? 0 : $res[1];
|
|
return array('all' => $all, 'unread' => $unread, 'read' => $all - $unread);
|
|
}
|
|
|
|
public function count($minPriority = null) {
|
|
$sql = 'SELECT COUNT(e.id) AS count FROM `_entry` e';
|
|
if ($minPriority !== null) {
|
|
$sql .= ' INNER JOIN `_feed` f ON e.id_feed=f.id';
|
|
$sql .= ' WHERE f.priority > ' . intval($minPriority);
|
|
}
|
|
$stm = $this->pdo->query($sql);
|
|
if ($stm == false) {
|
|
return false;
|
|
}
|
|
$res = $stm->fetchAll(PDO::FETCH_COLUMN, 0);
|
|
return isset($res[0]) ? $res[0] : 0;
|
|
}
|
|
|
|
public function countNotRead($minPriority = null) {
|
|
$sql = 'SELECT COUNT(e.id) AS count FROM `_entry` e';
|
|
if ($minPriority !== null) {
|
|
$sql .= ' INNER JOIN `_feed` f ON e.id_feed=f.id';
|
|
}
|
|
$sql .= ' WHERE e.is_read=0';
|
|
if ($minPriority !== null) {
|
|
$sql .= ' AND f.priority > ' . intval($minPriority);
|
|
}
|
|
$stm = $this->pdo->query($sql);
|
|
$res = $stm->fetchAll(PDO::FETCH_COLUMN, 0);
|
|
return $res[0];
|
|
}
|
|
|
|
public function countUnreadReadFavorites() {
|
|
$sql = <<<'SQL'
|
|
SELECT c FROM (
|
|
SELECT COUNT(e1.id) AS c, 1 AS o
|
|
FROM `_entry` AS e1
|
|
JOIN `_feed` AS f1 ON e1.id_feed = f1.id
|
|
WHERE e1.is_favorite = 1
|
|
AND f1.priority >= :priority_normal1
|
|
UNION
|
|
SELECT COUNT(e2.id) AS c, 2 AS o
|
|
FROM `_entry` AS e2
|
|
JOIN `_feed` AS f2 ON e2.id_feed = f2.id
|
|
WHERE e2.is_favorite = 1
|
|
AND e2.is_read = 0
|
|
AND f2.priority >= :priority_normal2
|
|
) u
|
|
ORDER BY o
|
|
SQL;
|
|
$stm = $this->pdo->prepare($sql);
|
|
//Binding a value more than once is not standard and does not work with native prepared statements (e.g. MySQL) https://bugs.php.net/bug.php?id=40417
|
|
$stm->bindValue(':priority_normal1', FreshRSS_Feed::PRIORITY_NORMAL, PDO::PARAM_INT);
|
|
$stm->bindValue(':priority_normal2', FreshRSS_Feed::PRIORITY_NORMAL, PDO::PARAM_INT);
|
|
$stm->execute();
|
|
$res = $stm->fetchAll(PDO::FETCH_COLUMN, 0);
|
|
rsort($res);
|
|
$all = empty($res[0]) ? 0 : $res[0];
|
|
$unread = empty($res[1]) ? 0 : $res[1];
|
|
return array('all' => $all, 'unread' => $unread, 'read' => $all - $unread);
|
|
}
|
|
|
|
public static function daoToEntry($dao) {
|
|
$entry = new FreshRSS_Entry(
|
|
$dao['id_feed'],
|
|
$dao['guid'],
|
|
$dao['title'],
|
|
$dao['author'],
|
|
$dao['content'],
|
|
$dao['link'],
|
|
$dao['date'],
|
|
$dao['is_read'],
|
|
$dao['is_favorite'],
|
|
isset($dao['tags']) ? $dao['tags'] : ''
|
|
);
|
|
if (isset($dao['id'])) {
|
|
$entry->_id($dao['id']);
|
|
}
|
|
return $entry;
|
|
}
|
|
}
|