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
|
|
|
|
2008-11-10 06:29:19 +01:00
|
|
|
init_connection($link);
|
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-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
|
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-11-17 10:23:44 +01:00
|
|
|
db_query($link, "BEGIN");
|
|
|
|
|
|
|
|
/* create Imported feeds category just in case */
|
|
|
|
|
|
|
|
$result = db_query($link, "SELECT id FROM
|
|
|
|
ttrss_feed_categories WHERE title = 'Imported feeds' AND
|
|
|
|
owner_uid = '$owner_uid' LIMIT 1");
|
|
|
|
|
|
|
|
if (db_num_rows($result) == 0) {
|
|
|
|
db_query($link, "INSERT INTO ttrss_feed_categories
|
|
|
|
(title,owner_uid)
|
|
|
|
VALUES ('Imported feeds', '$owner_uid')");
|
|
|
|
}
|
|
|
|
|
|
|
|
db_query($link, "COMMIT");
|
|
|
|
|
|
|
|
/* Handle OPML import by DOMXML/DOMDocument */
|
|
|
|
|
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);
|
2007-06-05 12:32:53 +02:00
|
|
|
} 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);
|
2007-06-05 12:32:53 +02:00
|
|
|
} 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
|
|
|
|
|
|
|
}
|
|
|
|
|
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
|
|
|
?>
|