circles/lib/Api/Sharees.php
Maxence Lange cd81b7970d events
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
2021-05-03 11:33:48 -01:00

113 lines
2.7 KiB
PHP

<?php
/**
* Circles - Bring cloud-users closer together.
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
* @author Maxence Lange <maxence@artificial-owl.com>
* @copyright 2017
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* 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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OCA\Circles\Api;
use OCA\Circles\AppInfo\Application;
use OCA\Circles\Model\DeprecatedCircle;
use OCA\Circles\Model\DeprecatedMember;
use OCA\Circles\Service\CirclesService;
use OCA\Circles\Service\MiscService;
use OCP\Share;
/**
* ############### WARNING #################
* ###
* ### This file is needed and used by Nextcloud 12 and lower.
* ###
*
* @package OCA\Circles\Api
*/
class Sharees {
protected static function getContainer() {
$app = \OC::$server->query(Application::class);
return $app->getContainer();
}
/**
* returns circles with
*
* @param $search
*
* @return array<string,array>
*/
// public static function search($search, $limit, $offset) {
public static function search($search) {
$c = self::getContainer();
$userId = \OC::$server->getUserSession()
->getUser()
->getUID();
$data = $c->query(CirclesService::class)
->listCircles($userId, DeprecatedCircle::CIRCLES_ALL, $search, DeprecatedMember::LEVEL_MEMBER);
$result = array(
'exact' => ['circles'],
'circles' => []
);
foreach ($data as $entry) {
self::addResultEntry(
$result, $entry, (strtolower($entry->getName()) === strtolower($search))
);
}
return $result;
}
/**
* @param $result
* @param DeprecatedCircle $entry
* @param bool $exact
*
*/
private static function addResultEntry(&$result, $entry, $exact = false) {
$arr = [
'label' => $entry->getName(),
'value' => [
'shareType' => Share::SHARE_TYPE_CIRCLE,
'shareWith' => $entry->getUniqueId(),
'circleInfo' => $entry->getInfo(),
'circleOwner' => $entry->getOwner()
->getCachedName()
],
];
if ($exact) {
$result['exact']['circles'][] = $arr;
} else {
$result['circles'][] = $arr;
}
}
}