view save.php @ 543:f81c46b294a9 Dev_main

Bug #1607, #1608 and #1610 fixes.
author Nicholas Jillings <n.g.r.jillings@se14.qmul.ac.uk>
date Mon, 22 Feb 2016 14:38:45 +0000
parents a95d323a911e
children 4cc5bc731a3d
line wrap: on
line source
<?php
	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;
?>