ttrss/opml.php

137 lines
3.3 KiB
PHP
Raw Normal View History

2006-08-19 09:04:45 +02:00
<?php
error_reporting(E_ERROR | E_WARNING | E_PARSE);
2007-03-02 12:46:43 +01:00
require_once "sessions.php";
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'");
pg_set_client_encoding("UNICODE");
2007-08-17 18:02:15 +02:00
} else {
2007-08-21 12:47:25 +02:00
if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) {
db_query($link, "SET NAMES " . MYSQL_CHARSET);
2007-08-25 06:28:10 +02:00
// db_query($link, "SET CHARACTER SET " . MYSQL_CHARSET);
2007-08-21 12:47:25 +02:00
}
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) {
header("Content-type: application/xml+opml");
2007-08-17 17:56:21 +02:00
print "<?xml version=\"1.0\" encoding=\"utf-8\"?>";
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
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 13:37:27 +01:00
} else {
$result = db_query($link, "SELECT * FROM ttrss_feeds
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)) {
$title = htmlspecialchars($line["title"]);
$url = htmlspecialchars($line["feed_url"]);
$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) {
print "</outline>\n";
2005-11-25 13:37:27 +01:00
}
if ($cat_title) {
print "<outline title=\"$cat_title\">\n";
}
2005-11-25 13:37:27 +01: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 12:18:45 +02:00
}
2005-11-25 13:37:27 +01:00
if ($cat_mode && $old_cat_title) {
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
}
if ($op == "Import") {
2005-09-07 15:31:21 +02: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>
</head>
<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-06 12:02:19 +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);
} else if (PHP_VERSION >= 5) {
2007-03-06 12:02:19 +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);
} else {
print_error(__("DOMXML extension is not found. It is required for PHP versions below 5."));
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
}
// if ($link) db_close($link);
2005-09-02 13:49:47 +02:00
2005-09-02 12:18:45 +02:00
?>