ttrss/opml.php

178 lines
4.4 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
init_connection($link);
2005-12-01 07:10:39 +01:00
function opml_export($link, $owner_uid, $hide_private_feeds=False) {
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;
$select = "SELECT * ";
$where = "WHERE owner_uid = '$owner_uid'";
$orderby = "ORDER BY title";
if ($hide_private_feeds){
$where = "WHERE owner_uid = '$owner_uid' AND private IS false";
}
2005-11-25 13:37:27 +01:00
if (get_pref($link, 'ENABLE_FEED_CATS', $owner_uid) == true) {
2005-11-25 13:37:27 +01:00
$cat_mode = true;
$select = "SELECT
title, feed_url, site_url,
(SELECT title FROM ttrss_feed_categories WHERE id = cat_id) as cat_title";
$orderby = "ORDER BY cat_title, title";
2005-11-25 13:37:27 +01:00
}
else{
$cat_feed = get_pref($link, 'ENABLE_FEED_CATS');
print "<!-- feeding cats is not enabled -->";
print "<!-- $cat_feed -->";
}
2005-11-25 13:37:27 +01:00
$result = db_query($link, $select." FROM ttrss_feeds ".$where." ".$orderby);
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\" text=\"$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") {
login_sequence($link);
$owner_uid = $_SESSION["uid"];
2007-03-02 15:55:32 +01:00
return opml_export($link, $owner_uid);
2007-03-02 14:58:51 +01:00
}
if ($op == "publish"){
$key = db_escape_string($_REQUEST["key"]);
$result = db_query($link, "SELECT login, owner_uid
FROM ttrss_user_prefs, ttrss_users WHERE
pref_name = '_PREFS_PUBLISH_KEY' AND
value = '$key' AND
ttrss_users.id = owner_uid");
if (db_num_rows($result) == 1) {
$owner = db_fetch_result($result, 0, "owner_uid");
return opml_export($link, $owner, True);
} else {
print "<error>User not found</error>";
}
}
2007-03-02 14:58:51 +01:00
if ($op == "Import") {
2005-09-07 15:31:21 +02:00
login_sequence($link);
$owner_uid = $_SESSION["uid"];
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
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);
} 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
?>