Completed
Push — master ( 2d89ff...5cbfab )
by Julius
01:31
created

Util::getAppOrder()   A

Complexity

Conditions 3
Paths 2

Size

Total Lines 10
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 8
CRAP Score 3

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
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 8
	public function __construct(ConfigService $appConfig, $userId) {
34 8
		$this->userId = $userId;
35 8
		$this->appConfig = $appConfig;
36 8
	}
37
38 3
	public function getAppOrder() {
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
}