miniflux-legacy/app/controllers/item.php

235 lines
8.7 KiB
PHP
Raw Normal View History

<?php
namespace Miniflux\Controller;
use Miniflux\Helper;
2016-08-25 03:17:58 +02:00
use Miniflux\Router;
use Miniflux\Response;
use Miniflux\Request;
use Miniflux\Session\SessionStorage;
2016-08-25 03:17:58 +02:00
use Miniflux\Template;
use Miniflux\Handler;
use Miniflux\Model;
2014-02-08 20:13:14 +01:00
// Display unread items
2016-04-18 01:44:45 +02:00
Router\get_action('unread', function () {
$user_id = SessionStorage::getInstance()->getUserId();
Model\Item\autoflush_read($user_id);
Model\Item\autoflush_unread($user_id);
2014-02-08 20:13:14 +01:00
$params = items_list(Model\Item\STATUS_UNREAD);
if ($params['nb_unread_items'] === 0) {
$action = Helper\config('redirect_nothing_to_read', 'feeds');
2014-02-08 20:13:14 +01:00
Response\redirect('?action='.$action.'&nothing_to_read=1');
}
Response\html(Template\layout('unread_items', $params + array(
'title' => 'Miniflux (' . $params['nb_items'] . ')',
'menu' => 'unread',
2014-02-08 20:13:14 +01:00
)));
});
// Show item
2016-04-18 01:44:45 +02:00
Router\get_action('show', function () {
$user_id = SessionStorage::getInstance()->getUserId();
$item_id = Request\param('id');
$menu = Request\param('menu');
$item = Model\Item\get_item($user_id, $item_id);
$feed = Model\Feed\get_feed($user_id, $item['feed_id']);
$group_id = Request\int_param('group_id', null);
Model\Item\change_item_status($user_id, $item_id, Model\Item\STATUS_READ);
2014-12-11 03:12:42 +01:00
$item['status'] = 'read';
switch ($menu) {
case 'unread':
$nav = Model\Item\get_item_nav($user_id, $item, array('unread'), array(1, 0), null, $group_id);
break;
case 'history':
$nav = Model\Item\get_item_nav($user_id, $item, array('read'));
break;
case 'feed-items':
$nav = Model\Item\get_item_nav($user_id, $item, array('unread', 'read'), array(1, 0), $item['feed_id']);
break;
case 'bookmarks':
$nav = Model\Item\get_item_nav($user_id, $item, array('unread', 'read'), array(1));
break;
}
$image_proxy = (bool) Helper\config('image_proxy');
// add the image proxy if requested and required
2016-08-19 04:41:39 +02:00
$item['content'] = Handler\Proxy\rewrite_html($item['content'], $item['url'], $image_proxy, $feed['cloak_referrer']);
if ($image_proxy && strpos($item['enclosure_type'], 'image') === 0) {
$item['enclosure_url'] = Handler\Proxy\rewrite_link($item['enclosure_url']);
}
Response\html(Template\layout('show_item', array(
'item' => $item,
'feed' => $feed,
'item_nav' => isset($nav) ? $nav : null,
'menu' => $menu,
'title' => $item['title'],
'group_id' => $group_id,
)));
});
// Display feed items page
2016-04-18 01:44:45 +02:00
Router\get_action('feed-items', function () {
$user_id = SessionStorage::getInstance()->getUserId();
$feed_id = Request\int_param('feed_id', 0);
$offset = Request\int_param('offset', 0);
$feed = Model\Feed\get_feed($user_id, $feed_id);
$order = Request\param('order', 'updated');
$direction = Request\param('direction', Helper\config('items_sorting_direction'));
$items = Model\ItemFeed\get_all_items($user_id, $feed_id, $offset, Helper\config('items_per_page'), $order, $direction);
$nb_items = Model\ItemFeed\count_items($user_id, $feed_id);
Response\html(Template\layout('feed_items', array(
'favicons' => Model\Favicon\get_favicons_by_feed_ids(array($feed['id'])),
'original_marks_read' => Helper\config('original_marks_read'),
'order' => $order,
'direction' => $direction,
'display_mode' => Helper\config('items_display_mode'),
'feed' => $feed,
'items' => $items,
'nb_items' => $nb_items,
'offset' => $offset,
'items_per_page' => Helper\config('items_per_page'),
'item_title_link' => Helper\config('item_title_link'),
'menu' => 'feed-items',
'title' => '('.$nb_items.') '.$feed['title']
)));
});
// Ajax call to download an item (fetch the full content from the original website)
2016-04-18 01:44:45 +02:00
Router\post_action('download-item', function () {
$user_id = SessionStorage::getInstance()->getUserId();
$item_id = Request\param('id');
$item = Model\Item\get_item($user_id, $item_id);
$feed = Model\Feed\get_feed($user_id, $item['feed_id']);
$download = Handler\Item\download_item_content($user_id, $item_id);
$download['content'] = Handler\Proxy\rewrite_html(
$download['content'],
$item['url'],
Helper\bool_config('image_proxy'),
(bool) $feed['cloak_referrer']
);
Response\json($download);
});
// Ajax call to mark item read
2016-04-18 01:44:45 +02:00
Router\post_action('mark-item-read', function () {
$user_id = SessionStorage::getInstance()->getUserId();
$item_id = Request\param('id');
Model\Item\change_item_status($user_id, $item_id, Model\Item\STATUS_READ);
Response\json(array('Ok'));
});
// Ajax call to mark item as removed
2016-04-18 01:44:45 +02:00
Router\post_action('mark-item-removed', function () {
$user_id = SessionStorage::getInstance()->getUserId();
$item_id = Request\param('id');
Model\Item\change_item_status($user_id, $item_id, Model\Item\STATUS_REMOVED);
Response\json(array('Ok'));
});
// Ajax call to mark item unread
2016-04-18 01:44:45 +02:00
Router\post_action('mark-item-unread', function () {
$user_id = SessionStorage::getInstance()->getUserId();
$item_id = Request\param('id');
Model\Item\change_item_status($user_id, $item_id, Model\Item\STATUS_UNREAD);
Response\json(array('Ok'));
});
// Mark unread items as read
2016-04-18 01:44:45 +02:00
Router\get_action('mark-all-read', function () {
$user_id = SessionStorage::getInstance()->getUserId();
$group_id = Request\int_param('group_id', null);
2016-05-03 10:45:07 +02:00
if ($group_id !== null) {
Model\ItemGroup\change_items_status($user_id, $group_id, Model\Item\STATUS_UNREAD, Model\Item\STATUS_READ);
2016-04-18 01:44:45 +02:00
} else {
Model\Item\change_items_status($user_id, Model\Item\STATUS_UNREAD, Model\Item\STATUS_READ);
}
Response\redirect('?action=unread');
});
// Mark all unread items as read for a specific feed
2016-04-18 01:44:45 +02:00
Router\get_action('mark-feed-as-read', function () {
$user_id = SessionStorage::getInstance()->getUserId();
$feed_id = Request\int_param('feed_id');
Model\ItemFeed\change_items_status($user_id, $feed_id, Model\Item\STATUS_UNREAD, Model\Item\STATUS_READ);
Response\redirect('?action=feed-items&feed_id='.$feed_id);
});
// Mark all unread items as read for a specific feed (Ajax request) and return
// the number of unread items. It's not possible to get the number of items
// that where marked read from the frontend, since the number of unread items
// on page 2+ is unknown.
2016-04-18 01:44:45 +02:00
Router\post_action('mark-feed-as-read', function () {
$user_id = SessionStorage::getInstance()->getUserId();
$feed_id = Request\int_param('feed_id');
Model\ItemFeed\change_items_status($user_id, $feed_id, Model\Item\STATUS_UNREAD, Model\Item\STATUS_READ);
$nb_items = Model\Item\count_by_status($user_id, Model\Item\STATUS_READ);
Response\raw($nb_items);
});
// Mark item as read and redirect to the listing page
2016-04-18 01:44:45 +02:00
Router\get_action('mark-item-read', function () {
$user_id = SessionStorage::getInstance()->getUserId();
$item_id = Request\param('id');
$redirect = Request\param('redirect', 'unread');
$offset = Request\int_param('offset', 0);
$feed_id = Request\int_param('feed_id', 0);
Model\Item\change_item_status($user_id, $item_id, Model\Item\STATUS_READ);
Response\redirect('?action='.$redirect.'&offset='.$offset.'&feed_id='.$feed_id.'#item-'.$item_id);
});
// Mark item as unread and redirect to the listing page
2016-04-18 01:44:45 +02:00
Router\get_action('mark-item-unread', function () {
$user_id = SessionStorage::getInstance()->getUserId();
$item_id = Request\param('id');
$redirect = Request\param('redirect', 'history');
$offset = Request\int_param('offset', 0);
$feed_id = Request\int_param('feed_id', 0);
Model\Item\change_item_status($user_id, $item_id, Model\Item\STATUS_UNREAD);
Response\redirect('?action='.$redirect.'&offset='.$offset.'&feed_id='.$feed_id.'#item-'.$item_id);
});
// Mark item as removed and redirect to the listing page
2016-04-18 01:44:45 +02:00
Router\get_action('mark-item-removed', function () {
$user_id = SessionStorage::getInstance()->getUserId();
$item_id = Request\param('id');
$redirect = Request\param('redirect', 'history');
$offset = Request\int_param('offset', 0);
$feed_id = Request\int_param('feed_id', 0);
Model\Item\change_item_status($user_id, $item_id, Model\Item\STATUS_REMOVED);
Response\redirect('?action='.$redirect.'&offset='.$offset.'&feed_id='.$feed_id);
});
implement frontend autoupdate Only the unread counter is updated right know. The AutoUpdate Feature is designed on the premise of don't wasting resources. A distinction is made between updates when Miniflux is visible or hidden. To determine the visibility status, the Page Visibility API is used. The API is available starting with Chrome 33, Firefox 18 and IE10. [https://developer.mozilla.org/en-US/docs/Web/Guide/User_experience/Using_the_Page_Visibility_API] As IE9 returns an undefined, it doesn't break the compatibility at least. If Miniflux is visible, the unread counter on the web page is updated as soon as a mismatch between the counter and the number of unread articles in the database is found. If Miniflux is hidden, the timestamp of the most recent article from each feed is compared with the value from the last run. We have an update If the timestamp of the latest article is greater than the stored one and the latest article is unread. The web page title is updated with a ? symbol to notify the user and the update check pauses till Miniflux gets visible again. If Miniflux gets visible again, the number of unread articles is queried from the database, the unread counter on the web page is updated and finally the ? symbol is removed from the web page title. This way I can use my fever API client to read new articles (or at least the latest article) while Miniflux is hidden and as I've seen the new articles already a new articles notification is prevented. It's intentionally that the page does not reload automatically as long as articles are visible. If I'm in hurry, I only scroll through the articles to spot something interesting. Most of the time I don't reach the last article. If the page is reloaded while I'm away, I would have to scan from the top again. If we're on a nothing_to_read page and have unread articles in the database, a redirect to the unread page will be done. The default update check interval is 10 minutes and can be changed on the settings page. A zero value disables the update check entirely. fixes #213
2014-11-27 22:36:04 +01:00
2016-12-26 21:07:18 +01:00
Router\get_action('latest-feeds-items', function () {
$user_id = SessionStorage::getInstance()->getUserId();
2016-12-26 21:07:18 +01:00
$items_timestamps = Model\Item\get_latest_unread_items_timestamps($user_id);
$nb_unread_items = Model\Item\count_by_status($user_id, 'unread');
implement frontend autoupdate Only the unread counter is updated right know. The AutoUpdate Feature is designed on the premise of don't wasting resources. A distinction is made between updates when Miniflux is visible or hidden. To determine the visibility status, the Page Visibility API is used. The API is available starting with Chrome 33, Firefox 18 and IE10. [https://developer.mozilla.org/en-US/docs/Web/Guide/User_experience/Using_the_Page_Visibility_API] As IE9 returns an undefined, it doesn't break the compatibility at least. If Miniflux is visible, the unread counter on the web page is updated as soon as a mismatch between the counter and the number of unread articles in the database is found. If Miniflux is hidden, the timestamp of the most recent article from each feed is compared with the value from the last run. We have an update If the timestamp of the latest article is greater than the stored one and the latest article is unread. The web page title is updated with a ? symbol to notify the user and the update check pauses till Miniflux gets visible again. If Miniflux gets visible again, the number of unread articles is queried from the database, the unread counter on the web page is updated and finally the ? symbol is removed from the web page title. This way I can use my fever API client to read new articles (or at least the latest article) while Miniflux is hidden and as I've seen the new articles already a new articles notification is prevented. It's intentionally that the page does not reload automatically as long as articles are visible. If I'm in hurry, I only scroll through the articles to spot something interesting. Most of the time I don't reach the last article. If the page is reloaded while I'm away, I would have to scan from the top again. If we're on a nothing_to_read page and have unread articles in the database, a redirect to the unread page will be done. The default update check interval is 10 minutes and can be changed on the settings page. A zero value disables the update check entirely. fixes #213
2014-11-27 22:36:04 +01:00
Response\json(array(
2016-12-26 21:07:18 +01:00
'last_items_timestamps' => $items_timestamps,
'nb_unread_items' => $nb_unread_items
implement frontend autoupdate Only the unread counter is updated right know. The AutoUpdate Feature is designed on the premise of don't wasting resources. A distinction is made between updates when Miniflux is visible or hidden. To determine the visibility status, the Page Visibility API is used. The API is available starting with Chrome 33, Firefox 18 and IE10. [https://developer.mozilla.org/en-US/docs/Web/Guide/User_experience/Using_the_Page_Visibility_API] As IE9 returns an undefined, it doesn't break the compatibility at least. If Miniflux is visible, the unread counter on the web page is updated as soon as a mismatch between the counter and the number of unread articles in the database is found. If Miniflux is hidden, the timestamp of the most recent article from each feed is compared with the value from the last run. We have an update If the timestamp of the latest article is greater than the stored one and the latest article is unread. The web page title is updated with a ? symbol to notify the user and the update check pauses till Miniflux gets visible again. If Miniflux gets visible again, the number of unread articles is queried from the database, the unread counter on the web page is updated and finally the ? symbol is removed from the web page title. This way I can use my fever API client to read new articles (or at least the latest article) while Miniflux is hidden and as I've seen the new articles already a new articles notification is prevented. It's intentionally that the page does not reload automatically as long as articles are visible. If I'm in hurry, I only scroll through the articles to spot something interesting. Most of the time I don't reach the last article. If the page is reloaded while I'm away, I would have to scan from the top again. If we're on a nothing_to_read page and have unread articles in the database, a redirect to the unread page will be done. The default update check interval is 10 minutes and can be changed on the settings page. A zero value disables the update check entirely. fixes #213
2014-11-27 22:36:04 +01:00
));
});