2011-07-30 18:42:20 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program 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, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2011-07-30 18:42:20 +04:00
|
|
|
// Check if we are a user
|
2015-01-10 02:30:14 +03:00
|
|
|
\OCP\JSON::checkLoggedIn();
|
|
|
|
\OCP\JSON::callCheck();
|
2014-10-29 12:28:09 +03:00
|
|
|
\OC::$server->getSession()->close();
|
2011-07-30 18:42:20 +04:00
|
|
|
|
2014-12-02 19:31:04 +03: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 {
|
2014-12-17 20:49:39 +03:00
|
|
|
$page = 1;
|
2014-12-11 14:58:22 +03:00
|
|
|
}
|
|
|
|
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-17 20:49:39 +03:00
|
|
|
$result = \OC::$server->getSearch()->searchPaged($query, $inApps, $page, $size);
|
2011-09-24 00:22:59 +04:00
|
|
|
OC_JSON::encodedPrint($result);
|
2012-10-28 22:28:44 +04:00
|
|
|
}
|
|
|
|
else {
|
2011-07-30 18:42:20 +04:00
|
|
|
echo 'false';
|
|
|
|
}
|