RecommendedSites::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
/**
3
 * ownCloud - News
4
 *
5
 * This file is licensed under the Affero General Public License version 3 or
6
 * later. See the COPYING file.
7
 *
8
 * @author Alessandro Cosentino <[email protected]>
9
 * @author Bernhard Posselt <[email protected]>
10
 * @copyright Alessandro Cosentino 2012
11
 * @copyright Bernhard Posselt 2012, 2014
12
 */
13
14
namespace OCA\News\Explore;
15
16
class RecommendedSites {
17
18
    private $directory;
19
20
    /**
21
     * @param string $exploreDir the absolute path to where the recommendation
22
     * config files lie without a trailing slash
23
     */
24
    public function __construct($exploreDir) {
25
        $this->directory = $exploreDir;
26
    }
27
28
29
    public function forLanguage($languageCode) {
30
        $file = $this->directory . '/feeds.' . $languageCode . '.json';
31
32
        if (file_exists($file)) {
33
            return json_decode(file_get_contents($file), true);
34
        } else {
35
            $msg = 'No recommended sites found for language code ' .
36
                $languageCode;
37
            throw new RecommendedSiteNotFoundException($msg);
38
        }
39
    }
40
41
42
}
43