]> git.wh0rd.org - tt-rss.git/blobdiff - modules/popup-dialog.php
replace old-style published feed with universal secretkey-based approach used for...
[tt-rss.git] / modules / popup-dialog.php
index a80d612876e112c0e31b68d63393dc6f0aa97e2b..61efd4c991717bce5f5859451c6ad9dad2c2e1ef 100644 (file)
                        if (function_exists('domxml_open_file')) {
                                print "<ul class='nomarks'>";
                                print "<li>".__("Importing using DOMXML.")."</li>";
-                               require_once "modules/opml_domxml.php";
+                               require_once "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";
+                               require_once "opml_domdoc.php";
                                opml_import_domdoc($link, $owner_uid);
                                print "</ul>";
                        } else {
                        return;
                }
 
-               if ($id == "pubUrl") {
-
-                       print "<div id=\"infoBoxTitle\">".__('Published Articles')."</div>";
-                       print "<div class=\"infoBoxContents\">";
-       
-                       $url_path = article_publish_url($link);
-
-                       print __("Your Published articles feed URL is:");
-
-                       print "<div class=\"tagCloudContainer\">";
-                       print "<a id='pub_feed_url' href='$url_path' target='_blank'>$url_path</a>";
-                       print "</div>";
-
-                       print "<div align='center'>";
-
-                       print "<button onclick=\"return pubRegenKey()\">".
-                               __('Generate new URL')."</button> ";
-
-                       print "<input class=\"button\"
-                               type=\"submit\" onclick=\"return closeInfoBox()\" 
-                               value=\"".__('Close this window')."\">";
-
-                       print "</div></div>";
-
-                       return;
-               }
-
                if ($id == "pubOPMLUrl") {
 
                        print "<div id=\"infoBoxTitle\">".__('Public OPML URL')."</div>";
                        if ($param == 1) {
                                print __("Update daemon is enabled in configuration, but daemon process is not running, which prevents all feeds from updating. Please start the daemon process or contact instance owner.");
 
-                               $stamp = (int)read_stampfile("update_daemon.stamp");
+                               $stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
 
                                print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp); 
 
                        if ($param == 3) {
                                print __("Update daemon is taking too long to perform a feed update. This could indicate a problem like crash or a hang. Please check the daemon process or contact instance owner.");
 
-                               $stamp = (int)read_stampfile("update_daemon.stamp");
+                               $stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
 
                                print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp); 
 
 
                        print "<input size=\"40\"
                                        onkeypress=\"return filterCR(event, subscribeToFeed)\"
-                                       name=\"feed\" id=\"feed_url\"></td></tr>";
+                                       name=\"feed\" id=\"feed_url\">";
 
                        print "<br/>";
 
                        return;
                }
 
