]> git.wh0rd.org - tt-rss.git/commitdiff
rework OPML import to use popup dialog
authorAndrew Dolgov <fox@bah.org.ru>
Wed, 13 Jan 2010 20:59:02 +0000 (23:59 +0300)
committerAndrew Dolgov <fox@bah.org.ru>
Wed, 13 Jan 2010 20:59:02 +0000 (23:59 +0300)
modules/opml_domdoc.php
modules/opml_domxml.php
modules/popup-dialog.php
modules/pref-feeds.php
prefs.js

index a29a1eb6930d4b5f4974a5b3d2659f3a36172b7f..51b77133743a424ebca94f847bcb846945b0a701 100644 (file)
@@ -22,8 +22,6 @@
 
                                $outlines = $xpath->query($query);
 
-                               print "<table>";
-
                                foreach ($outlines as $outline) {
 
                                        $feed_title = db_escape_string($outline->attributes->getNamedItem('text')->nodeValue);
@@ -51,7 +49,7 @@
 
                                                if (db_num_rows($result) == 0) {
 
-                                                       printf(__("Adding category <b>%s</b>...<br>"), $cat_title);
+                                                       printf(__("<li>Adding category <b>%s</b>.</li>"), $cat_title);
 
                                                        db_query($link, "INSERT INTO ttrss_feed_categories
                                                                        (title,owner_uid) 
                                                        feed_url = '$feed_url'
                                                        AND owner_uid = '$owner_uid'");
 
-                                       print "<tr><td><a target='_blank' href='$site_url'><b>$feed_title</b></a></b> 
-                                               (<a target='_blank' href=\"$feed_url\">rss</a>)</td>";
+                                       print "<li><a target='_blank' href='$site_url'><b>$feed_title</b></a></b> 
+                                               (<a target='_blank' href=\"$feed_url\">rss</a>)&nbsp;";
 
                                        if (db_num_rows($result) > 0) {
-                                               print "<td>".__('Already imported.')."</td>";
+                                               print __('is already imported.');
                                        } else {
 
                                                if ($cat_id) {
                                                //print $add_query;
                                                db_query($link, $add_query);
 
-                                               print "<td><b>".__('Done.')."</b></td>";
+                                               print __('OK');
                                        }
 
-                                       print "</tr>";
+                                       print "</li>";
 
                                        db_query($link, "COMMIT");
                                }
 
-                               print "</table>";
-
                        } else {
-                               print "<div class=\"error\">".__('Error while parsing document.')."</div>";
+                               print_error(__('Error while parsing document.'));
                        }
 
                } else {
-                       print "<div class=\"error\">".__('Error: please upload OPML file.')."</div>";
+                       print_error(__('Error: please upload OPML file.'));
                }
 
 
index 9364145b14bdafe5b4eb9a33887a6a6a349f3173..1cc1467a844b6c8f784b7ef3535e4444f4bbe3e5 100644 (file)
 
                                        $outlines = $body->get_elements_by_tagname('outline');
 
-                                       print "<table>";
+                               foreach ($outlines as $outline) {
 
-                                       foreach ($outlines as $outline) {
+                                       $feed_title = db_escape_string($outline->get_attribute('text'));
 
-                                               $feed_title = db_escape_string($outline->get_attribute('text'));
-
-                                               if (!$feed_title) {
-                                                       $feed_title = db_escape_string($outline->get_attribute('title'));
-                                               }
+                                       if (!$feed_title) {
+                                               $feed_title = db_escape_string($outline->get_attribute('title'));
+                                       }
 
-                                               $cat_title = db_escape_string($outline->get_attribute('title'));
+                                       $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) {
+                                               $cat_title = db_escape_string($outline->get_attribute('text'));
+                                       }
 
-                                               if ($cat_title && !$feed_url) {
+                                       $feed_url = db_escape_string($outline->get_attribute('xmlUrl'));
+                                       $site_url = db_escape_string($outline->get_attribute('htmlUrl'));
 
-                                                       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 ($cat_title && !$feed_url) {
 
-                                                       if (db_num_rows($result) == 0) {
+                                               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");
 
-                                                               printf(__("Adding category <b>%s</b>."), $cat_title);
-                                                               print "<br>";
+                                               if (db_num_rows($result) == 0) {
 
-                                                               db_query($link, "INSERT INTO ttrss_feed_categories
-                                                                       (title,owner_uid) 
-                                                               VALUES ('$cat_title', '$owner_uid')");
-                                                       }
+                                                       printf(__("<li>Adding category <b>%s</b>.</li>"), $cat_title);
 
-                                                       db_query($link, "COMMIT");
+                                                       db_query($link, "INSERT INTO ttrss_feed_categories
+                                                               (title,owner_uid) 
+                                                       VALUES ('$cat_title', '$owner_uid')");
                                                }
 
-//                                             print "$active_category : $feed_title : $feed_url<br>";
+                                               db_query($link, "COMMIT");
+                                       }
 
-                                               if (!$feed_title || !$feed_url) continue;
+//                                             print "$active_category : $feed_title : $feed_url<br>";
 
-                                               db_query($link, "BEGIN");
+                                       if (!$feed_title || !$feed_url) continue;
 
-                                               $cat_id = null;
+                                       db_query($link, "BEGIN");
 
-                                               $parent_node = $outline->parent_node();
+                                       $cat_id = null;
 
-                                               if ($parent_node && $parent_node->node_name() == "outline") {
-                                                       $element_category = $parent_node->get_attribute('title');
-                                                       if (!$element_category) $element_category = $parent_node->get_attribute('text');
+                                       $parent_node = $outline->parent_node();
 
-                                               } else {
-                                                       $element_category = '';
-                                               }
+                                       if ($parent_node && $parent_node->node_name() == "outline") {
+                                               $element_category = $parent_node->get_attribute('title');
+                                               if (!$element_category) $element_category = $parent_node->get_attribute('text');
 
-                                               if ($element_category) {
+                                       } else {
+                                               $element_category = '';
+                                       }
 
-                                                       $element_category = db_escape_string($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");                                                             
+                                               $element_category = db_escape_string($element_category);
 
-                                                       if (db_num_rows($result) == 1) {        
-                                                               $cat_id = db_fetch_result($result, 0, "id");
-                                                       }
-                                               }                                                               
+                                               $result = db_query($link, "SELECT id FROM
+                                                               ttrss_feed_categories WHERE title = '$element_category' AND
+                                                               owner_uid = '$owner_uid' LIMIT 1");                                                             
 
-                                               $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
-                                                       feed_url = '$feed_url'
-                                                       AND owner_uid = '$owner_uid'");
+                                               if (db_num_rows($result) == 1) {        
+                                                       $cat_id = db_fetch_result($result, 0, "id");
+                                               }
+                                       }                                                               
 
-                                               print "<tr><td><a target='_blank' href='$site_url'><b>$feed_title</b></a></b> 
-                                                       (<a target='_blank' href=\"$feed_url\">rss</a>)</td>";
+                                       $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
+                                               feed_url = '$feed_url'
+                                               AND owner_uid = '$owner_uid'");
 
-                                               if (db_num_rows($result) > 0) {
-                                                       print "<td>".__("Already imported.")."</td>";
-                                               } else {
+                                       print "<li><a target='_blank' href='$site_url'><b>$feed_title</b></a></b> 
+                                               (<a target='_blank' href=\"$feed_url\">rss</a>)&nbsp;";
 
-                                                       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')";
+                                       if (db_num_rows($result) > 0) {
+                                               print __("is already imported.");
+                                       } else {
 
-                                                       } else {
-                                                               $add_query = "INSERT INTO ttrss_feeds 
-                                                                       (title, feed_url, owner_uid, cat_id, site_url) VALUES
-                                                                       ('$feed_title', '$feed_url', '$owner_uid', '$default_cat_id',
-                                                                               '$site_url')";
+                                               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, cat_id, site_url) VALUES
+                                                               ('$feed_title', '$feed_url', '$owner_uid', '$default_cat_id',
+                                                                       '$site_url')";
 
-                                                       db_query($link, $add_query);
-                                                       
-                                                       print "<td><b>".__('Done.')."</b></td>";
                                                }
 
-                                               print "</tr>";
+                                               db_query($link, $add_query);
                                                
-                                               db_query($link, "COMMIT");
+                                               print __('OK');
                                        }
 
-                                       print "</table>";
+                                       print "</li>";
+                                       
+                                       db_query($link, "COMMIT");
+                               }
 
                                } else {
-                                       print "<div class=\"error\">".__("Error: can't find body element.")."</div>";
+                                       print_error(__("Error: can't find body element."));
                                }
                        } else {
-                               print "<div class=\"error\">".__("Error while parsing document.")."</div>";
+                               print_error(__("Error while parsing document."));
                        }
 
                } else {
-                       print "<div class=\"error\">".__("Error: please upload OPML file.")."</div>";
+                       print_error(__("Error: please upload OPML file."));
                }
 
        }
index 7ba30a9f711f8250a198ac1c85cf7fed4cf3f653..06a82ad575ca2f0cd91cc82a9b7ffef177105ea1 100644 (file)
@@ -3,6 +3,67 @@
                $id = $_REQUEST["id"];
                $param = db_escape_string($_REQUEST["param"]);
 
+               if ($id == "importOpml") {
+                       print "<div id=\"infoBoxTitle\">".__('OPML Import')."</div>";
+                       print "<div class=\"infoBoxContents\">";
+
+                       print "<div class=\"prefFeedCatHolder\">";
+
+                       $owner_uid = $_SESSION["uid"];
+
+                       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 */
+
+                       if (function_exists('domxml_open_file')) {
+                               print "<ul class='nomarks'>";
+                               print "<li>".__("Importing using DOMXML.")."</li>";
+                               require_once "modules/opml_domxml.php";
+                               opml_import_domxml($link, $owner_uid);
+                               print "</ul>";
+                       } else if (PHP_VERSION >= 5) {
+                               print "<ul class='nomarks'>";
+                               print "<li>".__("Importing using DOMDocument.")."</li>";
+                               require_once "modules/opml_domdoc.php";
+                               opml_import_domdoc($link, $owner_uid);
+                               print "</ul>";
+                       } else {
+                               print_error(__("DOMXML extension is not found. It is required for PHP versions below 5."));
+                       }
+
+                       print "</div>";
+
+                       print "<div align='center'>";
+
+                       print "<input class=\"button\"
+                               type=\"submit\" onclick=\"return opmlImportDone()\" 
+                               value=\"".__('Close this window')."\">";
+
+                       print "</div>";
+
+                       print "<script type=\"text/javascript\">";
+                       print "parent.opml_import_handler(this)";
+                       print "</script>";
+
+                       print "</div></div>";
+
+                       return;
+               }
+
                if ($id == "editPrefProfiles") {
 
                        print "<div id=\"infoBoxTitle\">".__('Settings Profiles')."</div>";
index 05c796bb39a4c3cc92cca069c4e50fd2d3dd367b..e724125ecd2c0a30ae81c02d3d154eac7eb9c1b6 100644 (file)
                        foreach ($ids as $id) {
                                remove_feed($link, $id, $_SESSION["uid"]);
                        }
+
+                       return;
                }
 
                if ($subop == "clear") {
 
                }
 
-               print "<h3>".__('OPML')."</h3>
+               print "<h3>".__('OPML')."</h3>";
 
-               <div style='float : left'>
+/*             print "<div style='float : left'>
                <form   enctype=\"multipart/form-data\" method=\"POST\" action=\"opml.php\">
                ".__('File:')." <input id=\"opml_file\" name=\"opml_file\" type=\"file\">&nbsp;
                        <input type=\"hidden\" name=\"op\" value=\"Import\">
                                type=\"submit\">".__('Import')."</button>
                                </form></div>";
 
-               print "&nbsp;";
+               print "&nbsp;"; */
+
+               print "<iframe name=\"upload_iframe\" onchange=\"opml_import_handler(this)\"
+                       style=\"width: 400px; height: 100px; display: none;\"></iframe>";
+
+               print "<div style='float : left'>";
+               print "<form style='display : block' target=\"upload_iframe\"
+                       enctype=\"multipart/form-data\" method=\"POST\" 
+                               action=\"backend.php\">
+                       <input id=\"opml_file\" name=\"opml_file\" type=\"file\">&nbsp;
+                       <input type=\"hidden\" name=\"op\" value=\"dlg\">
+                       <input type=\"hidden\" name=\"id\" value=\"importOpml\">
+                       <button onclick=\"return opmlImport();\"
+                               type=\"submit\">".__('Import')."</button>
+                       </form>";
+               print "</div>&nbsp;";
 
                print "<button onclick=\"gotoExportOpml()\">".
                        __('Export OPML')."</button>";
index 27a86c9d3fc01d18b21d7a53ba8564e3fd892929..6c7f6f6366e321b5e935f37106b6b927ff6462a5 100644 (file)
--- a/prefs.js
+++ b/prefs.js
@@ -576,15 +576,17 @@ function removeSelectedFeeds() {
        
                        if (ok) {
        
-                               notify_progress("Unsubscribing from selected feeds...");
+                               notify_progress("Unsubscribing from selected feeds...", true);
                
                                var query = "?op=pref-feeds&subop=remove&ids="+
                                        param_escape(sel_rows.toString());
-       
+
+                               debug(query);
+
                                new Ajax.Request("backend.php", {
                                        parameters: query,
                                        onComplete: function(transport) {
-                                                       feedlist_callback2(transport);
+                                               updateFeedList();
                                                } });
                        }
        
@@ -996,7 +998,7 @@ function piggie(enable) {
        }
 }
 
-function validateOpmlImport() {
+function opmlImport() {
        
        var opml_file = $("opml_file");
 
@@ -1006,6 +1008,8 @@ function validateOpmlImport() {
        } else {
                return true;
        }
+
+       notify_progress("Importing, please wait...", true);
 }
 
 function updateFilterList(sort_key) {
@@ -2224,4 +2228,19 @@ function activatePrefProfile() {
        return false;
 }
 
+function opmlImportDone() {
+       closeInfoBox();
+       updateFeedList();
+}
+
+function opml_import_handler(iframe) {
+       try {
+               var tmp = new Object();
+               tmp.responseText = iframe.document.body.innerHTML;
+               notify('');
+               infobox_callback2(tmp);
 
+       } catch (e) {
+               exception_error("opml_import_handler", e);
+       }
+}