aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/indexController.php
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-10-22 13:13:24 +0200
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-10-22 13:13:24 +0200
commitfcae4157539306e90299e7f0e90740320a2833d7 (patch)
tree22dfeea3f3d7204fa2dcba8136b3d94d4c40926e /app/Controllers/indexController.php
parent80cffa6de51771cd80995fb1c4f1e04ee868eb45 (diff)
Update title and get parameter correctly.
See https://github.com/marienfressinaud/FreshRSS/issues/634
Diffstat (limited to 'app/Controllers/indexController.php')
-rwxr-xr-xapp/Controllers/indexController.php113
1 files changed, 32 insertions, 81 deletions
diff --git a/app/Controllers/indexController.php b/app/Controllers/indexController.php
index d348ea1d0..f163da53d 100755
--- a/app/Controllers/indexController.php
+++ b/app/Controllers/indexController.php
@@ -4,7 +4,6 @@
* This class handles main actions of FreshRSS.
*/
class FreshRSS_index_Controller extends Minz_ActionController {
- private $nb_not_read_cat = 0;
public function indexAction() {
// TODO: update the context with information from request.
@@ -18,30 +17,6 @@ class FreshRSS_index_Controller extends Minz_ActionController {
return;
- $this->view->nb_favorites = $entryDAO->countUnreadReadFavorites();
- $this->view->nb_not_read = FreshRSS_CategoryDAO::CountUnreads($this->view->cat_aside, 1);
- $this->view->currentName = '';
-
- $this->view->get_c = '';
- $this->view->get_f = '';
-
- $get = Minz_Request::param('get', 'a');
- $getType = $get[0];
- $getId = substr($get, 2);
- if (!$this->checkAndProcessType($getType, $getId)) {
- Minz_Log::debug('Not found [' . $getType . '][' . $getId . ']');
- Minz_Error::error(404);
- return;
- }
-
- // mise à jour des titres
- $this->view->rss_title = $this->view->currentName . ' | ' . Minz_View::title();
- Minz_View::prependTitle(
- ($this->nb_not_read_cat > 0 ? '(' . formatNumber($this->nb_not_read_cat) . ') ' : '') .
- $this->view->currentName .
- ' · '
- );
-
// On récupère les différents éléments de filtrage
$this->view->state = Minz_Request::param('state', FreshRSS_Context::$conf->default_view);
$state_param = Minz_Request::param('state', null);
@@ -115,57 +90,6 @@ class FreshRSS_index_Controller extends Minz_ActionController {
}
}
- /*
- * Vérifie que la catégorie / flux sélectionné existe
- * + Initialise correctement les variables de vue get_c et get_f
- * + Met à jour la variable $this->nb_not_read_cat
- */
- private function checkAndProcessType($getType, $getId) {
- switch($getType) {
- case 'a':
- $this->view->currentName = _t('your_rss_feeds');
- $this->nb_not_read_cat = $this->view->nb_not_read;
- $this->view->get_c = $getType;
- return true;
- case 's':
- $this->view->currentName = _t('your_favorites');
- $this->nb_not_read_cat = $this->view->nb_favorites['unread'];
- $this->view->get_c = $getType;
- return true;
- case 'c':
- $cat = isset($this->view->cat_aside[$getId]) ? $this->view->cat_aside[$getId] : null;
- if ($cat === null) {
- $catDAO = new FreshRSS_CategoryDAO();
- $cat = $catDAO->searchById($getId);
- }
- if ($cat) {
- $this->view->currentName = $cat->name();
- $this->nb_not_read_cat = $cat->nbNotRead();
- $this->view->get_c = $getId;
- return true;
- } else {
- return false;
- }
- case 'f':
- $feed = FreshRSS_CategoryDAO::findFeed($this->view->cat_aside, $getId);
- if (empty($feed)) {
- $feedDAO = FreshRSS_Factory::createFeedDao();
- $feed = $feedDAO->searchById($getId);
- }
- if ($feed) {
- $this->view->currentName = $feed->name();
- $this->nb_not_read_cat = $feed->nbNotRead();
- $this->view->get_f = $getId;
- $this->view->get_c = $feed->category();
- return true;
- } else {
- return false;
- }
- default:
- return false;
- }
- }
-
/**
* This action displays the normal view of FreshRSS.
*/
@@ -175,11 +99,19 @@ class FreshRSS_index_Controller extends Minz_ActionController {
return;
}
- $catDAO = new FreshRSS_CategoryDAO();
- $entryDAO = FreshRSS_Factory::createEntryDao();
+ try {
+ $this->updateContext();
+ } catch (Minz_Exception $e) {
+ Minz_Error::error(404);
+ }
- $this->view->categories = $catDAO->listCategories();
+ $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 . ' · ');
}
/**
@@ -193,8 +125,13 @@ class FreshRSS_index_Controller extends Minz_ActionController {
Minz_View::appendScript(Minz_Url::display('/scripts/global_view.js?' . @filemtime(PUBLIC_PATH . '/scripts/global_view.js')));
- $catDAO = new FreshRSS_CategoryDAO();
- $this->view->categories = $catDAO->listCategories();
+ 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') . ' · ');
}
@@ -214,12 +151,26 @@ class FreshRSS_index_Controller extends Minz_ActionController {
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'));
+ }
+
+ /**
* This action displays the about page of FreshRSS.
*/
public function aboutAction() {