diff save.php @ 1303:ade3acb0cee3

Added score_parse.php separators for CSV
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Tue, 23 Feb 2016 17:11:28 +0000
parents
children 124e6c702845
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/save.php	Tue Feb 23 17:11:28 2016 +0000
@@ -0,0 +1,36 @@
+<?php
+    try{
+        date_default_timezone_get();
+    }
+    catch(Exception $e){
+        date_default_timezone_set('UTC'); // Sets to UTC if not specified anywhere in .ini
+    }
+	header('Access-Control-Allow-Origin: *');
+	header("Content-type: text/xml");
+	error_reporting(0);
+	$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;
+?>