]> git.wh0rd.org - tt-rss.git/blobdiff - opml.php
add multiprocess update daemon
[tt-rss.git] / opml.php
index 492a8b8cb19d597d375c7b29f94fcc42db07f32a..35d7a070c8ae1a17896df8e52cc66a652fd6cffc 100644 (file)
--- a/opml.php
+++ b/opml.php
@@ -1,6 +1,7 @@
-<?
-       require_once "sessions.php";
+<?php
+       error_reporting(E_ERROR | E_WARNING | E_PARSE);
 
+       require_once "sessions.php";
        require_once "sanity_check.php";
        require_once "functions.php";
        require_once "config.php";
 
        if (DB_TYPE == "pgsql") {
                pg_query($link, "set client_encoding = 'utf-8'");
+               pg_set_client_encoding("UNICODE");
+       } else {
+               if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) {
+                       db_query($link, "SET NAMES " . MYSQL_CHARSET);
+//                     db_query($link, "SET CHARACTER SET " . MYSQL_CHARSET);
+               }
        }
 
        login_sequence($link);
 
        $owner_uid = $_SESSION["uid"];
 
-       // FIXME there are some brackets issues here
+       function opml_export($link, $owner_uid) {
+               header("Content-type: application/xml+opml");
+               print "<?xml version=\"1.0\" encoding=\"utf-8\"?>";
 
-       $op = $_REQUEST["op"];
-       
-       if (!$op) $op = "Export";
-       
-       if ($op == "Export") {
-               header("Content-type: application/xml");
-               print "<?xml version=\"1.0\"?>";
-       }
-
-       if ($op == "Export") {
                print "<opml version=\"1.0\">";
                print "<head>
                        <dateCreated>" . date("r", time()) . "</dateCreated>
@@ -49,7 +48,7 @@
                                ORDER BY cat_title,title");
                } else {
                        $result = db_query($link, "SELECT * FROM ttrss_feeds 
-                               ORDER BY title WHERE owner_uid = '$owner_uid'");
+                               WHERE owner_uid = '$owner_uid' ORDER BY title");
                }
 
                $old_cat_title = "";
                print "</body></opml>";
        }
 
+       // FIXME there are some brackets issues here
+
+       $op = $_REQUEST["op"];
+       
+       if (!$op) $op = "Export";
+       
+       if ($op == "Export") {
+               return opml_export($link, $owner_uid);
+       }
+
        if ($op == "Import") {
 
                print "<html>
                        <head>
-                               <link rel=\"stylesheet\" href=\"opml.css\" type=\"text/css\">
+                               <link rel=\"stylesheet\" href=\"utility.css\" type=\"text/css\">
+                               <title>".__("OPML Utility")."</title>
                        </head>
                        <body>
-                       <h1><img src=\"images/ttrss_logo.png\"></h1>
-                       <div class=\"opmlBody\">
-                       <h2>Importing OPML...</h2>";
-
-               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;
-               }
-
-               if (is_file($_FILES['opml_file']['tmp_name'])) {
-                       $dom = domxml_open_file($_FILES['opml_file']['tmp_name']);
-
-                       if ($dom) {
-                               $root = $dom->document_element();
-
-                               $body = $root->get_elements_by_tagname('body');
-
-                               if ($body[0]) {                 
-                                       $body = $body[0];
-
-                                       $outlines = $body->get_elements_by_tagname('outline');
-
-                                       print "<table>";
+                       <div class=\"floatingLogo\"><img src=\"images/ttrss_logo.png\"></div>
+                       <h1>".__('OPML Utility')."</h1>";
 
-                                       foreach ($outlines as $outline) {
+               db_query($link, "BEGIN");
 
-                                               $feed_title = db_escape_string($outline->get_attribute('text'));
+               /* create Imported feeds category just in case */
 
-                                               if (!$feed_title) {
-                                                       $feed_title = db_escape_string($outline->get_attribute('title'));
-                                               }
+               $result = db_query($link, "SELECT id FROM
+                       ttrss_feed_categories WHERE title = 'Imported feeds' AND
+                       owner_uid = '$owner_uid' LIMIT 1");
 
-                                               $cat_title = db_escape_string($outline->get_attribute('title'));
-
-                                               if (!$cat_title) {
-                                                       $cat_title = db_escape_string($outline->get_attribute('text'));
-                                               }
-       
-                                               $feed_url = db_escape_string($outline->get_attribute('xmlUrl'));
-                                               $site_url = db_escape_string($outline->get_attribute('htmlUrl'));
-
-                                               if ($cat_title && !$feed_url) {
-
-                                                       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");
-
-                                                       if (db_num_rows($result) == 0) {
-
-                                                               print "Adding category <b>$cat_title</b>...<br>";
-
-                                                               db_query($link, "INSERT INTO ttrss_feed_categories
-                                                                       (title,owner_uid) 
-                                                               VALUES ('$cat_title', '$owner_uid')");
-                                                       }
-
-                                                       db_query($link, "COMMIT");
-                                               }
-
-//                                             print "$active_category : $feed_title : $feed_url<br>";
-
-                                               if (!$feed_title || !$feed_url) continue;
-
-                                               db_query($link, "BEGIN");
-
-                                               $cat_id = null;
-
-                                               $parent_node = $outline->parent_node();
-
-                                               if ($parent_node && $parent_node->node_name() == "outline") {
-                                                       $element_category = $parent_node->get_attribute('title');
-                                               } else {
-                                                       $element_category = '';
-                                               }
-
-                                               if ($element_category) {
-
-                                                       $result = db_query($link, "SELECT id FROM
-                                                                       ttrss_feed_categories WHERE title = '$element_category' AND
-                                                                       owner_uid = '$owner_uid' LIMIT 1");                                                             
-
-                                                       if (db_num_rows($result) == 1) {        
-                                                               $cat_id = db_fetch_result($result, 0, "id");
-                                                       }
-                                               }                                                               
-
-                                               $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
-                                                       (title = '$feed_title' OR feed_url = '$feed_url') 
-                                                       AND owner_uid = '$owner_uid'");
-
-                                               print "<tr><td><a href='$site_url'><b>$feed_title</b></a></b> 
-                                                       (<a href=\"$feed_url\">rss</a>)</td>";
-
-                                               if (db_num_rows($result) > 0) {
-                                                       print "<td>Already imported.</td>";
-                                               } else {
-
-                                                       if ($cat_id) {
-                                                               $add_query = "INSERT INTO ttrss_feeds 
-                                                                       (title, feed_url, owner_uid, cat_id, site_url) VALUES
-                                                                       ('$feed_title', '$feed_url', '$owner_uid', 
-                                                                               '$cat_id', '$site_url')";
-
-                                                       } else {
-                                                               $add_query = "INSERT INTO ttrss_feeds 
-                                                                       (title, feed_url, owner_uid, site_url) VALUES
-                                                                       ('$feed_title', '$feed_url', '$owner_uid', '$site_url')";
-
-                                                       }
-
-                                                       db_query($link, $add_query);
-                                                       
-                                                       print "<td><b>Done.</b></td>";
-                                               }
-
-                                               print "</tr>";
-                                               
-                                               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')");
+               }
 
-                                       print "</table>";
+               db_query($link, "COMMIT");
 
-                               } else {
-                                       print "<div class=\"error\">Error: can't find body element.</div>";
-                               }
-                       } else {
-                               print "<div class=\"error\">Error while parsing document.</div>";
-                       }
+               /* Handle OPML import by DOMXML/DOMDocument */
 
+               if (function_exists('domxml_open_file')) {
+                       print "<p>".__("Importing OPML (using DOMXML extension)...")."</p>";
+                       require_once "modules/opml_domxml.php";
+                       opml_import_domxml($link, $owner_uid);
+               } else if (PHP_VERSION >= 5) {
+                       print "<p>".__("Importing OPML (using DOMDocument extension)...")."</p>";
+                       require_once "modules/opml_domdoc.php";
+                       opml_import_domdoc($link, $owner_uid);
                } else {
-                       print "<div class=\"error\">Error: please upload OPML file.</div>";
+                       print_error(__("DOMXML extension is not found. It is required for PHP versions below 5."));
                }
 
-               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>";
 
        }