ttrss/opml.php

128 lines
2.9 KiB
PHP
Raw Normal View History

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