| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- <?php
- /**
- * This class handles main actions of FreshRSS.
- */
- class FreshRSS_index_Controller extends Minz_ActionController {
- public function indexAction() {
- // TODO: update the context with information from request.
- // TODO: then, in dedicated action, get corresponding entries
- $prefered_output = FreshRSS_Context::$conf->view_mode;
- Minz_Request::forward(array(
- 'c' => 'index',
- 'a' => $prefered_output
- ));
- return;
- try {
- $entries = $entryDAO->listWhere($getType, $getId, $this->view->state, $order, $nb + 1, $first, $filter);
- if (count($entries) > $nb) {
- // We have more elements for pagination
- $last_entry = array_pop($entries);
- FreshRSS_Context::$next_id = $last_entry->id();
- }
- $this->view->entries = $entries;
- } catch (FreshRSS_EntriesGetter_Exception $e) {
- Minz_Log::notice($e->getMessage());
- Minz_Error::error(404);
- }
- }
- /**
- * This action displays the normal view of FreshRSS.
- */
- public function normalAction() {
- if (!FreshRSS_Auth::hasAccess() && !Minz_Configuration::allowAnonymous()) {
- Minz_Request::forward(array('c' => 'auth', 'a' => 'login'));
- return;
- }
- try {
- $this->updateContext();
- } catch (Minz_Exception $e) {
- Minz_Error::error(404);
- }
- $this->view->categories = FreshRSS_Context::$categories;
- $title = FreshRSS_Context::$name;
- if (FreshRSS_Context::$get_unread > 0) {
- $title = '(' . FreshRSS_Context::$get_unread . ') · ' . $title;
- }
- Minz_View::prependTitle($title . ' · ');
- }
- /**
- * This action displays the global view of FreshRSS.
- */
- public function globalAction() {
- if (!FreshRSS_Auth::hasAccess() && !Minz_Configuration::allowAnonymous()) {
- Minz_Request::forward(array('c' => 'auth', 'a' => 'login'));
- return;
- }
- Minz_View::appendScript(Minz_Url::display('/scripts/global_view.js?' . @filemtime(PUBLIC_PATH . '/scripts/global_view.js')));
- try {
- $this->updateContext();
- } catch (Minz_Exception $e) {
- Minz_Error::error(404);
- }
- $this->view->categories = FreshRSS_Context::$categories;
- Minz_View::prependTitle(_t('gen.title.global_view') . ' · ');
- }
- /**
- * This action displays the RSS feed of FreshRSS.
- */
- public function rssAction() {
- $token = FreshRSS_Context::$conf->token;
- $token_param = Minz_Request::param('token', '');
- $token_is_ok = ($token != '' && $token === $token_param);
- // Check if user has access.
- if (!FreshRSS_Auth::hasAccess() &&
- !Minz_Configuration::allowAnonymous() &&
- !$token_is_ok) {
- Minz_Error::error(403);
- }
- try {
- $this->updateContext();
- } catch (Minz_Exception $e) {
- Minz_Error::error(404);
- }
- // No layout for RSS output.
- $this->view->rss_title = FreshRSS_Context::$name . ' | ' . Minz_View::title();
- $this->view->_useLayout(false);
- header('Content-Type: application/rss+xml; charset=utf-8');
- }
- /**
- * This action updates the Context object by using request parameters.
- */
- private function updateContext() {
- FreshRSS_Context::_get(Minz_Request::param('get', 'a'));
- FreshRSS_Context::$state |= Minz_Request::param(
- 'state', FreshRSS_Context::$conf->default_view
- );
- if (FreshRSS_Context::$state & FreshRSS_Entry::STATE_NOT_READ &&
- FreshRSS_Context::$get_unread <= 0) {
- FreshRSS_Context::$state |= FreshRSS_Entry::STATE_READ;
- }
- FreshRSS_Context::$search = Minz_Request::param('search', '');
- FreshRSS_Context::$order = Minz_Request::param(
- 'order', FreshRSS_Context::$conf->sort_order
- );
- FreshRSS_Context::$number = Minz_Request::param(
- 'nb', FreshRSS_Context::$conf->posts_per_page
- );
- FreshRSS_Context::$first_id = Minz_Request::param('next', '');
- }
- /**
- * This action displays the about page of FreshRSS.
- */
- public function aboutAction() {
- Minz_View::prependTitle(_t('about') . ' · ');
- }
- /**
- * This action displays logs of FreshRSS for the current user.
- */
- public function logsAction() {
- if (!FreshRSS_Auth::hasAccess()) {
- Minz_Error::error(403);
- }
- Minz_View::prependTitle(_t('logs') . ' · ');
- if (Minz_Request::isPost()) {
- FreshRSS_LogDAO::truncate();
- }
- $logs = FreshRSS_LogDAO::lines(); //TODO: ask only the necessary lines
- //gestion pagination
- $page = Minz_Request::param('page', 1);
- $this->view->logsPaginator = new Minz_Paginator($logs);
- $this->view->logsPaginator->_nbItemsPerPage(50);
- $this->view->logsPaginator->_currentPage($page);
- }
- }
|