]> git.wh0rd.org - tt-rss.git/blobdiff - opml.php
add Public_Handler
[tt-rss.git] / opml.php
index 1a77d3146bf06d9db73e261fed0ca5384b759254..ab71493b1fba3e8690a0e07839b620461ec2164d 100644 (file)
--- a/opml.php
+++ b/opml.php
-<?
-       // FIXME there are some brackets issues here
-
-       $op = $_REQUEST["op"];
-       if ($op == "Export") {
-               header("Content-type: application/xml");
-               print "<?xml version=\"1.0\"?>";
-       }
+<?php
+       set_include_path(get_include_path() . PATH_SEPARATOR . "include");
 
+       require_once "functions.php";
+       require_once "sessions.php";
+       require_once "sanity_check.php";
        require_once "config.php";
        require_once "db.php";
+       require_once "db-prefs.php";
 
-       $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); 
+       $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
 
-       if (DB_TYPE == "pgsql") {
-               pg_query($link, "set client_encoding = 'utf-8'");
-       }
+       if (!init_connection($link)) return;
+
+       function opml_export($link, $name, $owner_uid, $hide_private_feeds=false, $include_settings=true) {
+               if (!$_REQUEST["debug"]) {
+                       header("Content-type: application/xml+opml");
+               } else {
+                       header("Content-type: text/xml");
+               }
+        header("Content-Disposition: attachment; filename=" . $name );
+
+               print "<?xml version=\"1.0\" encoding=\"utf-8\"?>";
 
-       if ($op == "Export") {
                print "<opml version=\"1.0\">";
-               print "<head><dateCreated>" . date("r", time()) . "</dateCreated></head>"; 
+               print "<head>
+                       <dateCreated>" . date("r", time()) . "</dateCreated>
+                       <title>Tiny Tiny RSS Feed Export</title>
+               </head>";
                print "<body>";
 
-               $result = db_query($link, "SELECT * FROM ttrss_feeds ORDER BY title");
-
-               while ($line = db_fetch_assoc($result)) {
-                       $title = $line["title"];
-                       $url = $line["feed_url"];
+               $cat_mode = false;
 
-                       print "<outline text=\"$title\" xmlUrl=\"$url\"/>";
+                $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 AND
+                               auth_login = '' AND auth_pass = ''";
                }
 
-               print "</body></opml>";
-       }
 
-       function startElement($parser, $name, $attrs) {
 
-               if ($name == "OUTLINE") {
-                       $title = db_escape_string($attrs['TEXT']);
-                       $url = db_escape_string($attrs['XMLURL']);
+               if (get_pref($link, 'ENABLE_FEED_CATS', $owner_uid) == true) {
+                       $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";
+
+               }
+               else{
+                       $cat_feed = get_pref($link, 'ENABLE_FEED_CATS');
+                       print "<!-- feeding cats is not enabled -->";
+                       print "<!-- $cat_feed -->";
 
-                       if (!$title || !$url) return;
+               }
 
-                       print "Feed <b>$title</b> ($url)... ";
 
-                       $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); 
+               $result = db_query($link, $select." FROM ttrss_feeds ".$where." ".$orderby);
 
-                       $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
-                               title = '$title' OR feed_url = '$url'");
+               $old_cat_title = "";
 
-                       if ($result && db_num_rows($result) > 0) {
-                               
-                               print " Already imported.<br>";
+               while ($line = db_fetch_assoc($result)) {
+                       $title = htmlspecialchars($line["title"]);
+                       $url = htmlspecialchars($line["feed_url"]);
+                       $site_url = htmlspecialchars($line["site_url"]);
 
-                       } else {
-                                         
-                               $result = db_query($link, "INSERT INTO ttrss_feeds (title, feed_url) VALUES
-                                       ('$title', '$url')");
+                       if ($cat_mode) {
+                               $cat_title = htmlspecialchars($line["cat_title"]);
 
-                               print "<b>Done.</b><br>";
+                               if ($old_cat_title != $cat_title) {
+                                       if ($old_cat_title) {
+                                               print "</outline>\n";
+                                       }
+
+                                       if ($cat_title) {
+                                               print "<outline title=\"$cat_title\" text=\"$cat_title\" >\n";
+                                       }
 
+                                       $old_cat_title = $cat_title;
+                               }
                        }
 
-                       if ($link) db_close($link);
+                       if ($site_url) {
+                               $html_url_qpart = "htmlUrl=\"$site_url\"";
+                       } else {
+                               $html_url_qpart = "";
+                       }
 
+                       print "<outline text=\"$title\" xmlUrl=\"$url\" $html_url_qpart/>\n";
                }
-       }
 
-       function endElement($parser, $name) {
+               if ($cat_mode && $old_cat_title) {
+                       print "</outline>\n";
+               }
 
+               # export tt-rss settings
 
-       }
+               if ($include_settings) {
+                       print "<outline title=\"tt-rss-prefs\" schema-version=\"".SCHEMA_VERSION."\">";
 
-       if ($op == "Import") {
+                       $result = db_query($link, "SELECT pref_name, value FROM ttrss_user_prefs WHERE
+                          profile IS NULL AND owner_uid = " . $_SESSION["uid"]);
 
-               print "<html>
-                       <head>
-                               <link rel=\"stylesheet\" href=\"opml.css\" type=\"text/css\">
-                       </head>
-                       <body><h1>Importing OPML...</h1>
-                       <div>";
+                       while ($line = db_fetch_assoc($result)) {
+
+                               $name = $line["pref_name"];
+                               $value = htmlspecialchars($line["value"]);
+
+                               print "<outline pref-name=\"$name\" value=\"$value\">";
 
-               if (WEB_DEMO_MODE) {
-                       print "OPML import is disabled in demo-mode.";
-                       print "<p><a class=\"button\" href=\"prefs.php\">
-                       Return to preferences</a></div></body></html>";
+                               print "</outline>";
 
-                       return;
+                       }
+
+                       print "</outline>";
                }
 
-               if (is_file($_FILES['opml_file']['tmp_name'])) {
-                
-                       $xml_parser = xml_parser_create();
+               print "</body></opml>";
+       }
 
-                       xml_set_element_handler($xml_parser, "startElement", "endElement");
+       // FIXME there are some brackets issues here
 
-                       $fp = fopen($_FILES['opml_file']['tmp_name'], "r");
+       $op = $_REQUEST["op"];
+    if (!$op) $op = "Export";
 
-                       if ($fp) {
+    $output_name = $_REQUEST["filename"];
+       if (!$output_name) $output_name = "TinyTinyRSS.opml";
 
-                               while ($data = fread($fp, 4096)) {
+    $show_settings = $_REQUEST["settings"];
 
-                                       if (!xml_parse($xml_parser, $data, feof($fp))) {
-                                               
-                                               print sprintf("Unable to parse OPML file, XML error: %s at line %d",
-                                                       xml_error_string(xml_get_error_code($xml_parser)),
-                                                       xml_get_current_line_number($xml_parser));
+       if ($op == "Export") {
 
-                                               print "<p><a class=\"button\" href=\"prefs.php\">
-                                                       Return to preferences</a>";
+               login_sequence($link);
+               $owner_uid = $_SESSION["uid"];
+               return opml_export($link, $output_name, $owner_uid, false, ($show_settings == 1));
+       }
 
-                                               return;
+       if ($op == "publish"){
+               $key = db_escape_string($_REQUEST["key"]);
 
-                                       }
-                               }
+               $result = db_query($link, "SELECT owner_uid
+                               FROM ttrss_access_keys WHERE
+                               access_key = '$key' AND feed_id = 'OPML:Publish'");
+
+               if (db_num_rows($result) == 1) {
+                       $owner_uid = db_fetch_result($result, 0, "owner_uid");
+                       return opml_export($link, "", $owner_uid, true, false);
+               } else {
+                       print "<error>User not found</error>";
+               }
+       }
 
-                               xml_parser_free($xml_parser);
-                               fclose($fp);
+       if ($op == "Import") {
 
-                       } else {
-                               print("Error: Could not open OPML input.");
-                       }
+               login_sequence($link);
+               $owner_uid = $_SESSION["uid"];
+
+               header('Content-Type: text/html; charset=utf-8');
 
-               } else {        
-                       print "Error: please upload OPML file.";
+               print "<html>
+                       <head>
+                               <link rel=\"stylesheet\" href=\"utility.css\" type=\"text/css\">
+                               <title>".__("OPML Utility")."</title>
+                               <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
+                       </head>
+                       <body>
+                       <div class=\"floatingLogo\"><img src=\"images/logo_wide.png\"></div>
+                       <h1>".__('OPML Utility')."</h1>";
+
+               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')");
                }
 
-               print "<p><a class=\"button\" href=\"prefs.php\">
-                       Return to preferences</a>";
+               db_query($link, "COMMIT");
+
+               print "<p>".__("Importing OPML...")."</p>";
+               require_once "modules/opml_domdoc.php";
+               opml_import_domdoc($link, $owner_uid);
+
+               print "<br><form method=\"GET\" action=\"prefs.php\">
+                       <input type=\"submit\" value=\"".__("Return to preferences")."\">
+                       </form>";
 
-               print "</div></body></html>";
+               print "</body></html>";
 
        }
 
-       db_close($link);
+//     if ($link) db_close($link);
 
 ?>