Skip to content

Instantly share code, notes, and snippets.

@ken-muturi
Last active September 12, 2019 13:37
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ken-muturi/0f880e2cb1d19558e94ab05fc08797a6 to your computer and use it in GitHub Desktop.
Save ken-muturi/0f880e2cb1d19558e94ab05fc08797a6 to your computer and use it in GitHub Desktop.
ODK Submission Controller
<?php
require("../config.php");
require("../util.php");
if ( ! empty($_FILES) )
{
header('Server: Apache-Coyote/1.1');
header('Content-Type: application/xml;charset=UTF-8');
header( "Date: ".date('r'));
header('Content-Length: 1000000');
header('X-OpenRosa-Version: 1.0');
header('X-OpenRosa-Accept-Content-Length: 1048576000');
foreach( $_FILES as $file)
{
$file_name = 'uploads/uploaded_files/'. $file['name'];
move_uploaded_file( $file['tmp_name'], $file_name);
if(substr(strrchr($file_name, '.'), 1) == 'xml')
{
$postFields['xml_submission_file'] ='@'.$file_name;
}
else
{
$postFields['datafile'.$i]='@'.$file_name.';type='. $file['type'];
}
}
file_put_contents('uploads/uploaded_files/submission.json', json_encode($_POST) );
http_response_code(201);
// echo '<OpenRosaResponse xmlns="http://openrosa.org/http/response">
// <message nature="submit_success">Thanks</message>
// </OpenRosaResponse> ';
echo util::printResponse('Thanks');
exit();
}
else
{
// header('Content-Type: text/xml; charset=utf-8');
// header('X-OpenRosa-Version:1.0');
$data = Util::http_digest_parse($_SERVER['PHP_AUTH_DIGEST']);
if ( empty($data) || ! isset($users[$data['username']]))
{
// before credentials
http_response_code( 401 );
header("HTTP/1.1 401 Unauthorized");
header('WWW-Authenticate: Digest realm="'. $realm .'",qop="auth",nonce="'.uniqid().'",opaque="'. md5($realm) .'"');
header('"HTTP_X_OPENROSA_VERSION":"1.0"');
header('X-OpenRosa-Accept-Content-Length: 2000000');
header('Content-Length: 0');
}
else
{ // after credentials
header("Server: Apache-Coyote/1.1");
header("X-OpenRosa-Version: 1.0");
header("X-OpenRosa-Accept-Content-Length: 1048576000");
header( "Date: ".date('r'));
if( Util::check_user_pass( $data, $users) )
{
header("Location:". site_url('submission'), true, 204);
}
else
{
http_response_code(401);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment