Mercurial > hg > webaudioevaluationtool
diff save.php @ 748:b9785aaab2a4
Bug #1349: PHP returns XML confirmation or error and message. Core responds. Bug #1449 not a bug
author | Nicholas Jillings <nicholas.jillings@eecs.qmul.ac.uk> |
---|---|
date | Fri, 20 Nov 2015 15:39:01 +0000 |
parents | c64529e5dee4 |
children | b448ed356355 888292c88c33 |
line wrap: on
line diff
--- a/save.php Wed Nov 18 11:08:52 2015 +0100 +++ b/save.php Fri Nov 20 15:39:01 2015 +0000 @@ -1,9 +1,28 @@ <?php header('Access-Control-Allow-Origin: *'); + header("Content-type: text/xml"); $postText = file_get_contents('php://input'); $datetime = date('ymdHis'); $xmlfile = "save".$datetime.".xml"; $fileHandle = fopen("saves/".$xmlfile, 'w'); - fwrite($fileHandle, $postText); + if ($fileHandle == FALSE) + { + // Filehandle failed + $xml = '<response state="error"><message>Could not open file</message></response>'; + echo $xml; + return; + } + $wbytes = fwrite($fileHandle, $postText); + if ($wbytes == FALSE) + { + // FileWrite failed + $xml = '<response state="error"><message>Could not write file "saves/'.$xmlfile.'"</message></response>'; + echo $xml; + return; + } fclose($fileHandle); + + // Return JSON confirmation data + $xml = '<response state="OK"><message>OK</message><file bytes="'.$wbytes.'">"saves/'.$xmlfile.'"</file></response>'; + echo $xml; ?> \ No newline at end of file