2 function module_popup_dialog($link) {
4 $param = db_escape_string($_REQUEST["param"]);
6 print "<dlg id=\"$id\">";
8 if ($id == "importOpml") {
9 print "<title>".__('OPML Import')."</title>";
10 print "<content><![CDATA[";
12 print "<div class=\"prefFeedCatHolder\">";
14 $owner_uid = $_SESSION["uid"];
16 db_query($link, "BEGIN");
18 /* create Imported feeds category just in case */
20 $result = db_query($link, "SELECT id FROM
21 ttrss_feed_categories WHERE title = 'Imported feeds' AND
22 owner_uid = '$owner_uid' LIMIT 1");
24 if (db_num_rows($result) == 0) {
25 db_query($link, "INSERT INTO ttrss_feed_categories
27 VALUES ('Imported feeds', '$owner_uid')");
30 db_query($link, "COMMIT");
32 /* Handle OPML import by DOMXML/DOMDocument */
34 if (function_exists('domxml_open_file')) {
35 print "<ul class='nomarks'>";
36 print "<li>".__("Importing using DOMXML.")."</li>";
37 require_once "opml_domxml.php";
38 opml_import_domxml($link, $owner_uid);
40 } else if (PHP_VERSION >= 5) {
41 print "<ul class='nomarks'>";
42 print "<li>".__("Importing using DOMDocument.")."</li>";
43 require_once "opml_domdoc.php";
44 opml_import_domdoc($link, $owner_uid);
47 print_error(__("DOMXML extension is not found. It is required for PHP versions below 5."));
52 print "<div align='center'>";
54 print "<button onclick=\"return opmlImportDone()\">".
55 __('Close this window')."</button>";
59 print "<script type=\"text/javascript\">";
60 print "parent.opmlImportHandler(this)";
64 print "]]></content>";
69 if ($id == "editPrefProfiles") {
71 print "<title>".__('Settings Profiles')."</title>";
72 print "<content><![CDATA[";
74 print "<div><input id=\"fadd_profile\"
75 onkeypress=\"return filterCR(event, addPrefProfile)\"
77 <button onclick=\"javascript:addPrefProfile()\">".
78 __('Create profile')."</button></div>";
82 $result = db_query($link, "SELECT title,id FROM ttrss_settings_profiles
83 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
86 <a href=\"#\" onclick=\"selectTableRows('prefFeedCatList', 'all')\">".__('All')."</a>,
87 <a href=\"#\" onclick=\"selectTableRows('prefFeedCatList', 'none')\">".__('None')."</a>";
89 print "<div class=\"prefFeedCatHolder\">";
91 print "<form id=\"profile_edit_form\" onsubmit=\"return false\">";
93 print "<table width=\"100%\" class=\"prefFeedCatList\"
94 cellspacing=\"0\" id=\"prefFeedCatList\">";
96 print "<tr class=\"odd\" id=\"FCATR-0\">";
98 print "<td width='5%' align='center'><input
99 onclick='toggleSelectRow(this);'
100 type=\"checkbox\" id=\"FCCHK-0\"></td>";
102 if (!$_SESSION["profile"]) {
103 $is_active = __("(active)");
108 print "<td><span id=\"FCATT-0\">" .
109 __("Default profile") . " $is_active</span></td>";
115 while ($line = db_fetch_assoc($result)) {
117 $class = ($lnum % 2) ? "even" : "odd";
119 $cat_id = $line["id"];
120 $this_row_id = "id=\"FCATR-$cat_id\"";
122 print "<tr class=\"$class\" $this_row_id>";
124 $edit_title = htmlspecialchars($line["title"]);
126 print "<td width='5%' align='center'><input
127 onclick='toggleSelectRow(this);'
128 type=\"checkbox\" id=\"FCCHK-$cat_id\"></td>";
130 if ($_SESSION["profile"] == $line["id"]) {
131 $is_active = __("(active)");
136 print "<td><span id=\"FCATT-$cat_id\">" .
137 $edit_title . "</span> $is_active</td>";
148 print "<div class='dlgButtons'>
149 <div style='float : left'>
150 <button onclick=\"return removeSelectedPrefProfiles()\">".
151 __('Remove')."</button>
152 <button onclick=\"return activatePrefProfile()\">".
153 __('Activate')."</button>
156 print "<button onclick=\"return closeInfoBox()\">".
157 __('Close this window')."</button>";
160 print "]]></content>";
165 if ($id == "pubOPMLUrl") {
167 print "<title>".__('Public OPML URL')."</title>";
168 print "<content><![CDATA[";
170 $url_path = opml_publish_url($link);
172 print __("Your Public OPML URL is:");
174 print "<div class=\"tagCloudContainer\">";
175 print "<a id='pub_opml_url' href='$url_path' target='_blank'>$url_path</a>";
178 print "<div align='center'>";
180 print "<button dojoType=\"dijit.form.Button\" onclick=\"return opmlRegenKey()\">".
181 __('Generate new URL')."</button> ";
183 print "<button dojoType=\"dijit.form.Button\" onclick=\"return closeInfoBox()\">".
184 __('Close this window')."</button>";
187 print "]]></content>";
192 if ($id == "explainError") {
194 print "<title>".__('Notice')."</title>";
195 print "<content><![CDATA[";
197 print "<div class=\"errorExplained\">";
200 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.");
202 $stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
204 print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp);
209 $msg = check_for_update($link);
212 print __("You are running the latest version of Tiny Tiny RSS. The fact that you are seeing this dialog is probably a bug.");
220 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.");
222 $stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
224 print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp);
230 print "<div align='center'>";
232 print "<button onclick=\"return closeInfoBox()\"".
233 __('Close this window')."</button>";
236 print "]]></content>";
241 if ($id == "quickAddFeed") {
243 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
244 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"addfeed\">";
246 print "<div class=\"dlgSec\">".__("Feed")."</div>";
247 print "<div class=\"dlgSecCont\">";
249 print "<input style=\"font-size : 16px; width : 20em;\"
250 placeHolder=\"".__("Feed URL")."\"
251 dojoType=\"dijit.form.ValidationTextBox\" required=\"1\" name=\"feed\" id=\"feedDlg_feedUrl\">";
255 if (get_pref($link, 'ENABLE_FEED_CATS')) {
256 print __('Place in category:') . " ";
257 print_feed_cat_select($link, "cat", false, 'dojoType="dijit.form.Select"');
262 print '<div id="feedDlg_feedsContainer" style="display : none">
264 <div class="dlgSec">' . __('Available feeds') . '</div>
265 <div class="dlgSecCont">'.
266 '<select id="feedDlg_feedContainerSelect"
267 dojoType="dijit.form.Select" size="3">
268 <script type="dojo/method" event="onChange" args="value">
269 dijit.byId("feedDlg_feedUrl").attr("value", value);
274 print "<div id='feedDlg_loginContainer' style='display : none'>
276 <div class=\"dlgSec\">".__("Authentication")."</div>
277 <div class=\"dlgSecCont\">".
279 " <input dojoType=\"dijit.form.TextBox\" name='login'\"
280 placeHolder=\"".__("Login")."\"
281 style=\"width : 10em;\"> ".
283 placeHolder=\"".__("Password")."\"
284 dojoType=\"dijit.form.TextBox\" type='password'
285 style=\"width : 10em;\" name='pass'\">
289 print "<div style=\"clear : both\">
290 <input type=\"checkbox\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
291 onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
292 <label for=\"feedDlg_loginCheck\">".
293 __('This feed requires authentication.')."</div>";
297 print "<div class=\"dlgButtons\">
298 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').execute()\">".__('Subscribe')."</button>
299 <button dojoType=\"dijit.form.Button\" onclick=\"return feedBrowser()\">".__('More feeds')."</button>
300 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').hide()\">".__('Cancel')."</button>
306 if ($id == "feedBrowser") {
308 $browser_search = db_escape_string($_REQUEST["search"]);
310 # print "<form onsubmit='return false;' display='inline'
311 # name='feed_browser' id='feed_browser'>";
313 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
314 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"updateFeedBrowser\">";
316 print "<div dojoType=\"dijit.Toolbar\">
317 <div style='float : right'>
318 <img style='display : none'
319 id='feed_browser_spinner' src='".
320 theme_image($link, 'images/indicator_white.gif')."'>
321 <input name=\"search\" dojoType=\"dijit.form.TextBox\" size=\"20\" type=\"search\"
322 onchange=\"dijit.byId('feedBrowserDlg').update()\" value=\"$browser_search\">
323 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').update()\">".__('Search')."</button>
326 print " <select name=\"mode\" dojoType=\"dijit.form.Select\" onchange=\"dijit.byId('feedBrowserDlg').update()\">
327 <option value='1'>" . __('Popular feeds') . "</option>
328 <option value='2'>" . __('Feed archive') . "</option>
333 print " <select dojoType=\"dijit.form.Select\" name=\"limit\" onchange=\"dijit.byId('feedBrowserDlg').update()\">";
335 foreach (array(25, 50, 100, 200) as $l) {
336 $issel = ($l == $limit) ? "selected=\"1\"" : "";
337 print "<option $issel value=\"$l\">$l</option>";
344 $owner_uid = $_SESSION["uid"];
346 print "<ul class='browseFeedList' id='browseFeedList'>";
347 print_feed_browser($link, $search, 25);
350 print "<div align='center'>
351 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').execute()\">".__('Subscribe')."</button>
352 <button dojoType=\"dijit.form.Button\" style='display : none' id='feed_archive_remove' onclick=\"dijit.byId('feedBrowserDlg').removeFromArchive()\">".__('Remove')."</button>
353 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').hide()\" >".__('Cancel')."</button></div>";
357 if ($id == "search") {
359 print "<title>".__('Search')."</title>";
360 print "<content><![CDATA[";
362 print "<form id='search_form' onsubmit='return false'>";
364 #$active_feed_id = db_escape_string($_REQUEST["param"]);
366 $params = explode(":", db_escape_string($_REQUEST["param"]), 2);
368 $active_feed_id = sprintf("%d", $params[0]);
369 $is_cat = (bool) $params[1];
371 print "<div class=\"dlgSec\">".__('Look for')."</div>";
373 print "<div class=\"dlgSecCont\">";
375 if (!SPHINX_ENABLE) {
377 print "<input onkeypress=\"return filterCR(event, search)\"
378 name=\"query\" size=\"20\" type=\"search\" value=''>";
380 print " " . __('match on')." ";
382 $search_fields = array(
383 "title" => __("Title"),
384 "content" => __("Content"),
385 "both" => __("Title or content"));
387 print_select_hash("match_on", 3, $search_fields);
389 print "<input onkeypress=\"return filterCR(event, search)\"
390 name=\"query\" size=\"50\" type=\"search\" value=''>";
394 print "<br/>".__('Limit search to:')." ";
396 print "<select name=\"search_mode\">
397 <option value=\"all_feeds\">".__('All feeds')."</option>";
399 $feed_title = getFeedTitle($link, $active_feed_id);
402 $feed_cat_title = getFeedCatTitle($link, $active_feed_id);
404 $feed_cat_title = getCategoryTitle($link, $active_feed_id);
407 if ($active_feed_id && !$is_cat) {
408 print "<option selected value=\"this_feed\">$feed_title</option>";
410 print "<option disabled>".__('This feed')."</option>";
414 $cat_preselected = "selected";
417 if (get_pref($link, 'ENABLE_FEED_CATS') && ($active_feed_id > 0 || $is_cat)) {
418 print "<option $cat_preselected value=\"this_cat\">$feed_cat_title</option>";
420 //print "<option disabled>".__('This category')."</option>";
429 print "<div class=\"dlgButtons\">
430 <button onclick=\"javascript:search()\">".__('Search')."</button>
431 <button onclick=\"javascript:closeInfoBox(true)\">".__('Cancel')."</button>
434 print "]]></content>";
440 if ($id == "quickAddFilter") {
442 $active_feed_id = db_escape_string($_REQUEST["param"]);
444 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-filters\">";
445 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"quiet\" value=\"1\">";
446 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"add\">";
448 $result = db_query($link, "SELECT id,description
449 FROM ttrss_filter_types ORDER BY description");
451 $filter_types = array();
453 while ($line = db_fetch_assoc($result)) {
454 //array_push($filter_types, $line["description"]);
455 $filter_types[$line["id"]] = __($line["description"]);
458 print "<div class=\"dlgSec\">".__("Match")."</div>";
460 print "<div class=\"dlgSecCont\">";
462 print "<span id=\"filterDlg_dateModBox\" style=\"display : none\">";
464 $filter_params = array(
465 "before" => __("before"),
466 "after" => __("after"));
468 print_select_hash("filter_date_modifier", "before",
469 $filter_params, 'dojoType="dijit.form.Select"');
471 print " </span>";
473 print "<input dojoType=\"dijit.form.ValidationTextBox\"
474 required=\"true\" id=\"filterDlg_regExp\"
475 style=\"font-size : 16px\"
476 name=\"reg_exp\" value=\"$reg_exp\"/>";
478 print "<span id=\"filterDlg_dateChkBox\" style=\"display : none\">";
479 print " <button onclick=\"return filterDlgCheckDate()\">".
480 __('Check it')."</button>";
483 print "<br/>" . __("on field") . " ";
484 print_select_hash("filter_type", 1, $filter_types,
485 'onchange="filterDlgCheckType(this)" dojoType="dijit.form.Select"');
489 print __("in") . " ";
490 print_feed_select($link, "feed_id", $active_feed_id,
491 'dojoType="dijit.form.FilteringSelect"');
495 print "<div class=\"dlgSec\">".__("Perform Action")."</div>";
497 print "<div class=\"dlgSecCont\">";
499 print "<select name=\"action_id\" dojoType=\"dijit.form.Select\"
500 onchange=\"filterDlgCheckAction(this)\">";
502 $result = db_query($link, "SELECT id,description FROM ttrss_filter_actions
505 while ($line = db_fetch_assoc($result)) {
506 printf("<option value='%d'>%s</option>", $line["id"], __($line["description"]));
511 print "<span id=\"filterDlg_paramBox\" style=\"display : none\">";
512 print " " . __("with parameters:") . " ";
513 print "<input dojoType=\"dijit.form.TextBox\"
514 id=\"filterDlg_actionParam\"
515 name=\"action_param\">";
517 print_label_select($link, "action_param_label", $action_param,
518 'id="filterDlg_actionParamLabel" dojoType="dijit.form.Select"');
522 print " "; // tiny layout hack
526 print "<div class=\"dlgSec\">".__("Options")."</div>";
527 print "<div class=\"dlgSecCont\">";
529 print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"enabled\" id=\"enabled\" checked=\"1\">
530 <label for=\"enabled\">".__('Enabled')."</label><br/>";
532 print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"inverse\" id=\"inverse\">
533 <label for=\"inverse\">".__('Inverse match')."</label>";
537 print "<div class=\"dlgButtons\">";
539 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').execute()\">".
540 __('Create')."</button> ";
542 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').hide()\">".
543 __('Cancel')."</button>";
550 if ($id == "feedUpdateErrors") {
552 print "<title>".__('Feeds with update errors')."</title>";
553 print "<content><![CDATA[";
555 print __("These feeds have not been updated because of errors:");
557 $result = db_query($link, "SELECT id,title,feed_url,last_error
558 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
560 print "<ul class='feedErrorsList'>";
562 while ($line = db_fetch_assoc($result)) {
563 print "<li><b>" . $line["title"] . "</b> (" . $line["feed_url"] . "): " .
564 "<em>" . $line["last_error"] . "</em>";
569 print "<div align='center'>";
571 print "<button dojoType=\"dijit.form.Button\"
572 onclick=\"return closeInfoBox()\">".
573 __('Close this window')."</button>";
575 print "]]></content>";
580 if ($id == "editArticleTags") {
582 print "<title>".__('Edit Tags')."</title>";
583 print "<content><![CDATA[";
585 print "<form id=\"tag_edit_form\" onsubmit='return false'>";
587 print __("Tags for this article (separated by commas):")."<br>";
589 $tags = get_article_tags($link, $param);
591 $tags_str = join(", ", $tags);
593 print "<table width='100%'>";
595 print "<tr><td colspan='2'><input type=\"hidden\" name=\"id\" value=\"$param\"></td></tr>";
597 print "<tr><td colspan='2'><textarea rows='4' class='iedit' id='tags_str'
598 name='tags_str'>$tags_str</textarea>
599 <div class=\"autocomplete\" id=\"tags_choices\"
600 style=\"display:none\"></div>
607 print "<div align='right'>";
609 print "<button onclick=\"return editTagsSave()\">".__('Save')."</button> ";
610 print "<button onclick=\"return closeInfoBox()\">".__('Cancel')."</button>";
612 print "]]></content>";
617 if ($id == "printTagCloud") {
618 print "<title>".__('Tag Cloud')."</title>";
619 print "<content><![CDATA[";
621 # print __("Showing most popular tags ")." (<a
622 # href='javascript:toggleTags(true)'>".__('more tags')."</a>):<br/>";
624 print "<div class=\"tagCloudContainer\">";
626 printTagCloud($link);
630 print "<div align='center'>";
631 print "<button onclick=\"return closeInfoBox()\">".
632 __('Close this window')."</button>";
635 print "]]></content>";
640 if ($id == "emailArticle") {
642 $secretkey = sha1(uniqid(rand(), true));
644 $_SESSION['email_secretkey'] = $secretkey;
646 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"secretkey\" value=\"$secretkey\">";
647 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
648 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"sendEmail\">";
650 $result = db_query($link, "SELECT email, full_name FROM ttrss_users WHERE
651 id = " . $_SESSION["uid"]);
653 $user_email = htmlspecialchars(db_fetch_result($result, 0, "email"));
654 $user_name = htmlspecialchars(db_fetch_result($result, 0, "full_name"));
656 if (!$user_name) $user_name = $_SESSION['name'];
658 $_SESSION['email_replyto'] = $user_email;
659 $_SESSION['email_fromname'] = $user_name;
661 require_once "lib/MiniTemplator.class.php";
663 $tpl = new MiniTemplator;
664 $tpl_t = new MiniTemplator;
666 $tpl->readTemplateFromFile("templates/email_article_template.txt");
668 $tpl->setVariable('USER_NAME', $_SESSION["name"]);
669 $tpl->setVariable('USER_EMAIL', $user_email);
670 $tpl->setVariable('TTRSS_HOST', $_SERVER["HTTP_HOST"]);
672 // $tpl->addBlock('header');
674 $result = db_query($link, "SELECT link, content, title
675 FROM ttrss_user_entries, ttrss_entries WHERE id = ref_id AND
676 id IN ($param) AND owner_uid = " . $_SESSION["uid"]);
678 if (db_num_rows($result) > 1) {
679 $subject = __("[Forwarded]") . " " . __("Multiple articles");
682 while ($line = db_fetch_assoc($result)) {
685 $subject = __("[Forwarded]") . " " . htmlspecialchars($line["title"]);
687 $tpl->setVariable('ARTICLE_TITLE', strip_tags($line["title"]));
688 $tpl->setVariable('ARTICLE_URL', strip_tags($line["link"]));
690 $tpl->addBlock('article');
693 $tpl->addBlock('email');
696 $tpl->generateOutputToString($content);
698 print "<table width='100%'><tr><td>";
704 print "<input dojoType=\"dijit.form.TextBox\" disabled=\"1\" style=\"width : 30em;\"
705 value=\"$user_name <$user_email>\">";
707 print "</td></tr><tr><td>";
713 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"true\"
714 style=\"width : 30em;\"
715 name=\"destination\" id=\"emailArticleDlg_destination\">";
717 print "<div class=\"autocomplete\" id=\"emailArticleDlg_dst_choices\"
718 style=\"z-index: 30; display : none\"></div>";
720 print "</td></tr><tr><td>";
722 print __('Subject:');
726 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"true\"
727 style=\"width : 30em;\"
728 name=\"subject\" value=\"$subject\" id=\"subject\">";
732 print "<tr><td colspan='2'><textarea dojoType=\"dijit.form.SimpleTextarea\" style='font-size : 12px; width : 100%' rows=\"20\"
733 name='content'>$content</textarea>";
735 print "</td></tr></table>";
737 print "<div class='dlgButtons'>";
738 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('emailArticleDlg').execute()\">".__('Send e-mail')."</button> ";
739 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('emailArticleDlg').hide()\">".__('Cancel')."</button>";
745 if ($id == "generatedFeed") {
747 print "<title>".__('View as RSS')."</title>";
748 print "<content><![CDATA[";
750 $params = explode(":", $param, 3);
751 $feed_id = db_escape_string($params[0]);
752 $is_cat = (bool) $params[1];
754 $key = get_feed_access_key($link, $feed_id, $is_cat);
756 $url_path = htmlspecialchars($params[2]) . "&key=" . $key;
758 print __("You can view this feed as RSS using the following URL:");
760 print "<div class=\"tagCloudContainer\">";
761 print "<a id='gen_feed_url' href='$url_path' target='_blank'>$url_path</a>";
764 print "<div align='center'>";
766 print "<button dojoType=\"dijit.form.Button\" onclick=\"return genUrlChangeKey('$feed_id', '$is_cat')\">".
767 __('Generate new URL')."</button> ";
769 print "<button dojoType=\"dijit.form.Button\" onclick=\"return closeInfoBox()\">".
770 __('Close this window')."</button>";
773 print "]]></content>";