5b42bb70f9c6c6ce1e0b5864c7cf59d04cd999a6
[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         $rows = $notes->search($query);
44
45         $results = array();
46         foreach ($rows as $row) {
47             $res = new Note();
48             $res->id   = $row['note_guid'];
49             $res->name = $row['note_title'];
50             $res->link = $urlGen->linkToRoute(
51                 'grauphel.gui.note', array('guid' => $row['note_guid'])
52             );
53             $results[] = $res;
54         }
55         return $results;
56     }
57 }
58 ?>