]> git.wh0rd.org - tt-rss.git/blobdiff - opml.php
add Public_Handler
[tt-rss.git] / opml.php
index b64845d78c9cb11a56c80ee9f108d40c77557165..ab71493b1fba3e8690a0e07839b620461ec2164d 100644 (file)
--- a/opml.php
+++ b/opml.php
-<?
-       session_start();
+<?php
+       set_include_path(get_include_path() . PATH_SEPARATOR . "include");
 
+       require_once "functions.php";
+       require_once "sessions.php";
        require_once "sanity_check.php";
-
-       // FIXME there are some brackets issues here
-
-       $op = $_REQUEST["op"];
-       if ($op == "Export") {
-               header("Content-type: application/xml");
-               print "<?xml version=\"1.0\"?>";
-       }
-
        require_once "config.php";
        require_once "db.php";
        require_once "db-prefs.php";
 
-       $owner_uid = $_SESSION["uid"];
+       $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
 
-       $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); 
+       if (!init_connection($link)) return;
 
-       if (DB_TYPE == "pgsql") {
-               pg_query($link, "set client_encoding = 'utf-8'");
-       }
+       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>";
 
                $cat_mode = false;
 
-               if (get_pref($link, 'ENABLE_FEED_CATS')) {
+                $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 = ''";
+               }
+
+
+
+               if (get_pref($link, 'ENABLE_FEED_CATS', $owner_uid) == true) {
                        $cat_mode = true;
-                       $result = db_query($link, "SELECT 
-                                       ttrss_feeds.feed_url AS feed_url,
-                                       ttrss_feeds.title AS title,
-                                       (SELECT title FROM ttrss_feed_categories WHERE id = cat_id) as cat_title
-                                       FROM ttrss_feeds
-                               ORDER BY cat_title,title");
-               } else {
-                       $result = db_query($link, "SELECT * FROM ttrss_feeds 
-                               ORDER BY title WHERE owner_uid = '$owner_uid'");
+                        $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 -->";
+
+               }
+
+
+               $result = db_query($link, $select." FROM ttrss_feeds ".$where." ".$orderby);
 
                $old_cat_title = "";
 
                while ($line = db_fetch_assoc($result)) {
                        $title = htmlspecialchars($line["title"]);
                        $url = htmlspecialchars($line["feed_url"]);
+                       $site_url = htmlspecialchars($line["site_url"]);
 
                        if ($cat_mode) {
                                $cat_title = htmlspecialchars($line["cat_title"]);
 
                                if ($old_cat_title != $cat_title) {
                                        if ($old_cat_title) {
-                                               print "</outline>\n";   
+                                               print "</outline>\n";
                                        }
 
                                        if ($cat_title) {
-                                               print "<outline title=\"$cat_title\">\n";
+                                               print "<outline title=\"$cat_title\" text=\"$cat_title\" >\n";
                                        }
 
                                        $old_cat_title = $cat_title;
                                }
                        }
 
-                       print "<outline text=\"$title\" xmlUrl=\"$url\"/>\n";
+                       if ($site_url) {
+                               $html_url_qpart = "htmlUrl=\"$site_url\"";
+                       } else {
+                               $html_url_qpart = "";
+                       }
+
+                       print "<outline text=\"$title\" xmlUrl=\"$url\" $html_url_qpart/>\n";
                }
 
                if ($cat_mode && $old_cat_title) {
-                       print "</outline>\n";   
+                       print "</outline>\n";
                }
 
-               print "</body></opml>";
-       }
-
-       if ($op == "Import") {
-
-               print "<html>
-                       <head>
-                               <link rel=\"stylesheet\" href=\"opml.css\" type=\"text/css\">
-                       </head>
-                       <body><h1>Importing OPML...</h1>
-                       <div>";
-
-               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>";
-
-                       return;
-               }
+               # export tt-rss settings
 
-               if (is_file($_FILES['opml_file']['tmp_name'])) {
-                       $dom = domxml_open_file($_FILES['opml_file']['tmp_name']);
+               if ($include_settings) {
+                       print "<outline title=\"tt-rss-prefs\" schema-version=\"".SCHEMA_VERSION."\">";
 
-                       if ($dom) {
-                               $root = $dom->document_element();
+                       $result = db_query($link, "SELECT pref_name, value FROM ttrss_user_prefs WHERE
+                          profile IS NULL AND owner_uid = " . $_SESSION["uid"]);
 
-                               $body = $root->get_elements_by_tagname('body');
+                       while ($line = db_fetch_assoc($result)) {
 
-                               if ($body[0]) {                 
-                                       $body = $body[0];
+                               $name = $line["pref_name"];
+                               $value = htmlspecialchars($line["value"]);
 
-                                       $outlines = $body->get_elements_by_tagname('outline');
+                               print "<outline pref-name=\"$name\" value=\"$value\">";
 
-                                       $active_category = '';
+                               print "</outline>";
 
-                                       foreach ($outlines as $outline) {
-                                               $feed_title = $outline->get_attribute('text');
-                                               $cat_title = $outline->get_attribute('title');
-                                               $feed_url = $outline->get_attribute('xmlUrl');
+                       }
 
-                                               if ($cat_title) {
-                                                       $active_category = $cat_title;
+                       print "</outline>";
+               }
 
-                                                       db_query($link, "BEGIN");
-                                                       
-                                                       $result = db_query($link, "SELECT id FROM
-                                                               ttrss_feed_categories WHERE title = '$cat_title' AND
-                                                               owner_uid = '$owner_uid' LIMIT 1");
+               print "</body></opml>";
+       }
 
-                                                       if (db_num_rows($result) == 0) {
+       // FIXME there are some brackets issues here
 
-                                                               print "Adding category <b>$cat_title</b>...<br>";
+       $op = $_REQUEST["op"];
+    if (!$op) $op = "Export";
 
-                                                               db_query($link, "INSERT INTO ttrss_feed_categories
-                                                                       (title,owner_uid) VALUES ('$cat_title', '$owner_uid')");
-                                                       }
+    $output_name = $_REQUEST["filename"];
+       if (!$output_name) $output_name = "TinyTinyRSS.opml";
 
-                                                       db_query($link, "COMMIT");
-                                               }
+    $show_settings = $_REQUEST["settings"];
 
-//                                             print "$active_category : $feed_title : $xmlurl<br>";
+       if ($op == "Export") {
 
-                                               if (!$feed_title || !$feed_url) continue;
+               login_sequence($link);
+               $owner_uid = $_SESSION["uid"];
+               return opml_export($link, $output_name, $owner_uid, false, ($show_settings == 1));
+       }
 
-                                               db_query($link, "BEGIN");
+       if ($op == "publish"){
+               $key = db_escape_string($_REQUEST["key"]);
 
-                                               $cat_id = null;
+               $result = db_query($link, "SELECT owner_uid
+                               FROM ttrss_access_keys WHERE
+                               access_key = '$key' AND feed_id = 'OPML:Publish'");
 
-                                               if ($active_category) {
+               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>";
+               }
+       }
 
-                                                       $result = db_query($link, "SELECT id FROM
-                                                                       ttrss_feed_categories WHERE title = '$active_category' AND
-                                                                       owner_uid = '$owner_uid' LIMIT 1");                                                             
+       if ($op == "Import") {
 
-                                                       if (db_num_rows($result) == 1) {        
-                                                               $cat_id = db_fetch_result($result, 0, "id");
-                                                       }
-                                               }                                                               
+               login_sequence($link);
+               $owner_uid = $_SESSION["uid"];
 
-                                               $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
-                                                       (title = '$feed_title' OR feed_url = '$feed_url') 
-                                                       AND owner_uid = '$owner_uid'");
+               header('Content-Type: text/html; charset=utf-8');
 
-                                               print "Feed <b>$feed_title</b> ($feed_url)... ";
+               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>";
 
-                                               if (db_num_rows($result) > 0) {
-                                                       print " Already imported.<br>";
-                                               } else {
+               db_query($link, "BEGIN");
 
-                                                       if ($cat_id) {
-                                                               $add_query = "INSERT INTO ttrss_feeds 
-                                                                       (title, feed_url, owner_uid, cat_id) VALUES
-                                                                       ('$feed_title', '$feed_url', '$owner_uid', '$cat_id')";
+               /* create Imported feeds category just in case */
 
-                                                       } else {
-                                                               $add_query = "INSERT INTO ttrss_feeds 
-                                                                       (title, feed_url, owner_uid) VALUES
-                                                                       ('$feed_title', '$feed_url', '$owner_uid')";
+               $result = db_query($link, "SELECT id FROM
+                       ttrss_feed_categories WHERE title = 'Imported feeds' AND
+                       owner_uid = '$owner_uid' LIMIT 1");
 
-                                                       }
-                                                       
-                                                       db_query($link, $add_query);
-                                                       
-                                                       print "<b>Done.</b><br>";
-                                               }
-                                               
-                                               db_query($link, "COMMIT");
-                                       }
+               if (db_num_rows($result) == 0) {
+                               db_query($link, "INSERT INTO ttrss_feed_categories
+                                       (title,owner_uid)
+                                               VALUES ('Imported feeds', '$owner_uid')");
+               }
 
-                               } else {
-                                       print "Error: can't find body element.";
-                               }
-                       } else {
-                               print "Error while parsing document.";
-                       }
+               db_query($link, "COMMIT");
 
-               } else {
-                       print "Error: please upload OPML file.";
-               }
+               print "<p>".__("Importing OPML...")."</p>";
+               require_once "modules/opml_domdoc.php";
+               opml_import_domdoc($link, $owner_uid);
 
-               print "<p><a class=\"button\" href=\"prefs.php\">
-                       Return to preferences</a>";
+               print "<br><form method=\"GET\" action=\"prefs.php\">
+                       <input type=\"submit\" value=\"".__("Return to preferences")."\">
+                       </form>";
 
-               print "</div></body></html>";
+               print "</body></html>";
 
        }