2006-08-19 09:04:45 +02:00
|
|
|
<?php
|
2007-03-04 14:02:47 +01:00
|
|
|
error_reporting(E_ERROR | E_WARNING | E_PARSE);
|
|
|
|
|
2007-03-02 12:46:43 +01:00
|
|
|
require_once "sessions.php";
|
2005-11-23 18:20:17 +01:00
|
|
|
require_once "sanity_check.php";
|
2005-12-01 07:10:39 +01:00
|
|
|
require_once "functions.php";
|
2005-09-02 12:18:45 +02:00
|
|
|
require_once "config.php";
|
2005-09-07 15:31:21 +02:00
|
|
|
require_once "db.php";
|
2005-11-16 18:18:15 +01:00
|
|
|
require_once "db-prefs.php";
|
2005-09-02 12:18:45 +02:00
|
|
|
|
2005-09-07 15:31:21 +02:00
|
|
|
$link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
|
2005-09-02 13:49:47 +02:00
|
|
|
|
2005-09-07 15:31:21 +02:00
|
|
|
if (DB_TYPE == "pgsql") {
|
|
|
|
pg_query($link, "set client_encoding = 'utf-8'");
|
2007-02-20 09:33:17 +01:00
|
|
|
pg_set_client_encoding("UNICODE");
|
2005-09-07 15:31:21 +02:00
|
|
|
}
|
2005-09-02 12:18:45 +02:00
|
|
|
|
2005-12-01 07:10:39 +01:00
|
|
|
login_sequence($link);
|
|
|
|
|
|
|
|
$owner_uid = $_SESSION["uid"];
|
|
|
|
|
2007-03-02 15:55:32 +01:00
|
|
|
function opml_export($link, $owner_uid) {
|
2006-05-18 08:02:07 +02:00
|
|
|
header("Content-type: application/xml+opml");
|
2007-03-02 15:58:46 +01:00
|
|
|
print "<?xml version=\"1.0\"?>";
|
2005-12-01 07:10:39 +01:00
|
|
|
|
2005-09-02 12:18:45 +02:00
|
|
|
print "<opml version=\"1.0\">";
|
2005-11-25 18:31:04 +01:00
|
|
|
print "<head>
|
|
|
|
<dateCreated>" . date("r", time()) . "</dateCreated>
|
|
|
|
<title>Tiny Tiny RSS Feed Export</title>
|
|
|
|
</head>";
|
2005-09-02 12:18:45 +02:00
|
|
|
print "<body>";
|
|
|
|
|
2005-11-25 13:37:27 +01:00
|
|
|
$cat_mode = false;
|
|
|
|
|
|
|
|
if (get_pref($link, 'ENABLE_FEED_CATS')) {
|
|
|
|
$cat_mode = true;
|
|
|
|
$result = db_query($link, "SELECT
|
2005-11-25 18:34:34 +01:00
|
|
|
title,feed_url,site_url,
|
2005-11-25 14:30:34 +01:00
|
|
|
(SELECT title FROM ttrss_feed_categories WHERE id = cat_id) as cat_title
|
|
|
|
FROM ttrss_feeds
|
2005-11-25 14:46:55 +01:00
|
|
|
WHERE
|
|
|
|
owner_uid = '$owner_uid'
|
2005-11-25 14:30:34 +01:00
|
|
|
ORDER BY cat_title,title");
|
2005-11-25 13:37:27 +01:00
|
|
|
} else {
|
|
|
|
$result = db_query($link, "SELECT * FROM ttrss_feeds
|
2006-11-03 05:05:43 +01:00
|
|
|
WHERE owner_uid = '$owner_uid' ORDER BY title");
|
2005-11-25 13:37:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$old_cat_title = "";
|
2005-09-02 12:18:45 +02:00
|
|
|
|
2005-09-07 15:31:21 +02:00
|
|
|
while ($line = db_fetch_assoc($result)) {
|
2005-10-16 16:48:33 +02:00
|
|
|
$title = htmlspecialchars($line["title"]);
|
|
|
|
$url = htmlspecialchars($line["feed_url"]);
|
2005-11-25 18:34:34 +01:00
|
|
|
$site_url = htmlspecialchars($line["site_url"]);
|
2005-09-02 12:18:45 +02:00
|
|
|
|
2005-11-25 13:37:27 +01:00
|
|
|
if ($cat_mode) {
|
|
|
|
$cat_title = htmlspecialchars($line["cat_title"]);
|
|
|
|
|
|
|
|
if ($old_cat_title != $cat_title) {
|
|
|
|
if ($old_cat_title) {
|
2005-11-25 14:37:44 +01:00
|
|
|
print "</outline>\n";
|
2005-11-25 13:37:27 +01:00
|
|
|
}
|
|
|
|
|
2005-11-25 14:37:44 +01:00
|
|
|
if ($cat_title) {
|
|
|
|
print "<outline title=\"$cat_title\">\n";
|
|
|
|
}
|
2005-11-25 13:37:27 +01:00
|
|
|
|
|
|
|
$old_cat_title = $cat_title;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-25 18:34:34 +01:00
|
|
|
if ($site_url) {
|
|
|
|
$html_url_qpart = "htmlUrl=\"$site_url\"";
|
|
|
|
} else {
|
|
|
|
$html_url_qpart = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
print "<outline text=\"$title\" xmlUrl=\"$url\" $html_url_qpart/>\n";
|
2005-09-02 12:18:45 +02:00
|
|
|
}
|
|
|
|
|
2005-11-25 13:37:27 +01:00
|
|
|
if ($cat_mode && $old_cat_title) {
|
2005-11-25 14:37:44 +01:00
|
|
|
print "</outline>\n";
|
2005-11-25 13:37:27 +01:00
|
|
|
}
|
|
|
|
|
2005-09-02 12:18:45 +02:00
|
|
|
print "</body></opml>";
|
|
|
|
}
|
|
|
|
|
2007-03-02 14:58:51 +01:00
|
|
|
// FIXME there are some brackets issues here
|
|
|
|
|
|
|
|
$op = $_REQUEST["op"];
|
|
|
|
|
|
|
|
if (!$op) $op = "Export";
|
|
|
|
|
|
|
|
if ($op == "Export") {
|
2007-03-02 15:55:32 +01:00
|
|
|
return opml_export($link, $owner_uid);
|
2007-03-02 14:58:51 +01:00
|
|
|
}
|
|
|
|
|
2005-11-25 14:27:56 +01:00
|
|
|
if ($op == "Import") {
|
2005-09-07 15:31:21 +02:00
|
|
|
|
2005-11-25 14:27:56 +01:00
|
|
|
print "<html>
|
|
|
|
<head>
|
2007-03-02 15:08:00 +01:00
|
|
|
<link rel=\"stylesheet\" href=\"utility.css\" type=\"text/css\">
|
2007-03-05 10:04:55 +01:00
|
|
|
<title>".__("OPML Utility")."</title>
|
2005-11-25 14:27:56 +01:00
|
|
|
</head>
|
2005-11-25 14:55:21 +01:00
|
|
|
<body>
|
2007-03-02 15:08:00 +01:00
|
|
|
<div class=\"floatingLogo\"><img src=\"images/ttrss_logo.png\"></div>
|
2007-03-05 09:45:38 +01:00
|
|
|
<h1>".__('OPML Utility')."</h1>";
|
2005-09-02 13:49:47 +02:00
|
|
|
|
2007-03-02 14:58:51 +01:00
|
|
|
if (function_exists('domxml_open_file')) {
|
2007-03-05 13:50:46 +01:00
|
|
|
print "<p>".__("Importing OPML (using DOMXML extension)...")."</p>");
|
2007-03-02 14:58:51 +01:00
|
|
|
require_once "modules/opml_domxml.php";
|
|
|
|
opml_import_domxml($link, $owner_uid);
|
2005-11-25 14:27:56 +01:00
|
|
|
} else {
|
2007-03-05 13:50:46 +01:00
|
|
|
print "<p>".__("Importing OPML (using DOMDocument extension)...")."</p>");
|
2007-03-02 14:58:51 +01:00
|
|
|
require_once "modules/opml_domdoc.php";
|
|
|
|
opml_import_domdoc($link, $owner_uid);
|
2005-09-02 13:49:47 +02:00
|
|
|
}
|
|
|
|
|
2007-03-02 14:34:04 +01:00
|
|
|
print "<br><form method=\"GET\" action=\"prefs.php\">
|
2007-03-05 10:04:55 +01:00
|
|
|
<input type=\"submit\" value=\"".__("Return to preferences")."\">
|
2007-03-02 14:34:04 +01:00
|
|
|
</form>";
|
2005-09-02 13:49:47 +02:00
|
|
|
|
2007-03-02 14:58:51 +01:00
|
|
|
print "</body></html>";
|
2005-09-02 13:49:47 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-09-07 18:52:12 +02:00
|
|
|
// if ($link) db_close($link);
|
2005-09-02 13:49:47 +02:00
|
|
|
|
2005-09-02 12:18:45 +02:00
|
|
|
?>
|