DocLink   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 40
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 0

Test Coverage

Coverage 92.31%

Importance

Changes 0
Metric Value
wmc 4
lcom 1
cbo 0
dl 0
loc 40
ccs 12
cts 13
cp 0.9231
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A trimVersion() 0 6 2
A getAdminManualUrl() 0 8 1
1
<?php
2
/**
3
 * @author Victor Dubiniuk <[email protected]>
4
 *
5
 * @copyright Copyright (c) 2015, ownCloud, Inc.
6
 * @license AGPL-3.0
7
 *
8
 * This code is free software: you can redistribute it and/or modify
9
 * it under the terms of the GNU Affero General Public License, version 3,
10
 * as published by the Free Software Foundation.
11
 *
12
 * This program is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
 * GNU Affero General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU Affero General Public License, version 3,
18
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
19
 *
20
 */
21
22
namespace Owncloud\Updater\Utils;
23
24
/**
25
 * Class DocLink
26
 *
27
 * @package Owncloud\Updater\Utils
28
 */
29
class DocLink {
30
31
	const BASE_DOC_URL = 'https://doc.owncloud.org/server';
32
33
	private $version;
34
35
	/**
36
	 * DocLink constructor.
37
	 *
38
	 * @param string $version
39
	 */
40 4
	public function __construct($version) {
41 4
		$this->version = $this->trimVersion($version);
42 4
	}
43
44
	/**
45
	 * Cut everything except Major.Minor
46
	 * @param string $version
47
	 * @return string
48
	 */
49 4
	protected function trimVersion($version){
50 4
		if (preg_match('|^\d+\.\d+|', $version, $matches)>0){
51 4
			return $matches[0];
52
		}
53
		return '';
54
	}
55
56
	/**
57
	 * @param string $relativePart
58
	 * @return string
59
	 */
60 4
	public function getAdminManualUrl($relativePart){
61 4
		return sprintf(
62 4
			'%s/%s/admin_manual/%s',
63 4
			self::BASE_DOC_URL,
64 4
			$this->version,
65 4
			$relativePart
66
		);
67
	}
68
}
69