nextcloud/lib/private/app/infoparser.php

85 lines
1.9 KiB
PHP
Raw Normal View History

<?php
/**
* @author Thomas Müller
* @copyright 2014 Thomas Müller deepdiver@owncloud.com
*
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace OC\App;
use OCP\IURLGenerator;
class InfoParser {
2014-11-25 12:22:06 +03:00
/**
* @var \OC\HTTPHelper
*/
private $httpHelper;
/**
* @var IURLGenerator
*/
private $urlGenerator;
/**
* @param \OC\HTTPHelper $httpHelper
* @param IURLGenerator $urlGenerator
*/
public function __construct(\OC\HTTPHelper $httpHelper, IURLGenerator $urlGenerator) {
$this->httpHelper = $httpHelper;
$this->urlGenerator = $urlGenerator;
}
/**
2014-11-25 12:22:06 +03:00
* @param string $file the xml file to be loaded
* @return null|array where null is an indicator for an error
*/
public function parse($file) {
if (!file_exists($file)) {
return null;
}
2014-11-25 12:22:06 +03:00
$loadEntities = libxml_disable_entity_loader(false);
$xml = @simplexml_load_file($file);
libxml_disable_entity_loader($loadEntities);
if ($xml == false) {
return null;
}
2014-11-24 19:26:07 +03:00
$array = json_decode(json_encode((array)$xml), TRUE);
if (is_null($array)) {
return null;
}
2014-11-24 19:26:07 +03:00
if (!array_key_exists('info', $array)) {
$array['info'] = array();
}
if (!array_key_exists('remote', $array)) {
$array['remote'] = array();
}
if (!array_key_exists('public', $array)) {
$array['public'] = array();
}
if (array_key_exists('documentation', $array)) {
foreach ($array['documentation'] as $key => $url) {
// If it is not an absolute URL we assume it is a key
// i.e. admin-ldap will get converted to go.php?to=admin-ldap
if (!$this->httpHelper->isHTTPURL($url)) {
$url = $this->urlGenerator->linkToDocs($url);
}
2014-11-25 12:22:06 +03:00
$array['documentation'][$key] = $url;
2014-11-24 19:26:07 +03:00
}
}
if (array_key_exists('types', $array)) {
foreach ($array['types'] as $type => $v) {
unset($array['types'][$type]);
$array['types'][] = $type;
}
}
2014-11-24 19:26:07 +03:00
return $array;
}
}