highlight untagged category when necessary
[grauphel.git] / lib / search / provider.php
1 <?php
2 /**
3  * Part of grauphel
4  *
5  * PHP version 5
6  *
7  * @category  Tools
8  * @package   Grauphel
9  * @author    Christian Weiske <cweiske@cweiske.de>
10  * @copyright 2014 Christian Weiske
11  * @license   http://www.gnu.org/licenses/agpl.html GNU AGPL v3
12  * @link      http://cweiske.de/grauphel.htm
13  */
14 namespace OCA\Grauphel\Search;
15
16 use \OCA\Grauphel\Lib\NoteStorage;
17
18 /**
19  * Hook for the site-wide owncloud search.
20  *
21  * @category  Tools
22  * @package   Grauphel
23  * @author    Christian Weiske <cweiske@cweiske.de>
24  * @copyright 2014 Christian Weiske
25  * @license   http://www.gnu.org/licenses/agpl.html GNU AGPL v3
26  * @version   Release: @package_version@
27  * @link      http://cweiske.de/grauphel.htm
28  */
29 class Provider extends \OCP\Search\Provider
30 {
31         /**
32          * Search for notes
33          *
34          * @param string $query
35      *
36          * @return array list of \OCA\Grauphel\Search\Note
37          */
38         public function search($query)
39     {
40         $urlGen = \OC::$server->getURLGenerator();
41         $notes  = new NoteStorage($urlGen);
42         $notes->setUsername(\OC_User::getUser());
43
44         $qp = new QueryParser();
45         $rows = $notes->search($qp->parse($query));
46
47         $results = array();
48         foreach ($rows as $row) {
49             $res = new Note();
50             $res->id   = $row['note_guid'];
51             $res->name = htmlspecialchars_decode($row['note_title']);
52             $res->link = $urlGen->linkToRoute(
53                 'grauphel.gui.note', array('guid' => $row['note_guid'])
54             );
55             $results[] = $res;
56         }
57         return $results;
58     }
59 }
60 ?>