forked from phpsysinfo/phpsysinfo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xml.php
65 lines (61 loc) · 1.98 KB
/
xml.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
header('Access-Control-Allow-Origin: *');
/**
* generate the xml
*
* PHP version 5
*
* @category PHP
* @package PSI_XML
* @author Michael Cramer <BigMichi1@users.sourceforge.net>
* @copyright 2009 phpSysInfo
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @version SVN: $Id: xml.php 614 2012-07-28 09:02:59Z jacky672 $
* @link http://phpsysinfo.sourceforge.net
*/
/**
* application root path
*
* @var string
*/
define('APP_ROOT', dirname(__FILE__));
/**
* internal xml or external
* external is needed when running in static mode
*
* @var boolean
*/
define('PSI_INTERNAL_XML', true);
require_once APP_ROOT.'/includes/autoloader.inc.php';
// check what xml part should be generated
if (isset($_GET['plugin'])) {
if ((trim($_GET['plugin'])!=="") && !preg_match('/[^A-Za-z]/', $_GET['plugin'])) {
$plugin = strtolower($_GET['plugin']);
if ($plugin == "complete") {
$output = new WebpageXML(true, null);
} else {
$output = new WebpageXML(false, $plugin);
}
} else {
unset($output);
}
} else {
$output = new WebpageXML(false, null);
}
// if $output is correct generate output in proper type
if (isset($output) && is_object($output)) {
if (isset($_GET['json']) || isset($_GET['jsonp'])) {
if (version_compare("5.2", PHP_VERSION, ">")) {
echo '<Error Message="PHP 5.2 or greater is required!" Function="ERROR"/>';
} else {
if (defined('PSI_JSON_ISSUE') && (PSI_JSON_ISSUE)) {
$json = json_encode(simplexml_load_string(str_replace(">", ">\n", $output->getXMLString()))); // solving json_encode issue
} else {
$json = json_encode(simplexml_load_string($output->getXMLString()));
}
echo isset($_GET['jsonp']) ? (!preg_match('/[^A-Za-z0-9_\?]/', $_GET['callback'])?$_GET['callback']:'') . '('.$json.')' : $json;
}
} else {
$output->run();
}
}