summaryrefslogtreecommitdiffstats
path: root/config/appconfig.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-07-23 21:24:54 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2016-07-23 21:24:54 +0200
commit004fcbbcc7609ca83807f2e38967ef54f469bf72 (patch)
tree49eb99b4ea92b2045793fc567f719b31ec7f9042 /config/appconfig.php
parent60abc0ed4438c9b6fda245b0dc33cb483bc2aeaf (diff)
Move to new directory structure
Diffstat (limited to 'config/appconfig.php')
-rw-r--r--config/appconfig.php137
1 files changed, 0 insertions, 137 deletions
diff --git a/config/appconfig.php b/config/appconfig.php
deleted file mode 100644
index 55dcd6d1a..000000000
--- a/config/appconfig.php
+++ /dev/null
@@ -1,137 +0,0 @@
-<?php
-/**
- * ownCloud - News
- *
- * This file is licensed under the Affero General Public License version 3 or
- * later. See the COPYING file.
- *
- * @author Alessandro Cosentino <cosenal@gmail.com>
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright Alessandro Cosentino 2012
- * @copyright Bernhard Posselt 2012, 2014
- */
-
-namespace OCA\News\Config;
-
-use SimpleXMLElement;
-
-use OCP\INavigationManager;
-use OCP\IURLGenerator;
-use OCP\Util;
-use OCP\App;
-
-// Used to parse app.json file, should be in core at some point
-class AppConfig {
-
- private $config;
- private $navigationManager;
- private $urlGenerator;
-
- /**
- * TODO: External deps that are needed:
- * - add jobs
- * - connect to hooks
- */
- public function __construct(INavigationManager $navigationManager,
- IURLGenerator $urlGenerator) {
- $this->navigationManager = $navigationManager;
- $this->urlGenerator = $urlGenerator;
- $this->config = [];
- }
-
-
- /**
- * Parse an xml config
- */
- private function parseConfig($string) {
- // no need to worry about XXE since local file
- $xml = simplexml_load_string($string, 'SimpleXMLElement');
- return json_decode(json_encode((array)$xml), true);
- }
-
-
- /**
- * @param string|array $data path to the config file or an array with the
- * config
- */
- public function loadConfig($data) {
- if(is_array($data)) {
- $this->config = $data;
- } else {
- $this->config = $this->parseConfig($data);
- }
- }
-
-
- /**
- * @param string $key if given returns the value of the config at index $key
- * @return array|mixed the config
- */
- public function getConfig($key=null) {
- // FIXME: is this function interface a good idea?
- if($key !== null) {
- return $this->config[$key];
- } else {
- return $this->config;
- }
- }
-
-
- /**
- * Registers all config options
- */
- public function registerAll() {
- $this->registerNavigation();
- $this->registerHooks();
- // IJob API is fucked up, so silence the code checker
- $class = '\OCP\BackgroundJob';
- $class::addRegularTask($this->config['cron']['job'], 'run');
- App::registerAdmin($this->config['id'], $this->config['admin']);
- }
-
-
- /**
- * Parses the navigation and creates a navigation entry if needed
- */
- public function registerNavigation() {
- if (array_key_exists('navigation', $this->config)) {
- $this->navigationManager->add(function () {
- $nav =& $this->config['navigation'];
-
- $navConfig = [
- 'id' => $this->config['id'],
- 'order' => $nav['order'],
- 'name' => $nav['name']
- ];
-
- $navConfig['href'] = $this->urlGenerator->linkToRoute(
- $nav['route']
- );
- $navConfig['icon'] = $this->urlGenerator->imagePath(
- $this->config['id'], $nav['icon']
- );
-
- return $navConfig;
- });
- }
- }
-
-
- /**
- * Registers all hooks in the config
- */
- public function registerHooks() {
- // FIXME: this is temporarily static because core emitters are not
- // future proof, therefore legacy code in here
- foreach ($this->config['hooks'] as $hook) {
- $listener = explode('::', $hook['channel']);
- $reaction = explode('::', $hook['subscriber']);
-
- // config is written like HookNamespace::method => Class::method
- Util::connectHook($listener[0], $listener[1], $reaction[0],
- $reaction[1]);
- }
- }
-
-
-}