From 676b8dd18742875ae07827792ed88d2b5bb3afb7 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Wed, 19 Nov 2014 15:54:32 +0100 Subject: first stab at recommended sites --- explore/recommendedsites.php | 45 ++++++++++++++++++++++++++++++++++++++++++++ explore/sites.en.json | 19 +++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 explore/recommendedsites.php create mode 100644 explore/sites.en.json (limited to 'explore') diff --git a/explore/recommendedsites.php b/explore/recommendedsites.php new file mode 100644 index 000000000..7d63a8c60 --- /dev/null +++ b/explore/recommendedsites.php @@ -0,0 +1,45 @@ + + * @author Bernhard Posselt + * @copyright Alessandro Cosentino 2012 + * @copyright Bernhard Posselt 2012, 2014 + */ + +namespace OCA\News\Explore; + +class RecommendedSites { + + private $directory; + + /** + * @param string $directory the absolute path to where the recommendation + * config files lie without a trailing slash + */ + public function __construct($directory) { + $this->directory = $directory; + } + + + public function forLanguage($languageCode, $default='en') { + $file = $this->directory . '/sites.' . $languageCode . '.json'; + + if (!file_exists($file)) { + $file = $this->directory . '/sites.' . $default . '.json'; + } + + if (file_exists($file)) { + return json_decode(file_get_contents($file), true); + } else { + return []; + } + + } + + +} \ No newline at end of file diff --git a/explore/sites.en.json b/explore/sites.en.json new file mode 100644 index 000000000..2fec02f5b --- /dev/null +++ b/explore/sites.en.json @@ -0,0 +1,19 @@ +{ + "Tech": [ + { + "title": "ownCloud Planet", + "favicon": "http://owncloud.org/wp-content/themes/owncloudorgnew/assets/img/common/favicon.png", + "url": "http://owncloud.org/news/", + "description": "ownCloud Planet is a blog feed aggregator", + "image": "http://tuxanddroid.de/wp-content/uploads/2013/08/owncloud_logo.png", + "votes": 1000 + }, + { + "title": "Slashdot", + "favicon": "http://slashdot.org/favicon.ico", + "url": "http://slashdot.org", + "description": "Slashdot: News for nerds, stuff that matters", + "votes": 500 + } + ] +} \ No newline at end of file -- cgit v1.2.3