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
|
|
|
|
* the terms of the GNU Library General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
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();
|
|
|
|
?>
|