aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/feedController.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2023-12-03 19:52:02 +0100
committerGravatar GitHub <noreply@github.com> 2023-12-03 19:52:02 +0100
commitf0d4f2762d2b74eeadf2fb64ff83039b5cc16c26 (patch)
treeebdb0bcffeb4370d1fa08defe7313dbf5f02e47a /app/Controllers/feedController.php
parenteb2c2d9a01ba54865b944f75d8436f933ed3ebfc (diff)
Rework keepmax (#5905)
* Rework keepmax fix https://github.com/FreshRSS/FreshRSS/issues/5702 fix https://github.com/FreshRSS/FreshRSS/issues/5870 * More WIP * Minor progress * Progress * Beta * Improved debug message * Revert noCommit * Fix variable reset * Remove debug syslogs
Diffstat (limited to 'app/Controllers/feedController.php')
-rw-r--r--app/Controllers/feedController.php150
1 files changed, 85 insertions, 65 deletions
diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php
index 933f82216..bba5870dd 100644
--- a/app/Controllers/feedController.php
+++ b/app/Controllers/feedController.php
@@ -105,7 +105,10 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController {
$feed->_id($id);
// Ok, feed has been added in database. Now we have to refresh entries.
- self::actualizeFeed($id, $url, false, null);
+ [, , $nb_new_articles] = self::actualizeFeeds($id, $url);
+ if ($nb_new_articles > 0) {
+ self::commitNewEntries();
+ }
return $feed;
}
@@ -327,42 +330,46 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController {
}
/**
- * @return array{0:int,1:FreshRSS_Feed|false,2:int}
+ * @return array{0:int,1:FreshRSS_Feed|null,2:int} Number of updated feeds, first feed or null, number of new articles
* @throws FreshRSS_BadUrl_Exception
*/
- public static function actualizeFeed(int $feed_id, string $feed_url, bool $force, ?SimplePie $simplePiePush = null,
- bool $noCommit = false, int $maxFeeds = 10): array {
+ public static function actualizeFeeds(?int $feed_id = null, ?string $feed_url = null, ?int $maxFeeds = null, ?SimplePie $simplePiePush = null): array {
if (function_exists('set_time_limit')) {
@set_time_limit(300);
}
+ if (!is_int($feed_id) || $feed_id <= 0) {
+ $feed_id = null;
+ }
+ if (!is_string($feed_url) || trim($feed_url) === '') {
+ $feed_url = null;
+ }
+ if (!is_int($maxFeeds) || $maxFeeds <= 0) {
+ $maxFeeds = PHP_INT_MAX;
+ }
+
$feedDAO = FreshRSS_Factory::createFeedDao();
$entryDAO = FreshRSS_Factory::createEntryDao();
// Create a list of feeds to actualize.
- // If feed_id is set and valid, corresponding feed is added to the list but
- // alone in order to automatize further process.
$feeds = [];
- if ($feed_id > 0 || $feed_url) {
- $feed = $feed_id > 0 ? $feedDAO->searchById($feed_id) : $feedDAO->searchByUrl($feed_url);
- if ($feed) {
+ if ($feed_id !== null || $feed_url !== null) {
+ $feed = $feed_id !== null ? $feedDAO->searchById($feed_id) : $feedDAO->searchByUrl($feed_url);
+ if ($feed !== null && $feed->id() > 0) {
$feeds[] = $feed;
+ $feed_id = $feed->id();
}
} else {
$feeds = $feedDAO->listFeedsOrderUpdate(-1);
}
- // Set maxFeeds to a minimum of 10
- if ($maxFeeds < 10) {
- $maxFeeds = 10;
- }
-
// WebSub (PubSubHubbub) support
$pubsubhubbubEnabledGeneral = FreshRSS_Context::$system_conf->pubsubhubbub_enabled;
$pshbMinAge = time() - (3600 * 24); //TODO: Make a configuration.
$updated_feeds = 0;
$nb_new_articles = 0;
+
foreach ($feeds as $feed) {
/** @var FreshRSS_Feed|null $feed */
$feed = Minz_ExtensionManager::callHook('feed_before_actualize', $feed);
@@ -373,7 +380,7 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController {
$url = $feed->url(); //For detection of HTTP 301
$pubSubHubbubEnabled = $pubsubhubbubEnabledGeneral && $feed->pubSubHubbubEnabled();
- if ($simplePiePush === null && $feed_id === 0 && $pubSubHubbubEnabled && ($feed->lastUpdate() > $pshbMinAge)) {
+ if ($simplePiePush === null && $feed_id === null && $pubSubHubbubEnabled && ($feed->lastUpdate() > $pshbMinAge)) {
//$text = 'Skip pull of feed using PubSubHubbub: ' . $url;
//Minz_Log::debug($text);
//Minz_Log::debug($text, PSHB_LOG);
@@ -388,7 +395,7 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController {
if ($ttl === FreshRSS_Feed::TTL_DEFAULT) {
$ttl = FreshRSS_Context::$user_conf->ttl_default;
}
- if ($simplePiePush === null && $feed_id === 0 && (time() <= $feed->lastUpdate() + $ttl)) {
+ if ($simplePiePush === null && $feed_id === null && (time() <= $feed->lastUpdate() + $ttl)) {
//Too early to refresh from source, but check whether the feed was updated by another user
$ε = 10; // negligible offset errors in seconds
if ($mtime <= 0 ||
@@ -452,6 +459,7 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController {
}
$needFeedCacheRefresh = false;
+ $nbMarkedUnread = 0;
if (count($newGuids) > 0) {
$titlesAsRead = [];
@@ -499,8 +507,8 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController {
}
if (!$entry->isRead()) {
- $needFeedCacheRefresh = true;
- $feed->incPendingUnread(); //Maybe
+ $needFeedCacheRefresh = true; //Maybe
+ $nbMarkedUnread++;
}
// If the entry has changed, there is a good chance for the full content to have changed as well.
@@ -540,9 +548,6 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController {
}
$entryDAO->addEntry($entry->toArray(), true);
- if (!$entry->isRead()) {
- $feed->incPendingUnread();
- }
$nb_new_articles++;
}
}
@@ -568,7 +573,11 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController {
}
$feedDAO->updateLastUpdate($feed->id(), false, $mtime);
- $needFeedCacheRefresh |= ($feed->keepMaxUnread() != false);
+ if ($feed->keepMaxUnread() !== null && ($feed->nbNotRead() + $nbMarkedUnread > $feed->keepMaxUnread())) {
+ Minz_Log::debug('Existing unread entries (' . ($feed->nbNotRead() + $nbMarkedUnread) . ') exceeding max number of ' .
+ $feed->keepMaxUnread() . ' for [' . $feed->url(false) . ']');
+ $needFeedCacheRefresh |= ($feed->markAsReadMaxUnread() != false);
+ }
if ($simplePiePush === null) {
// Do not call for WebSub events, as we do not know the list of articles still on the upstream feed.
$needFeedCacheRefresh |= ($feed->markAsReadUponGone($feedIsEmpty, $mtime) != false);
@@ -644,62 +653,72 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController {
unset($feed);
gc_collect_cycles();
- // No more than $maxFeeds feeds unless $force is true to avoid overloading
- // the server.
- if ($updated_feeds >= $maxFeeds && !$force) {
+ if ($updated_feeds >= $maxFeeds) {
break;
}
}
- if (!$noCommit && ($nb_new_articles > 0 || $updated_feeds > 0)) {
- if (!$entryDAO->inTransaction()) {
- $entryDAO->beginTransaction();
+ return [$updated_feeds, reset($feeds) ?: null, $nb_new_articles];
+ }
+
+ public static function commitNewEntries(): bool {
+ $entryDAO = FreshRSS_Factory::createEntryDao();
+ if (!$entryDAO->inTransaction()) {
+ $entryDAO->beginTransaction();
+ }
+
+ $newUnreadEntriesPerFeed = $entryDAO->newUnreadEntriesPerFeed();
+ if ($entryDAO->commitNewEntries()) {
+ $feedDAO = FreshRSS_Factory::createFeedDao();
+ $feeds = $feedDAO->listFeedsOrderUpdate(-1);
+ foreach ($feeds as $feed) {
+ if (!empty($newUnreadEntriesPerFeed[$feed->id()]) && $feed->keepMaxUnread() !== null &&
+ ($feed->nbNotRead() + $newUnreadEntriesPerFeed[$feed->id()] > $feed->keepMaxUnread())) {
+ Minz_Log::debug('New unread entries (' . ($feed->nbNotRead() + $newUnreadEntriesPerFeed[$feed->id()]) . ') exceeding max number of ' .
+ $feed->keepMaxUnread() . ' for [' . $feed->url(false) . ']');
+ $feed->markAsReadMaxUnread();
+ }
}
- $entryDAO->commitNewEntries();
$feedDAO->updateCachedValues();
- if ($entryDAO->inTransaction()) {
- $entryDAO->commit();
- }
+ }
- $databaseDAO = FreshRSS_Factory::createDatabaseDAO();
- $databaseDAO->minorDbMaintenance();
+ if ($entryDAO->inTransaction()) {
+ $entryDAO->commit();
}
- return [$updated_feeds, reset($feeds), $nb_new_articles];
+
+ $databaseDAO = FreshRSS_Factory::createDatabaseDAO();
+ $databaseDAO->minorDbMaintenance();
+ return true;
}
/**
* This action actualizes entries from one or several feeds.
*
* Parameters are:
- * - id (default: false): Feed ID
- * - url (default: false): Feed URL
- * - force (default: false)
+ * - id (default: null): Feed ID, or set to -1 to commit new articles to the main database
+ * - url (default: null): Feed URL (instead of feed ID)
+ * - maxFeeds (default: 10): Max number of feeds to refresh
* - noCommit (default: 0): Set to 1 to prevent committing the new articles to the main database
- * If id and url are not specified, all the feeds are actualized. But if force is
- * false, process stops at 10 feeds to avoid time execution problem.
+ * If id and url are not specified, all the feeds are actualized, within the limits of maxFeeds.
*/
public function actualizeAction(): int {
Minz_Session::_param('actualize_feeds', false);
$id = Minz_Request::paramInt('id');
$url = Minz_Request::paramString('url');
- $force = Minz_Request::paramBoolean('force');
- $maxFeeds = Minz_Request::paramInt('maxFeeds');
+ $maxFeeds = Minz_Request::paramInt('maxFeeds') ?: 10;
$noCommit = ($_POST['noCommit'] ?? 0) == 1;
- $feed = null;
- if ($id == -1 && !$noCommit) { //Special request only to commit & refresh DB cache
+ if ($id === -1 && !$noCommit) { //Special request only to commit & refresh DB cache
$updated_feeds = 0;
- $entryDAO = FreshRSS_Factory::createEntryDao();
- $feedDAO = FreshRSS_Factory::createFeedDao();
- $entryDAO->beginTransaction();
- $entryDAO->commitNewEntries();
- $feedDAO->updateCachedValues();
- $entryDAO->commit();
-
- $databaseDAO = FreshRSS_Factory::createDatabaseDAO();
- $databaseDAO->minorDbMaintenance();
+ $feed = null;
+ self::commitNewEntries();
} else {
- FreshRSS_category_Controller::refreshDynamicOpmls();
- [$updated_feeds, $feed] = self::actualizeFeed($id, $url, $force, null, $noCommit, $maxFeeds);
+ if ($id === 0 && $url === '') {
+ FreshRSS_category_Controller::refreshDynamicOpmls();
+ }
+ [$updated_feeds, $feed, $nbNewArticles] = self::actualizeFeeds($id, $url, $maxFeeds);
+ if (!$noCommit && $nbNewArticles > 0) {
+ FreshRSS_feed_Controller::commitNewEntries();
+ }
}
if (Minz_Request::paramBoolean('ajax')) {
@@ -711,15 +730,13 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController {
$this->view->_layout(null);
} elseif ($feed instanceof FreshRSS_Feed) {
// Redirect to the main page with correct notification.
- if ($updated_feeds === 1) {
- Minz_Request::good(_t('feedback.sub.feed.actualized', $feed->name()), [
- 'params' => ['get' => 'f_' . $feed->id()]
- ]);
- } elseif ($updated_feeds > 1) {
- Minz_Request::good(_t('feedback.sub.feed.n_actualized', $updated_feeds), []);
- } else {
- Minz_Request::good(_t('feedback.sub.feed.no_refresh'), []);
- }
+ Minz_Request::good(_t('feedback.sub.feed.actualized', $feed->name()), [
+ 'params' => ['get' => 'f_' . $id]
+ ]);
+ } elseif ($updated_feeds >= 1) {
+ Minz_Request::good(_t('feedback.sub.feed.n_actualized', $updated_feeds), []);
+ } else {
+ Minz_Request::good(_t('feedback.sub.feed.no_refresh'), []);
}
return $updated_feeds;
}
@@ -899,7 +916,10 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController {
//Re-fetch articles as if the feed was new.
$feedDAO->updateFeed($feed->id(), [ 'lastUpdate' => 0 ]);
- self::actualizeFeed($feed_id, '', false);
+ [, , $nb_new_articles] = self::actualizeFeeds($feed_id);
+ if ($nb_new_articles > 0) {
+ FreshRSS_feed_Controller::commitNewEntries();
+ }
//Extract all feed entries from database, load complete content and store them back in database.
$entries = $entryDAO->listWhere('f', $feed_id, FreshRSS_Entry::STATE_ALL, 'DESC', $limit);