diff save.php @ 763:519baf8648a9

APE: Each slider now a JS object to ease metric tracking. Resize function fixed.
author Nicholas Jillings <nicholas.jillings@eecs.qmul.ac.uk>
date Tue, 08 Dec 2015 17:15:34 +0000
parents
children 2647dd909229 b5bf2f57187c 9ee921c8cdd3
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/save.php	Tue Dec 08 17:15:34 2015 +0000
@@ -0,0 +1,29 @@
+<?php
+	header('Access-Control-Allow-Origin: *');
+	header("Content-type: text/xml");
+	$postText = file_get_contents('php://input');
+	$sha1_hash = sha1($postText);
+	$datetime = date('ymdHis');
+	$xmlfile = "save".$datetime."-".$sha1_hash.".xml";
+	$fileHandle = fopen("saves/".$xmlfile, 'w');
+	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