1
0
mirror of https://github.com/mbirth/tcl_update_db.git synced 2024-09-20 01:03:26 +01:00
tcl_update_db/index.php
2017-12-16 23:09:58 +01:00

52 lines
1.6 KiB
PHP

<?php
require_once __DIR__ . '/lib/autoloader.php';
use \TclUpdates\GotuObject;
use \TclUpdates\SQLiteWriter;
use \TclUpdates\XmlParser;
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$input_xml = file_get_contents('php://input', false, null, -1, 8192); // read max 8 KiB
if (strlen($input_xml) >= 8192) {
// Max length, probably even longer, definitely no data we want
http_response_code(413); // "Payload too large"
exit;
}
$xp = new XmlParser();
$load_ok = $xp->loadXmlFromString($input_xml);
if (!$load_ok) {
// XML could not be parsed - invalid or no XML
http_response_code(406); // "Not acceptable"
exit;
}
if (!$xp->validateGOTU()) {
// No root node or root node isn't <GOTU>, so no update XML
http_response_code(412); // "Precondition failed"
exit;
}
// ### 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_xml . PHP_EOL;
// Write backup copy (for maybe re-parsing later)
$bkup_dir = __DIR__ . '/data/';
if (!is_dir($bkup_dir)) {
mkdir($bkup_dir);
}
$bkup_filename = $bkup_dir . sprintf('%f-%04x.xml', microtime(true), rand(0, 65535));
file_put_contents($bkup_filename, $input_xml);
// Parse XML into database
$g = GotuObject::fromXmlParser($xp);
if ($g->tv) {
$sqlw = new SQLiteWriter();
$result = $sqlw->addGotu($g, $file_date);
// I don't care if we can use the data or not. Maybe we can use it later (backup copy).
}
exit;
}
require_once 'index_main.php';