summaryrefslogtreecommitdiff
path: root/app/Controller/SearchController.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-05-28 11:31:54 -0400
committerFrederic Guillot <fred@kanboard.net>2016-05-28 11:31:54 -0400
commitab48a09f0d674b703467975b376c5ac7352670ae (patch)
tree99fbb0cf719acee8c500622d498bd7f6375b62a1 /app/Controller/SearchController.php
parent82b5b491bec94cb3d40a5820fbef9959435309be (diff)
Rename controllers
Diffstat (limited to 'app/Controller/SearchController.php')
-rw-r--r--app/Controller/SearchController.php67
1 files changed, 67 insertions, 0 deletions
diff --git a/app/Controller/SearchController.php b/app/Controller/SearchController.php
new file mode 100644
index 00000000..88718cf7
--- /dev/null
+++ b/app/Controller/SearchController.php
@@ -0,0 +1,67 @@
+<?php
+
+namespace Kanboard\Controller;
+
+use Kanboard\Filter\TaskProjectsFilter;
+
+/**
+ * Search Controller
+ *
+ * @package Kanboard\Controller
+ * @author Frederic Guillot
+ */
+class SearchController extends BaseController
+{
+ public function index()
+ {
+ $projects = $this->projectUserRole->getProjectsByUser($this->userSession->getId());
+ $search = urldecode($this->request->getStringParam('search'));
+ $nb_tasks = 0;
+
+ $paginator = $this->paginator
+ ->setUrl('SearchController', 'index', array('search' => $search))
+ ->setMax(30)
+ ->setOrder('tasks.id')
+ ->setDirection('DESC');
+
+ if ($search !== '' && ! empty($projects)) {
+ $paginator
+ ->setQuery($this->taskLexer
+ ->build($search)
+ ->withFilter(new TaskProjectsFilter(array_keys($projects)))
+ ->getQuery()
+ )
+ ->calculate();
+
+ $nb_tasks = $paginator->getTotal();
+ }
+
+ $this->response->html($this->helper->layout->app('search/index', array(
+ 'values' => array(
+ 'search' => $search,
+ 'controller' => 'SearchController',
+ 'action' => 'index',
+ ),
+ 'paginator' => $paginator,
+ 'title' => t('Search tasks').($nb_tasks > 0 ? ' ('.$nb_tasks.')' : '')
+ )));
+ }
+
+ public function activity()
+ {
+ $search = urldecode($this->request->getStringParam('search'));
+ $events = $this->helper->projectActivity->searchEvents($search);
+ $nb_events = count($events);
+
+ $this->response->html($this->helper->layout->app('search/activity', array(
+ 'values' => array(
+ 'search' => $search,
+ 'controller' => 'SearchController',
+ 'action' => 'activity',
+ ),
+ 'title' => t('Search in activity stream').($nb_events > 0 ? ' ('.$nb_events.')' : ''),
+ 'nb_events' => $nb_events,
+ 'events' => $events,
+ )));
+ }
+}