Completed
Push — some-scrutinizing ( d3de44...c6cac2 )
by Maxence
02:32
created

Sharees::search()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 18
Code Lines 11

Duplication

Lines 0
Ratio 0 %

Importance

Changes 3
Bugs 0 Features 0
Metric Value
c 3
b 0
f 0
dl 0
loc 18
rs 9.4285
cc 2
eloc 11
nc 2
nop 1
1
<?php
2
/**
3
 * Circles - Bring cloud-users closer together.
4
 *
5
 * This file is licensed under the Affero General Public License version 3 or
6
 * later. See the COPYING file.
7
 *
8
 * @author Maxence Lange <[email protected]>
9
 * @copyright 2017
10
 * @license GNU AGPL version 3 or any later version
11
 *
12
 * This program is free software: you can redistribute it and/or modify
13
 * it under the terms of the GNU Affero General Public License as
14
 * published by the Free Software Foundation, either version 3 of the
15
 * License, or (at your option) any later version.
16
 *
17
 * This program is distributed in the hope that it will be useful,
18
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20
 * GNU Affero General Public License for more details.
21
 *
22
 * You should have received a copy of the GNU Affero General Public License
23
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
24
 *
25
 */
26
27
namespace OCA\Circles\Api;
28
29
use OCA\Circles\AppInfo\Application;
30
use OCA\Circles\Model\Circle;
31
use OCA\Circles\Model\Member;
32
use OCP\Share;
33
34
35
class Sharees {
36
37
38
	protected static function getContainer() {
39
		$app = new Application();
40
41
		return $app->getContainer();
42
	}
43
44
	/**
45
	 * returns circles with
46
	 *
47
	 * @param $search
48
	 *
49
	 * @return array<string,array>
50
	 */
51
//	public static function search($search, $limit, $offset) {
0 ignored issues
show
Unused Code Comprehensibility introduced by
58% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
52
	public static function search($search) {
53
		$c = self::getContainer();
54
55
		$data = $c->query('CirclesService')
56
				  ->listCircles(Circle::CIRCLES_ALL, $search, Member::LEVEL_MEMBER);
57
		$result = array(
58
			'exact'   => ['circles'],
59
			'circles' => []
60
		);
61
62
		foreach ($data as $entry) {
63
			self::addResultEntry(
64
				$result, $entry, (strtolower($entry->getName()) === strtolower($search))
65
			);
66
		}
67
68
		return $result;
69
	}
70
71
72
	private static function addResultEntry(& $result, $entry, $exact = false) {
73
74
		$arr = [
75
			'label' => $entry->getName(),
76
			'value' => [
77
				'shareType'  => Share::SHARE_TYPE_CIRCLE,
78
				'circleInfo' => $entry->getInfo(),
79
				'shareWith'  => $entry->getId()
80
			],
81
		];
82
83
		if ($exact) {
84
			$result['exact']['circles'][] = $arr;
85
		} else {
86
			$result['circles'][] = $arr;
87
		}
88
89
	}
90
91
}