2013-06-19 13:27:14 +02:00
|
|
|
<?php
|
2017-01-30 21:36:44 +01:00
|
|
|
/* μlogger
|
2013-06-19 13:27:14 +02:00
|
|
|
*
|
2017-01-30 21:36:44 +01:00
|
|
|
* Copyright(C) 2017 Bartek Fabiszewski (www.fabiszewski.net)
|
2013-06-19 13:27:14 +02:00
|
|
|
*
|
|
|
|
* This is free software; you can redistribute it and/or modify it under
|
2017-04-07 00:05:28 +02:00
|
|
|
* the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2013-06-19 13:27:14 +02:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
2017-04-07 00:05:28 +02:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2013-06-19 13:27:14 +02:00
|
|
|
*/
|
2017-04-07 00:05:28 +02:00
|
|
|
|
2013-06-19 13:27:14 +02:00
|
|
|
require_once("auth.php");
|
|
|
|
|
|
|
|
$userid = ((isset($_REQUEST["userid"]) && is_numeric($_REQUEST["userid"])) ? $_REQUEST["userid"] : 0);
|
|
|
|
$trackid = ((isset($_REQUEST["trackid"]) && is_numeric($_REQUEST["trackid"])) ? $_REQUEST["trackid"] : 0);
|
|
|
|
|
|
|
|
function haversine_distance($lat1, $lon1, $lat2, $lon2) {
|
|
|
|
$lat1 = deg2rad($lat1);
|
|
|
|
$lon1 = deg2rad($lon1);
|
|
|
|
$lat2 = deg2rad($lat2);
|
|
|
|
$lon2 = deg2rad($lon2);
|
|
|
|
$latD = $lat2 - $lat1;
|
|
|
|
$lonD = $lon2 - $lon1;
|
2017-01-30 23:46:25 +01:00
|
|
|
$bearing = 2*asin(sqrt(pow(sin($latD/2),2)+cos($lat1)*cos($lat2)*pow(sin($lonD/2),2)));
|
|
|
|
return $bearing * 6371000;
|
2013-06-19 13:27:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($userid) {
|
|
|
|
if ($trackid) {
|
|
|
|
// get all track data
|
2017-01-30 21:36:44 +01:00
|
|
|
$query = $mysqli->prepare("SELECT p.id, p.latitude, p.longitude, p.altitude, p.speed, p.bearing, p.time, p.accuracy, p.comment, u.login, t.name, t.id
|
|
|
|
FROM positions p
|
|
|
|
LEFT JOIN users u ON (p.user_id=u.id)
|
|
|
|
LEFT JOIN tracks t ON (p.track_id=t.id)
|
|
|
|
WHERE p.user_id=? AND p.track_id=?
|
|
|
|
ORDER BY p.time");
|
2013-06-19 13:27:14 +02:00
|
|
|
$query->bind_param('ii', $userid, $trackid);
|
2017-01-30 21:36:44 +01:00
|
|
|
} else {
|
2013-06-19 13:27:14 +02:00
|
|
|
// get data only for latest point
|
2017-01-30 21:36:44 +01:00
|
|
|
$query = $mysqli->prepare("SELECT p.id, p.latitude, p.longitude, p.altitude, p.speed, p.bearing, p.time, p.accuracy, p.comment, u.login, t.name, t.id
|
|
|
|
FROM positions p
|
|
|
|
LEFT JOIN users u ON (p.user_id=u.id)
|
|
|
|
LEFT JOIN tracks t ON (p.track_id=t.id)
|
|
|
|
WHERE p.user_id=?
|
|
|
|
ORDER BY p.time DESC LIMIT 1");
|
2016-10-29 14:05:13 +02:00
|
|
|
$query->bind_param('i', $userid);
|
2013-06-19 13:27:14 +02:00
|
|
|
}
|
|
|
|
$query->execute();
|
2017-01-30 23:46:25 +01:00
|
|
|
$query->bind_result($positionid,$latitude,$longitude,$altitude,$speed,$bearing,$dateoccured,$accuracy,$comments,$username,$trackname,$trackid);
|
2013-06-19 13:27:14 +02:00
|
|
|
|
|
|
|
header("Content-type: text/xml");
|
|
|
|
$xml = new XMLWriter();
|
|
|
|
$xml->openURI("php://output");
|
|
|
|
$xml->startDocument("1.0");
|
|
|
|
$xml->setIndent(true);
|
|
|
|
$xml->startElement('root');
|
2016-10-29 14:05:13 +02:00
|
|
|
|
2013-06-19 13:27:14 +02:00
|
|
|
while ($query->fetch()) {
|
|
|
|
$xml->startElement("position");
|
|
|
|
$xml->writeAttribute("id", $positionid);
|
2016-10-29 14:05:13 +02:00
|
|
|
$xml->writeElement("latitude", $latitude);
|
|
|
|
$xml->writeElement("longitude", $longitude);
|
|
|
|
$xml->writeElement("altitude", ($altitude)?round($altitude):$altitude);
|
|
|
|
$xml->writeElement("speed", $speed);
|
2017-01-30 23:46:25 +01:00
|
|
|
$xml->writeElement("bearing", $bearing);
|
2016-10-29 14:05:13 +02:00
|
|
|
$xml->writeElement("dateoccured", $dateoccured);
|
2017-01-30 21:36:44 +01:00
|
|
|
$xml->writeElement("accuracy", $accuracy);
|
2016-10-29 14:05:13 +02:00
|
|
|
$xml->writeElement("comments", $comments);
|
|
|
|
$xml->writeElement("username", $username);
|
|
|
|
$xml->writeElement("trackid", $trackid);
|
|
|
|
$xml->writeElement("trackname", $trackname);
|
2013-06-19 13:27:14 +02:00
|
|
|
$distance = (isset($prev_latitude))?haversine_distance($prev_latitude,$prev_longitude,$latitude,$longitude):0;
|
|
|
|
$prev_latitude = $latitude;
|
|
|
|
$prev_longitude = $longitude;
|
2016-10-29 14:05:13 +02:00
|
|
|
$xml->writeElement("distance", round($distance));
|
2013-06-19 13:27:14 +02:00
|
|
|
$seconds = (isset($prev_dateoccured))?(strtotime($dateoccured)-strtotime($prev_dateoccured)):0;
|
|
|
|
$prev_dateoccured = $dateoccured;
|
2016-10-29 14:05:13 +02:00
|
|
|
$xml->writeElement("seconds", $seconds);
|
|
|
|
$xml->endElement();
|
2013-06-19 13:27:14 +02:00
|
|
|
}
|
2016-10-29 14:05:13 +02:00
|
|
|
|
2013-06-19 13:27:14 +02:00
|
|
|
$xml->endElement();
|
2016-10-29 14:05:13 +02:00
|
|
|
$xml->endDocument();
|
2013-06-19 13:27:14 +02:00
|
|
|
$xml->flush();
|
|
|
|
|
|
|
|
$query->free_result();
|
|
|
|
}
|
|
|
|
|
|
|
|
$mysqli->close();
|
|
|
|
?>
|