| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325 |
- <?php
- /**
- * This class handles main actions of FreshRSS.
- */
- class FreshRSS_index_Controller extends FreshRSS_ActionController {
- /**
- * This action only redirect on the default view mode (normal or global)
- */
- public function indexAction() {
- $preferred_output = FreshRSS_Context::$user_conf->view_mode;
- Minz_Request::forward(array(
- 'c' => 'index',
- 'a' => $preferred_output
- ));
- }
- /**
- * This action displays the normal view of FreshRSS.
- */
- public function normalAction() {
- $allow_anonymous = FreshRSS_Context::$system_conf->allow_anonymous;
- if (!FreshRSS_Auth::hasAccess() && !$allow_anonymous) {
- Minz_Request::forward(array('c' => 'auth', 'a' => 'login'));
- return;
- }
- $id = Minz_Request::param('id');
- if ($id) {
- $view = Minz_Request::param('a');
- $url_redirect = array('c' => 'subscription', 'a' => 'feed', 'params' => array('id' => $id, 'from' => $view));
- Minz_Request::forward($url_redirect, true);
- return;
- }
- try {
- FreshRSS_Context::updateUsingRequest();
- } catch (FreshRSS_Context_Exception $e) {
- Minz_Error::error(404);
- }
- $this->_csp([
- 'default-src' => "'self'",
- 'frame-src' => '*',
- 'img-src' => '* data:',
- 'media-src' => '*',
- ]);
- $this->view->categories = FreshRSS_Context::$categories;
- $this->view->rss_title = FreshRSS_Context::$name . ' | ' . FreshRSS_View::title();
- $title = FreshRSS_Context::$name;
- if (FreshRSS_Context::$get_unread > 0) {
- $title = '(' . FreshRSS_Context::$get_unread . ') ' . $title;
- }
- FreshRSS_View::prependTitle($title . ' · ');
- FreshRSS_Context::$id_max = time() . '000000';
- $this->view->callbackBeforeFeeds = function ($view) {
- try {
- $tagDAO = FreshRSS_Factory::createTagDao();
- $view->tags = $tagDAO->listTags(true);
- $view->nbUnreadTags = 0;
- foreach ($view->tags as $tag) {
- $view->nbUnreadTags += $tag->nbUnread();
- }
- } catch (Exception $e) {
- Minz_Log::notice($e->getMessage());
- }
- };
- $this->view->callbackBeforeEntries = function ($view) {
- try {
- FreshRSS_Context::$number++; //+1 for articles' page
- $view->entries = FreshRSS_index_Controller::listEntriesByContext();
- FreshRSS_Context::$number--;
- ob_start(); //Buffer "one entry at a time"
- } catch (FreshRSS_EntriesGetter_Exception $e) {
- Minz_Log::notice($e->getMessage());
- Minz_Error::error(404);
- }
- };
- $this->view->callbackBeforePagination = function ($view, $nbEntries, $lastEntry) {
- if ($nbEntries >= FreshRSS_Context::$number) {
- //We have enough entries: we discard the last one to use it for the next articles' page
- ob_clean();
- FreshRSS_Context::$next_id = $lastEntry->id();
- }
- ob_end_flush();
- };
- }
- /**
- * This action displays the reader view of FreshRSS.
- *
- * @todo: change this view into specific CSS rules?
- */
- public function readerAction() {
- $this->normalAction();
- }
- /**
- * This action displays the global view of FreshRSS.
- */
- public function globalAction() {
- $allow_anonymous = FreshRSS_Context::$system_conf->allow_anonymous;
- if (!FreshRSS_Auth::hasAccess() && !$allow_anonymous) {
- Minz_Request::forward(array('c' => 'auth', 'a' => 'login'));
- return;
- }
- FreshRSS_View::appendScript(Minz_Url::display('/scripts/extra.js?' . @filemtime(PUBLIC_PATH . '/scripts/extra.js')));
- FreshRSS_View::appendScript(Minz_Url::display('/scripts/global_view.js?' . @filemtime(PUBLIC_PATH . '/scripts/global_view.js')));
- try {
- FreshRSS_Context::updateUsingRequest();
- } catch (FreshRSS_Context_Exception $e) {
- Minz_Error::error(404);
- }
- $this->view->categories = FreshRSS_Context::$categories;
- $this->view->rss_title = FreshRSS_Context::$name . ' | ' . FreshRSS_View::title();
- $title = _t('index.feed.title_global');
- if (FreshRSS_Context::$get_unread > 0) {
- $title = '(' . FreshRSS_Context::$get_unread . ') ' . $title;
- }
- FreshRSS_View::prependTitle($title . ' · ');
- $this->_csp([
- 'default-src' => "'self'",
- 'frame-src' => '*',
- 'img-src' => '* data:',
- 'media-src' => '*',
- ]);
- }
- /**
- * This action displays the RSS feed of FreshRSS.
- */
- public function rssAction() {
- $allow_anonymous = FreshRSS_Context::$system_conf->allow_anonymous;
- $token = FreshRSS_Context::$user_conf->token;
- $token_param = Minz_Request::param('token', '');
- $token_is_ok = ($token != '' && $token === $token_param);
- // Check if user has access.
- if (!FreshRSS_Auth::hasAccess() &&
- !$allow_anonymous &&
- !$token_is_ok) {
- Minz_Error::error(403);
- }
- try {
- FreshRSS_Context::updateUsingRequest();
- } catch (FreshRSS_Context_Exception $e) {
- Minz_Error::error(404);
- }
- try {
- $this->view->entries = FreshRSS_index_Controller::listEntriesByContext();
- } catch (FreshRSS_EntriesGetter_Exception $e) {
- Minz_Log::notice($e->getMessage());
- Minz_Error::error(404);
- }
- // No layout for RSS output.
- $this->view->rss_url = PUBLIC_TO_INDEX_PATH . '/' . (empty($_SERVER['QUERY_STRING']) ? '' : '?' . $_SERVER['QUERY_STRING']);
- $this->view->rss_title = FreshRSS_Context::$name . ' | ' . FreshRSS_View::title();
- $this->view->_layout(false);
- header('Content-Type: application/rss+xml; charset=utf-8');
- }
- public function opmlAction() {
- $allow_anonymous = FreshRSS_Context::$system_conf->allow_anonymous;
- $token = FreshRSS_Context::$user_conf->token;
- $token_param = Minz_Request::param('token', '');
- $token_is_ok = ($token != '' && $token === $token_param);
- // Check if user has access.
- if (!FreshRSS_Auth::hasAccess() && !$allow_anonymous && !$token_is_ok) {
- Minz_Error::error(403);
- }
- try {
- FreshRSS_Context::updateUsingRequest();
- } catch (FreshRSS_Context_Exception $e) {
- Minz_Error::error(404);
- }
- $get = FreshRSS_Context::currentGet(true);
- if (is_array($get)) {
- $type = $get[0];
- $id = $get[1];
- } else {
- $type = $get;
- $id = '';
- }
- $catDAO = FreshRSS_Factory::createCategoryDao();
- $categories = $catDAO->listCategories(true, true);
- $this->view->excludeMutedFeeds = true;
- switch ($type) {
- case 'a':
- $this->view->categories = $categories;
- break;
- case 'c':
- $cat = $categories[$id] ?? null;
- if ($cat == null) {
- Minz_Error::error(404);
- return;
- }
- $this->view->categories = [ $cat ];
- break;
- case 'f':
- // We most likely already have the feed object in cache
- $feed = FreshRSS_CategoryDAO::findFeed($categories, $id);
- if ($feed == null) {
- $feedDAO = FreshRSS_Factory::createFeedDao();
- $feed = $feedDAO->searchById($id);
- if ($feed == null) {
- Minz_Error::error(404);
- return;
- }
- }
- $this->view->feeds = [ $feed ];
- break;
- case 's':
- case 't':
- case 'T':
- default:
- Minz_Error::error(404);
- return;
- }
- require_once(LIB_PATH . '/lib_opml.php');
- // No layout for OPML output.
- $this->view->_layout(false);
- header('Content-Type: application/xml; charset=utf-8');
- }
- /**
- * This method returns a list of entries based on the Context object.
- */
- public static function listEntriesByContext() {
- $entryDAO = FreshRSS_Factory::createEntryDao();
- $get = FreshRSS_Context::currentGet(true);
- if (is_array($get)) {
- $type = $get[0];
- $id = $get[1];
- } else {
- $type = $get;
- $id = '';
- }
- $limit = FreshRSS_Context::$number;
- $date_min = 0;
- if (FreshRSS_Context::$sinceHours) {
- $date_min = time() - (FreshRSS_Context::$sinceHours * 3600);
- $limit = FreshRSS_Context::$user_conf->max_posts_per_rss;
- }
- foreach ($entryDAO->listWhere(
- $type, $id, FreshRSS_Context::$state, FreshRSS_Context::$order,
- $limit, FreshRSS_Context::$first_id,
- FreshRSS_Context::$search, $date_min)
- as $entry) {
- yield $entry;
- }
- }
- /**
- * This action displays the about page of FreshRSS.
- */
- public function aboutAction() {
- FreshRSS_View::prependTitle(_t('index.about.title') . ' · ');
- }
- /**
- * This action displays the EULA page of FreshRSS.
- * This page is enabled only if admin created a data/tos.html file.
- * The content of the page is the content of data/tos.html.
- * It returns 404 if there is no EULA.
- */
- public function tosAction() {
- $terms_of_service = file_get_contents(join_path(DATA_PATH, 'tos.html'));
- if (!$terms_of_service) {
- Minz_Error::error(404);
- }
- $this->view->terms_of_service = $terms_of_service;
- $this->view->can_register = !max_registrations_reached();
- FreshRSS_View::prependTitle(_t('index.tos.title') . ' · ');
- }
- /**
- * This action displays logs of FreshRSS for the current user.
- */
- public function logsAction() {
- if (!FreshRSS_Auth::hasAccess()) {
- Minz_Error::error(403);
- }
- FreshRSS_View::prependTitle(_t('index.log.title') . ' · ');
- if (Minz_Request::isPost()) {
- FreshRSS_LogDAO::truncate();
- }
- $logs = FreshRSS_LogDAO::lines(); //TODO: ask only the necessary lines
- //gestion pagination
- $page = intval(Minz_Request::param('page', 1));
- $this->view->logsPaginator = new Minz_Paginator($logs);
- $this->view->logsPaginator->_nbItemsPerPage(50);
- $this->view->logsPaginator->_currentPage($page);
- }
- }
|