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);
|
|
|
|
|
|
|
|
if ($userid) {
|
2017-01-30 21:36:44 +01:00
|
|
|
$query = $mysqli->prepare("SELECT id, name FROM tracks WHERE user_id=? ORDER BY id DESC");
|
2013-06-19 13:27:14 +02:00
|
|
|
$query->bind_param('i', $userid);
|
|
|
|
$query->execute();
|
2017-01-30 21:36:44 +01:00
|
|
|
$query->bind_result($trackid, $trackname);
|
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()) {
|
2017-02-17 17:35:17 +01:00
|
|
|
$xml->startElement("track");
|
2016-10-29 14:05:13 +02:00
|
|
|
$xml->writeElement("trackid", $trackid);
|
|
|
|
$xml->writeElement("trackname", $trackname);
|
|
|
|
$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();
|
|
|
|
?>
|