nextcloud/search/ajax/search.php

58 lines
1.4 KiB
PHP
Raw Normal View History

2011-07-30 18:42:20 +04:00
<?php
/**
* ownCloud
*
* @author Robin Appelman
* @copyright 2010 Robin Appelman icewind1991@gmail.com
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/
// Check if we are a user
\OC_JSON::checkLoggedIn();
\OC::$server->getSession()->close();
2011-07-30 18:42:20 +04:00
if (isset($_GET['query'])) {
$query = $_GET['query'];
} else {
$query = '';
}
if (isset($_GET['inApps'])) {
$inApps = $_GET['inApps'];
if (is_string($inApps)) {
$inApps = array($inApps);
}
} else {
$inApps = array();
}
2014-12-11 14:58:22 +03:00
if (isset($_GET['page'])) {
$page = (int)$_GET['page'];
} else {
$page = 0;
}
if (isset($_GET['size'])) {
$size = (int)$_GET['size'];
} else {
2014-12-11 18:23:39 +03:00
$size = 30;
2014-12-11 14:58:22 +03:00
}
2012-09-07 17:22:01 +04:00
if($query) {
2014-12-11 14:58:22 +03:00
$result = \OC::$server->getSearch()->search($query, $inApps, $page, $size);
OC_JSON::encodedPrint($result);
2012-10-28 22:28:44 +04:00
}
else {
2011-07-30 18:42:20 +04:00
echo 'false';
}