mirror of
https://github.com/mbirth/tcl_update_db.git
synced 2024-11-09 23:06:45 +00:00
Started parser class.
This commit is contained in:
parent
ddb5c35ccd
commit
509cf528d7
23
index.php
23
index.php
@ -1,28 +1,33 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
require_once 'lib/autoloader.php';
|
||||||
|
|
||||||
|
use \TclUpdates\XmlParser;
|
||||||
|
|
||||||
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
||||||
$input_xml = file_get_contents('php://input', false, NULL, -1, 8192); // read max 8 KiB
|
$input_xml = file_get_contents('php://input', false, null, -1, 8192); // read max 8 KiB
|
||||||
if (strlen($input_xml) >= 8192) {
|
if (strlen($input_xml) >= 8192) {
|
||||||
// Max length, probably even longer, definitely no XML
|
// Max length, probably even longer, definitely no data we want
|
||||||
http_response_code(413); // "Payload too large"
|
http_response_code(413); // "Payload too large"
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
$dom = new DOMDocument();
|
$xp = new XmlParser();
|
||||||
$load_ok = $dom->loadXML($input_xml, LIBXML_NOENT);
|
$load_ok = $xp->loadXmlFromString($input_xml);
|
||||||
if (!$load_ok || $dom->childNodes->length < 1) {
|
if (!$load_ok) {
|
||||||
// XML could not be parsed - invalid or no XML
|
// XML could not be parsed - invalid or no XML
|
||||||
http_response_code(406); // "Not acceptable"
|
http_response_code(406); // "Not acceptable"
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
$root_node = $dom->childNodes->item(0);
|
if (!$xp->validateGOTU()) {
|
||||||
if ($root_node->nodeName != 'GOTU') {
|
// No root node or root node isn't <GOTU>, so no update XML
|
||||||
// Root node isn't <GOTU>, so no update XML
|
|
||||||
http_response_code(412); // "Precondition failed"
|
http_response_code(412); // "Precondition failed"
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
// ### At this point we can be relatively sure to have the XML we want
|
// ### At this point we can be relatively sure to have the XML we want
|
||||||
echo "Input length is " . strlen($input_xml) . " Bytes." . PHP_EOL;
|
echo "Input length is " . strlen($input_xml) . " Bytes." . PHP_EOL;
|
||||||
echo $input_xml . PHP_EOL;
|
#echo $input_xml . PHP_EOL;
|
||||||
|
|
||||||
|
|
||||||
// TODO: Check if it's XML
|
// TODO: Check if it's XML
|
||||||
// If so: Store a copy for re-parsing (or to print out and hang up on a wall)
|
// If so: Store a copy for re-parsing (or to print out and hang up on a wall)
|
||||||
// Then parse XML into database
|
// Then parse XML into database
|
||||||
|
31
lib/TclUpdates/XmlParser.php
Executable file
31
lib/TclUpdates/XmlParser.php
Executable file
@ -0,0 +1,31 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace TclUpdates;
|
||||||
|
|
||||||
|
class XmlParser
|
||||||
|
{
|
||||||
|
private $dom;
|
||||||
|
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
$this->dom = new \DOMDocument();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function loadXMLFromString($xml)
|
||||||
|
{
|
||||||
|
$xml_ok = $this->dom->loadXML($xml, LIBXML_NOENT);
|
||||||
|
return $xml_ok;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function validateGOTU()
|
||||||
|
{
|
||||||
|
if ($this->dom->childNodes->length < 1) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
$root_node = $this->dom->childNodes->item(0);
|
||||||
|
if ($root_node->nodeName != 'GOTU') {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
6
lib/autoloader.php
Executable file
6
lib/autoloader.php
Executable file
@ -0,0 +1,6 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
set_include_path(__DIR__ . PATH_SEPARATOR . get_include_path());
|
||||||
|
|
||||||
|
// PSR-4
|
||||||
|
spl_autoload_register();
|
Loading…
Reference in New Issue
Block a user