Add token management page (only shows tokens for now)
[grauphel.git] / controller / guicontroller.php
index b07ba45679051911653d9845fe9ce28b1de4161d..3c9c6f1f2a99b5d18d3a430dfbe33beceeaa20a1 100644 (file)
@@ -15,6 +15,7 @@ namespace OCA\Grauphel\Controller;
 
 use \OCP\AppFramework\Controller;
 use \OCP\AppFramework\Http\TemplateResponse;
+use \OCA\Grauphel\Lib\TokenStorage;
 
 /**
  * Owncloud frontend
@@ -83,7 +84,7 @@ class GuiController extends Controller
         $res = new TemplateResponse('grauphel', 'tag');
         $res->setParams(
             array(
-                'tag'    => substr($rawtag, 16),
+                'tag'    => $this->getPrettyTagName($rawtag),
                 'rawtag' => $rawtag,
                 'notes'  => $notes,
             )
@@ -93,6 +94,28 @@ class GuiController extends Controller
         return $res;
     }
 
+    /**
+     * Show access tokens
+     *
+     * @NoAdminRequired
+     * @NoCSRFRequired
+     */
+    public function tokens()
+    {
+        $tokens = new TokenStorage();
+        $res = new TemplateResponse('grauphel', 'tokens');
+        $res->setParams(
+            array(
+                'tokens' => $tokens->loadForUser(
+                    $this->user->getUid(), 'access'
+                )
+            )
+        );
+        $this->addNavigation($res, $rawtag);
+
+        return $res;
+    }
+
     protected function addNavigation(TemplateResponse $res, $selectedRawtag = null)
     {
         $nav = new \OCP\Template('grauphel', 'appnavigation', '');
@@ -108,11 +131,17 @@ class GuiController extends Controller
 
         $rawtags = $this->getNotes()->getTags();
         sort($rawtags);
+        array_unshift(
+            $rawtags,
+            'grauphel:special:all', 'grauphel:special:untagged'
+        );
+
         $tags = array();
         foreach ($rawtags as $rawtag) {
-            if (substr($rawtag, 0, 16) == 'system:notebook:') {
+            $name = $this->getPrettyTagName($rawtag);
+            if ($name !== false) {
                 $tags[] = array(
-                    'name' => substr($rawtag, 16),
+                    'name' => $name,
                     'id'   => $rawtag,
                     'href' => $this->urlGen->linkToRoute(
                         'grauphel.gui.tag', array('rawtag' => $rawtag)
@@ -168,5 +197,15 @@ class GuiController extends Controller
         $notes->setUsername($username);
         return $notes;
     }
+
+    protected function getPrettyTagName($rawtag)
+    {
+        if (substr($rawtag, 0, 16) == 'system:notebook:') {
+            return substr($rawtag, 16);
+        } else if (substr($rawtag, 0, 17) == 'grauphel:special:') {
+            return '*' . substr($rawtag, 17) . '*';
+        }
+        return false;
+    }
 }
 ?>