xml-export: improved interface, fixes

master
Andrew Dolgov 19 years ago
parent 8fd0c7173c
commit 618f424e8f

@ -7,11 +7,26 @@
require_once "functions.php";
require_once "db.php";
define('SCHEMA_VERSION', 1);
header("Content-Type: application/xml");
if ($_GET["export"]) {
header("Content-Type: application/xml");
}
?>
<? if (!$_GET["export"]) { ?>
<html>
<body>
<h1>XML Export</h1>
<form method="GET">
<input type="checkbox" checked name="marked"> Export only starred<br>
<input type="checkbox" name="unread"> Export only unread<br>
<p><input type="submit" name="export" value="Export"></p>
</form>
</body>
</html>
<? } else { ?>
<xmldb>
<?
@ -33,43 +48,96 @@
$schema_version = db_fetch_result($result, 0, "schema_version");
if ($schema_version != SCHEMA_VERSION) {
/* if ($schema_version != SCHEMA_VERSION) {
print "<error>Source database schema is invalid
(got version $schema_version; expected ".SCHEMA_VERSION.")</error>";
print "</xmldb>";
return;
}
} */
print "<schema_version>$schema_version</schema_version>";
?>
if ($schema_version > 1) {
$owner_uid = $_SESSION["uid"];
print "<owner_uid>$owner_uid</owner_uid>";
}
<articles>
print "<exported>" . time() . "</exported>";
?>
<?
$result = db_query($link, "SELECT
ttrss_entries.title AS title,
content,
marked,
unread,
updated,
guid,
link,
date_entered,
last_read,
comments,
ttrss_feeds.feed_url AS feed_url,
ttrss_feeds.title AS feed_title
FROM
ttrss_entries,ttrss_feeds
WHERE
feed_id = ttrss_feeds.id AND marked = true");
if ($_GET["marked"]) {
$marked_qpart = "AND marked = true";
}
if ($_GET["unread"]) {
$unread_qpart = "AND unread = true";
}
if ($schema_version == 1) {
$result = db_query($link, "SELECT
ttrss_entries.title AS title,
content,
marked,
unread,
updated,
guid,
link,
date_entered,
last_read,
comments,
ttrss_feeds.feed_url AS feed_url,
ttrss_feeds.title AS feed_title
FROM
ttrss_entries,ttrss_feeds
WHERE
feed_id = ttrss_feeds.id $marked_qpart $unread_qpart");
} else if ($schema_version == 2) {
$result = db_query($link, "SELECT
ttrss_entries.title AS title,
content,
marked,
unread,
updated,
guid,
link,
date_entered,
last_read,
comments,
ttrss_feeds.feed_url AS feed_url,
ttrss_feeds.title AS feed_title
FROM
ttrss_entries,ttrss_feeds,ttrss_user_entries
WHERE
ttrss_user_entries.owner_uid = '$owner_uid' AND
ref_id = ttrss_entries.id AND
feed_id = ttrss_feeds.id $marked_qpart $unread_qpart");
} else {
// BAD SCHEMA, NO COOKIE
print "<error>Source database schema is invalid
(got version $schema_version)</error>";
}
print "<total_articles>" . db_num_rows($result) . "</total_articles>";
?>
<articles>
<?
while ($line = db_fetch_assoc($result)) {
print "<article>";
foreach (array_keys($line) as $key) {
$line[$key] = str_replace("<![CDATA[", "", $line[$key]);
$line[$key] = str_replace("]]>", "", $line[$key]);
print "<$key><![CDATA[".$line[$key]."]]></$key>";
}
@ -81,3 +149,5 @@
</articles>
</xmldb>
<? } ?>

Loading…
Cancel
Save