summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-30 15:22:05 +0100
committerAndrew Dolgov <[email protected]>2005-11-30 15:22:05 +0100
commit618f424e8f20db158df9ba2e032d9c819864fd91 (patch)
treeff04ca926295592d44cf5f449051f144a6d1307f
parent8fd0c7173c2b984d0b4916e299d856647a4e389a (diff)
xml-export: improved interface, fixes
-rw-r--r--xml-export.php118
1 files changed, 94 insertions, 24 deletions
diff --git a/xml-export.php b/xml-export.php
index c97b964ff..f1100d39b 100644
--- a/xml-export.php
+++ b/xml-export.php
@@ -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>
+
+<? } ?>