exists()) die($LANG['session_expired']."\n"); $lat = $_POST["lat"]; $lon = $_POST["lon"]; $time = $_POST["time"]; $speed = isset($_POST["spd"]) ? $_POST["spd"] : null; $altitude = isset($_POST["alt"]) ? $_POST["alt"] : null; $accuracy = isset($_POST["acc"]) ? $_POST["acc"] : null; $provider = isset($_POST["prv"]) ? $_POST["prv"] : null; // The location data object contains the sharing interval (i), duration (d) // and a location list (l). Each entry in the location list contains a // latitude, longitude, timestamp, provider, accuracy and speed, in that // order, as an array. $point = [$lat, $lon, $time, $provider, $accuracy, $speed, $altitude]; if ($session->isEncrypted()) { // End-to-end encrypted connections also have an IV field used to decrypt // the data fields. requirePOST("iv"); $iv = $_POST["iv"]; // The IV field is prepended to the array to send to the client. array_unshift($point , $iv); } else { // Perform input validation if (floatval($lat) < -90 || floatval($lat) > 90 || floatval($lon) < -180 || floatval($lon) > 180) die($LANG['location_invalid']."\n"); } $session->addPoint($point)->save(); if ($session->hasExpired()) { echo $LANG['session_expired']."\n"; } else { echo "OK\n".getConfig("public_url")."?%s\n".implode(",", $session->getTargetIDs())."\n"; }