Completed
Push — master ( 5cbfab...694e94 )
by Julius
01:50
created

Util::getAppOrder()   A

Complexity

Conditions 3
Paths 2

Size

Total Lines 10
Code Lines 8

Duplication

Lines 10
Ratio 100 %

Code Coverage

Tests 8
CRAP Score 3

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 10
loc 10
ccs 8
cts 8
cp 1
rs 9.4285
cc 3
eloc 8
nc 2
nop 0
crap 3
1
<?php
2
/**
3
 * @copyright Copyright (c) 2016 Julius Härtl <[email protected]>
4
 *
5
 * @author Julius Härtl <[email protected]>
6
 *
7
 * @license GNU AGPL version 3 or any later version
8
 *
9
 *  This program is free software: you can redistribute it and/or modify
10
 *  it under the terms of the GNU Affero General Public License as
11
 *  published by the Free Software Foundation, either version 3 of the
12
 *  License, or (at your option) any later version.
13
 *
14
 *  This program is distributed in the hope that it will be useful,
15
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 *  GNU Affero General Public License for more details.
18
 *
19
 *  You should have received a copy of the GNU Affero General Public License
20
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
21
 *
22
 */
23
24
namespace OCA\AppOrder;
25
26
use OCA\AppOrder\Service\ConfigService;
27
28
class Util {
29
30
	private $userId;
31
	private $appConfig;
32
33 10
	public function __construct(ConfigService $appConfig, $userId) {
34 10
		$this->userId = $userId;
35 10
		$this->appConfig = $appConfig;
36 10
	}
37
38 3 View Code Duplication
	public function getAppOrder() {
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
39 3
		$order_user = $this->appConfig->getUserValue('order', $this->userId);
40 3
		$order_default = $this->appConfig->getAppValue('order');
41 3
		if ($order_user !== null && $order_user !== "") {
42 2
			$order = $order_user;
43 2
		} else {
44 1
			$order = $order_default;
45
		}
46 3
		return $order;
47
	}
48
49 3
	public function matchOrder($nav, $order) {
50 3
		$nav_tmp = array();
51 3
		$result = array();
52 3
		foreach ($nav as $app) {
53 3
			$nav_tmp[$app['href']] = $app;
54 3
		}
55 3
		if(is_array($order)) {
56 3
			foreach ($order as $app) {
57 3
				if (array_key_exists($app, $nav_tmp)) {
58 3
					$result[$app] = $nav_tmp[$app];
59 3
				}
60 3
			}
61 3
		}
62 3
		foreach ($nav as $app) {
63 3
			if (!array_key_exists($app['href'], $result)) {
64 3
				$result[$app['href']] = $app;
65 3
			}
66 3
		}
67 3
		return $result;
68
	}
69
70 1 View Code Duplication
	public function getAppHidden() {
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
71 1
		$hidden_user = $this->appConfig->getUserValue('hidden', $this->userId);
72 1
		$hidden_default = $this->appConfig->getAppValue('hidden');
73 1
		if ($hidden_user !== null && $hidden_user !== "") {
74 1
			$hidden = $hidden_user;
75 1
		} else {
76
			$hidden = $hidden_default;
77
		}
78 1
		return $hidden;
79
	}
80
81
}
82