X-Git-Url: https://git.cweiske.de/grauphel.git/blobdiff_plain/a375467d42cb53599ffddbd1d7ce8fae028972f8..d2bc4dfd1c4c2c54c75cd4b316c4e8b2c013a25b:/controller/guicontroller.php diff --git a/controller/guicontroller.php b/controller/guicontroller.php index 29dd03f..cac2f29 100644 --- a/controller/guicontroller.php +++ b/controller/guicontroller.php @@ -146,6 +146,7 @@ class GuiController extends Controller } $this->addNavigation($res, $selectedRawtag); + $this->addGlobalVars($res); return $res; } @@ -168,13 +169,31 @@ class GuiController extends Controller */ public function tag($rawtag) { + $rawtag = $this->unescapeTagFromUrl($rawtag); $notes = $this->getNotes()->loadNotesOverview(null, $rawtag, true); - usort( - $notes, - function($noteA, $noteB) { - return strcmp($noteA['title'], $noteB['title']); - } - ); + + if (!isset($_GET['sortby'])) { + $_GET['sortby'] = 'title'; + } + + switch ($_GET['sortby']) { + case 'title': + usort( + $notes, + function($noteA, $noteB) { + return strcasecmp($noteA['title'], $noteB['title']); + } + ); + break; + case 'date': + usort( + $notes, + function($noteA, $noteB) { + return strcmp($noteB['last-change-date'], $noteA['last-change-date']); + } + ); + break; + } foreach ($notes as &$note) { $diffInDays = intval( @@ -193,8 +212,13 @@ class GuiController extends Controller 'tag' => $this->getPrettyTagName($rawtag), 'rawtag' => $rawtag, 'notes' => $notes, + 'tagUrl' => $this->urlGen->linkToRoute( + 'grauphel.gui.tag', + array('rawtag' => $this->escapeTagForUrl($rawtag)) + ), ) ); + $this->addGlobalVars($res); $this->addNavigation($res, $rawtag); return $res; @@ -219,6 +243,7 @@ class GuiController extends Controller 'username' => $this->user->getUid(), ) ); + $this->addGlobalVars($res); $this->addNavigation($res, null); return $res; @@ -259,6 +284,19 @@ class GuiController extends Controller return $this->database($reset); } + /** + * Register some variables that templates will probably need. + * + * @return void + */ + protected function addGlobalVars(TemplateResponse $res) + { + $params = $res->getParams(); + $params['date'] = \OC::$server->getDateTimeFormatter(); + $params['urlGen'] = \OC::$server->getURLGenerator(); + $res->setParams($params); + } + protected function addNavigation(TemplateResponse $res, $selectedRawtag = null) { $nav = new \OCP\Template('grauphel', 'appnavigation', ''); @@ -288,7 +326,8 @@ class GuiController extends Controller 'name' => $name, 'id' => $rawtag, 'href' => $this->urlGen->linkToRoute( - 'grauphel.gui.tag', array('rawtag' => $rawtag) + 'grauphel.gui.tag', + array('rawtag' => $this->escapeTagForUrl($rawtag)) ), 'selected' => $rawtag == $selectedRawtag, ); @@ -352,5 +391,15 @@ class GuiController extends Controller } return false; } + + protected function escapeTagForUrl($rawtag) + { + return str_replace('/', '%2F', $rawtag); + } + + protected function unescapeTagFromUrl($rawtag) + { + return str_replace('%2F', '/', $rawtag); + } } ?>