-/*             if ($id == "offlineDownload") {
-                       print "<div id=\"infoBoxTitle\">".__('Download articles')."</div>";
+               if ($id == "emailArticle") {
+
+                       print "<div id=\"infoBoxTitle\">".__('Forward article by email')."</div>";
                        print "<div class=\"infoBoxContents\">";
 
-                       print "<form name='download_ops_form' id='download_ops_form'>";
+                       print "<form id=\"article_email_form\" onsubmit='return false'>";
 
-                       print "<div class=\"dlgSec\">".__("Download")."</div>";
+                       $secretkey = sha1(uniqid(rand(), true));
 
-                       print "<div class=\"dlgSecCont\">";
+                       $_SESSION['email_secretkey'] = $secretkey;
 
-                       $amount = array(
-                               50  => 50,
-                               100 => 100,
-                               250 => 250,
-                               500 => 500);
+                       print "<input type=\"hidden\" name=\"secretkey\" value=\"$secretkey\">";
+                       print "<input type=\"hidden\" name=\"op\" value=\"rpc\">";
+                       print "<input type=\"hidden\" name=\"subop\" value=\"sendEmail\">"; 
 
-                       print_select_hash("amount", 50, $amount);
+                       $result = db_query($link, "SELECT email FROM ttrss_users WHERE
+                               id = " . $_SESSION["uid"]);
 
-                       print " " . __("latest articles for offline reading.");
+                       $user_email = htmlspecialchars(db_fetch_result($result, 0, "email"));
+                       $user_name = htmlspecialchars($_SESSION["name"]);
 
-                       print "<br/>";
+                       $_SESSION['email_replyto'] = $user_email;
+                       $_SESSION['email_fromname'] = $user_name;
 
-                       print "<input checked='yes' type='checkbox' name='unread_only' id='unread_only'>";
-                       print "<label for='unread_only'>".__('Only include unread articles')."</label>";
+                       require_once "lib/MiniTemplator.class.php";
 
-                       print "</div>";
+                       $tpl = new MiniTemplator;
+                       $tpl_t = new MiniTemplator;
+
+                       $tpl->readTemplateFromFile("templates/email_article_template.txt");
+
+                       $tpl->setVariable('USER_NAME', $_SESSION["name"]);
+                       $tpl->setVariable('USER_EMAIL', $user_email);
+                       $tpl->setVariable('TTRSS_HOST', $_SERVER["HTTP_HOST"]);
+
+//                     $tpl->addBlock('header');
+
+                       $result = db_query($link, "SELECT link, content, title
+                               FROM ttrss_user_entries, ttrss_entries WHERE id = ref_id AND
+                               id IN ($param) AND owner_uid = " . $_SESSION["uid"]);
+
+                       if (db_num_rows($result) > 1) {
+                               $subject = __("[Forwarded]") . " " . __("Multiple articles");
+                       }
+
+                       while ($line = db_fetch_assoc($result)) {
+
+                               if (!$subject)
+                                       $subject = __("[Forwarded]") . " " . htmlspecialchars($line["title"]);
+
+                               $tpl->setVariable('ARTICLE_TITLE', strip_tags($line["title"]));
+                               $tpl->setVariable('ARTICLE_URL', strip_tags($line["link"]));
+
+                               $tpl->addBlock('article');
+                       }
+
+                       $tpl->addBlock('email');
+
+                       $content = "";
+                       $tpl->generateOutputToString($content);
+
+                       print "<table width='100%'><tr><td>";
+
+                       print __('From:');
+
+                       print "</td><td>";
+
+                       print "<input size=\"40\" disabled
+                                       onkeypress=\"return filterCR(event, false)\"
+                                       value=\"$user_name <$user_email>\">";
+
+                       print "</td></tr><tr><td>";
+
+                       print __('To:');
+
+                       print "</td><td>";
+
+                       print "<input size=\"40\"
+                                       onkeypress=\"return filterCR(event, false)\"
+                                       name=\"destination\" id=\"destination\">";
+
+                       print "<div class=\"autocomplete\" id=\"destination_choices\" 
+                                       style=\"display:none\"></div>"; 
+
+                       print "</td></tr><tr><td>";
+
+                       print __('Subject:');
+
+                       print "</td><td>";
+
+                       print "<input size=\"60\" class=\"iedit\"
+                                       onkeypress=\"return filterCR(event, false)\"
+                                       name=\"subject\" value=\"$subject\" id=\"subject\">";
+
+                       print "</td></tr></table>";
+
+                       print "<textarea rows='10' class='iedit' style='font-size : small'
+                               name='content'>$content</textarea>";
 
                        print "</form>";
 
-                       print "<div class=\"dlgButtons\">
-                               <input class=\"button\"
-                                       type=\"submit\" onclick=\"return initiate_offline_download(0, this)\" value=\"".__('Download')."\">
-                               <input class=\"button\"
-                                       type=\"submit\" onclick=\"return closeInfoBox()\" 
-                                       value=\"".__('Cancel')."\"></div>";
+                       print "<div class='dlgButtons'>";
+
+                       print "<button onclick=\"return emailArticleDo()\">".__('Send e-mail')."</button> ";
+                       print "<button onclick=\"return closeInfoBox()\">".__('Cancel')."</button>";
 
                        print "</div>";
 
                        return;
-               } */
+               }
 
+               if ($id == "generatedFeed") {
+
+                       print "<div id=\"infoBoxTitle\">".__('View as RSS')."</div>";
+                       print "<div class=\"infoBoxContents\">";
+       
+                       $params = explode(":", $param, 3);
+                       $feed_id = db_escape_string($params[0]);
+                       $is_cat = (bool) $params[1];
+
+                       $key = get_feed_access_key($link, $feed_id, $is_cat);
+
+                       $url_path = htmlspecialchars($params[2]) . "&key=" . $key;
+
+                       print __("You can view this feed as RSS using the following URL:");
+
+                       print "<div class=\"tagCloudContainer\">";
+                       print "<a id='gen_feed_url' href='$url_path' target='_blank'>$url_path</a>";
+                       print "</div>";
+
+                       print "<div align='center'>";
+
+                       print "<button onclick=\"return genUrlChangeKey('$feed_id', '$is_cat')\">".
+                               __('Generate new URL')."</button> ";
+
+                       print "<input class=\"button\"
+                               type=\"submit\" onclick=\"return closeInfoBox()\" 
+                               value=\"".__('Close this window')."\">";
+
+                       print "</div></div>";
+
+                       return;
+               }
 
                print "<div id='infoBoxTitle'>Internal Error</div>
                        <div id='infoBoxContents'>