1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/freshrss_ynh.git synced 2024-09-03 18:36:33 +02:00
freshrss_ynh/sources/app/Controllers/entryController.php

193 lines
4.8 KiB
PHP
Raw Normal View History

2014-07-23 15:52:50 +02:00
<?php
2015-02-08 18:55:48 +01:00
/**
* Controller to handle every entry actions.
*/
2014-07-23 15:52:50 +02:00
class FreshRSS_entry_Controller extends Minz_ActionController {
2015-02-08 18:55:48 +01:00
/**
* This action is called before every other action in that class. It is
* the common boiler plate for every action. It is triggered by the
* underlying framework.
*/
public function firstAction() {
if (!FreshRSS_Auth::hasAccess()) {
Minz_Error::error(403);
2014-07-23 15:52:50 +02:00
}
2015-02-08 18:55:48 +01:00
// If ajax request, we do not print layout
$this->ajax = Minz_Request::param('ajax');
if ($this->ajax) {
$this->view->_useLayout(false);
Minz_Request::_param('ajax');
2014-07-23 15:52:50 +02:00
}
}
2015-02-08 18:55:48 +01:00
/**
* Mark one or several entries as read (or not!).
*
* If request concerns several entries, it MUST be a POST request.
* If request concerns several entries, only mark them as read is available.
*
* Parameters are:
* - id (default: false)
* - get (default: false) /(c_\d+|f_\d+|s|a)/
* - nextGet (default: $get)
* - idMax (default: 0)
* - is_read (default: true)
*/
public function readAction() {
$id = Minz_Request::param('id');
$get = Minz_Request::param('get');
$next_get = Minz_Request::param('nextGet', $get);
$id_max = Minz_Request::param('idMax', 0);
$params = array();
2014-07-23 15:52:50 +02:00
$entryDAO = FreshRSS_Factory::createEntryDao();
2015-02-08 18:55:48 +01:00
if ($id === false) {
// id is false? It MUST be a POST request!
2014-09-27 10:10:43 +02:00
if (!Minz_Request::isPost()) {
2016-07-24 11:59:17 +02:00
Minz_Request::bad(_t('feedback.access.not_found'), array('c' => 'index', 'a' => 'index'));
2014-09-27 10:10:43 +02:00
return;
}
2014-07-23 15:52:50 +02:00
if (!$get) {
2015-02-08 18:55:48 +01:00
// No get? Mark all entries as read (from $id_max)
$entryDAO->markReadEntries($id_max);
2014-07-23 15:52:50 +02:00
} else {
2015-02-08 18:55:48 +01:00
$type_get = $get[0];
$get = substr($get, 2);
switch($type_get) {
case 'c':
$entryDAO->markReadCat($get, $id_max);
break;
case 'f':
$entryDAO->markReadFeed($get, $id_max);
break;
case 's':
$entryDAO->markReadEntries($id_max, true);
break;
case 'a':
$entryDAO->markReadEntries($id_max);
break;
2014-07-23 15:52:50 +02:00
}
2015-02-08 18:55:48 +01:00
if ($next_get !== 'a') {
// Redirect to the correct page (category, feed or starred)
// Not "a" because it is the default value if nothing is
// given.
$params['get'] = $next_get;
2014-07-23 15:52:50 +02:00
}
}
} else {
2015-02-08 18:55:48 +01:00
$is_read = (bool)(Minz_Request::param('is_read', true));
$entryDAO->markRead($id, $is_read);
2014-07-23 15:52:50 +02:00
}
2015-02-08 18:55:48 +01:00
if (!$this->ajax) {
Minz_Request::good(_t('feedback.sub.feed.marked_read'), array(
'c' => 'index',
'a' => 'index',
'params' => $params,
), true);
}
}
2014-07-23 15:52:50 +02:00
2015-02-08 18:55:48 +01:00
/**
* This action marks an entry as favourite (bookmark) or not.
*
* Parameter is:
* - id (default: false)
* - is_favorite (default: true)
* If id is false, nothing happened.
*/
public function bookmarkAction() {
$id = Minz_Request::param('id');
$is_favourite = (bool)Minz_Request::param('is_favorite', true);
if ($id !== false) {
2014-07-23 15:52:50 +02:00
$entryDAO = FreshRSS_Factory::createEntryDao();
2015-02-08 18:55:48 +01:00
$entryDAO->markFavorite($id, $is_favourite);
}
if (!$this->ajax) {
Minz_Request::forward(array(
'c' => 'index',
'a' => 'index',
), true);
2014-07-23 15:52:50 +02:00
}
}
2015-02-08 18:55:48 +01:00
/**
* This action optimizes database to reduce its size.
*
* This action shouldbe reached by a POST request.
*
* @todo move this action in configure controller.
* @todo call this action through web-cron when available
*/
2014-07-23 15:52:50 +02:00
public function optimizeAction() {
2015-02-08 18:55:48 +01:00
$url_redirect = array(
'c' => 'configure',
'a' => 'archiving',
);
2014-07-23 15:52:50 +02:00
2015-02-08 18:55:48 +01:00
if (!Minz_Request::isPost()) {
Minz_Request::forward($url_redirect, true);
}
2014-07-23 15:52:50 +02:00
2015-02-08 18:55:48 +01:00
@set_time_limit(300);
2014-07-23 15:52:50 +02:00
2015-02-08 18:55:48 +01:00
$entryDAO = FreshRSS_Factory::createEntryDao();
$entryDAO->optimizeTable();
2014-07-23 15:52:50 +02:00
2015-02-08 18:55:48 +01:00
$feedDAO = FreshRSS_Factory::createFeedDao();
$feedDAO->updateCachedValues();
2014-07-23 15:52:50 +02:00
2015-02-08 18:55:48 +01:00
invalidateHttpCache();
Minz_Request::good(_t('feedback.admin.optimization_complete'), $url_redirect);
2014-07-23 15:52:50 +02:00
}
2015-02-08 18:55:48 +01:00
/**
* This action purges old entries from feeds.
*
* @todo should be a POST request
* @todo should be in feedController
*/
2014-07-23 15:52:50 +02:00
public function purgeAction() {
@set_time_limit(300);
2015-02-08 18:55:48 +01:00
$nb_month_old = max(FreshRSS_Context::$user_conf->old_entries, 1);
2014-07-23 15:52:50 +02:00
$date_min = time() - (3600 * 24 * 30 * $nb_month_old);
$feedDAO = FreshRSS_Factory::createFeedDao();
$feeds = $feedDAO->listFeeds();
2015-02-08 18:55:48 +01:00
$nb_total = 0;
2014-07-23 15:52:50 +02:00
invalidateHttpCache();
foreach ($feeds as $feed) {
2015-02-08 18:55:48 +01:00
$feed_history = $feed->keepHistory();
if ($feed_history == -2) {
// TODO: -2 must be a constant!
// -2 means we take the default value from configuration
$feed_history = FreshRSS_Context::$user_conf->keep_history_default;
2014-07-23 15:52:50 +02:00
}
2015-02-08 18:55:48 +01:00
if ($feed_history >= 0) {
$nb = $feedDAO->cleanOldEntries($feed->id(), $date_min, $feed_history);
2014-07-23 15:52:50 +02:00
if ($nb > 0) {
2015-02-08 18:55:48 +01:00
$nb_total += $nb;
Minz_Log::debug($nb . ' old entries cleaned in feed [' . $feed->url() . ']');
2014-07-23 15:52:50 +02:00
}
}
}
$feedDAO->updateCachedValues();
invalidateHttpCache();
2015-02-08 18:55:48 +01:00
Minz_Request::good(_t('feedback.sub.purge_completed', $nb_total), array(
2014-07-23 15:52:50 +02:00
'c' => 'configure',
'a' => 'archiving'
2015-02-08 18:55:48 +01:00
));
2014-07-23 15:52:50 +02:00
}
}