]> git.wh0rd.org - tt-rss.git/blob - modules/popup-dialog.php
rework OPML import process
[tt-rss.git] / modules / popup-dialog.php
1 <?php
2 function module_popup_dialog($link) {
3 $id = $_REQUEST["id"];
4 $param = db_escape_string($_REQUEST["param"]);
5
6 print "<dlg id=\"$id\">";
7
8 if ($id == "importOpml") {
9 print "<div class=\"prefFeedOPMLHolder\">";
10 header("Content-Type: text/html"); # required for iframe
11
12 $owner_uid = $_SESSION["uid"];
13
14 db_query($link, "BEGIN");
15
16 /* create Imported feeds category just in case */
17
18 $result = db_query($link, "SELECT id FROM
19 ttrss_feed_categories WHERE title = 'Imported feeds' AND
20 owner_uid = '$owner_uid' LIMIT 1");
21
22 if (db_num_rows($result) == 0) {
23 db_query($link, "INSERT INTO ttrss_feed_categories
24 (title,owner_uid)
25 VALUES ('Imported feeds', '$owner_uid')");
26 }
27
28 db_query($link, "COMMIT");
29
30 /* Handle OPML import by DOMXML/DOMDocument */
31
32 if (function_exists('domxml_open_file')) {
33 print "<ul class='nomarks'>";
34 print "<li>".__("Importing using DOMXML.")."</li>";
35 require_once "opml_domxml.php";
36 opml_import_domxml($link, $owner_uid);
37 print "</ul>";
38 } else if (PHP_VERSION >= 5) {
39 print "<ul class='nomarks'>";
40 print "<li>".__("Importing using DOMDocument.")."</li>";
41 require_once "opml_domdoc.php";
42 opml_import_domdoc($link, $owner_uid);
43 print "</ul>";
44 } else {
45 print_error(__("DOMXML extension is not found. It is required for PHP versions below 5."));
46 }
47
48 print "</div>";
49
50 print "<div align='center'>";
51 print "<button dojoType=\"dijit.form.Button\"
52 onclick=\"dijit.byId('opmlImportDlg').hide()\">".
53 __('Close this window')."</button>";
54 print "</div>";
55
56 print "</div>";
57
58 //return;
59 }
60
61 if ($id == "editPrefProfiles") {
62
63 print "<div dojoType=\"dijit.Toolbar\">";
64
65 # TODO: depends on selectTableRows() being broken for this list
66 # print "<div dojoType=\"dijit.form.DropDownButton\">".
67 # "<span>" . __('Select')."</span>";
68 # print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
69 # print "<div onclick=\"selectTableRows('prefFeedProfileList', 'all')\"
70 # dojoType=\"dijit.MenuItem\">".__('All')."</div>";
71 # print "<div onclick=\"selectTableRows('prefFeedProfileList', 'none')\"
72 # dojoType=\"dijit.MenuItem\">".__('None')."</div>";
73 # print "</div></div>";
74
75 # print "<div style='float : right'>";
76 print "<input name=\"newprofile\" dojoType=\"dijit.form.ValidationTextBox\"
77 required=\"1\">
78 <button dojoType=\"dijit.form.Button\"
79 onclick=\"dijit.byId('profileEditDlg').addProfile()\">".
80 __('Create profile')."</button></div>";
81
82 # print "</div>";
83
84
85 $result = db_query($link, "SELECT title,id FROM ttrss_settings_profiles
86 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY title");
87
88 print "<div class=\"prefFeedCatHolder\">";
89
90 print "<form id=\"profile_edit_form\" onsubmit=\"return false\">";
91
92 print "<table width=\"100%\" class=\"prefFeedProfileList\"
93 cellspacing=\"0\" id=\"prefFeedProfileList\">";
94
95 print "<tr class=\"\" id=\"FCATR-0\">"; #odd
96
97 print "<td width='5%' align='center'><input
98 onclick='toggleSelectRow2(this);'
99 dojoType=\"dijit.form.CheckBox\"
100 type=\"checkbox\"></td>";
101
102 if (!$_SESSION["profile"]) {
103 $is_active = __("(active)");
104 } else {
105 $is_active = "";
106 }
107
108 print "<td><span>" .
109 __("Default profile") . " $is_active</span></td>";
110
111 print "</tr>";
112
113 $lnum = 1;
114
115 while ($line = db_fetch_assoc($result)) {
116
117 $class = ($lnum % 2) ? "even" : "odd";
118
119 $profile_id = $line["id"];
120 $this_row_id = "id=\"FCATR-$profile_id\"";
121
122 print "<tr class=\"\" $this_row_id>";
123
124 $edit_title = htmlspecialchars($line["title"]);
125
126 print "<td width='5%' align='center'><input
127 onclick='toggleSelectRow2(this);'
128 dojoType=\"dijit.form.CheckBox\"
129 type=\"checkbox\"></td>";
130
131 if ($_SESSION["profile"] == $line["id"]) {
132 $is_active = __("(active)");
133 } else {
134 $is_active = "";
135 }
136
137 print "<td><span dojoType=\"dijit.InlineEditBox\"
138 width=\"300px\" autoSave=\"false\"
139 profile-id=\"$profile_id\">" . $edit_title .
140 "<script type=\"dojo/method\" event=\"onChange\" args=\"item\">
141 var elem = this;
142 dojo.xhrPost({
143 url: 'backend.php',
144 content: {op: 'rpc', subop: 'saveprofile',
145 value: this.value,
146 id: this.srcNodeRef.getAttribute('profile-id')},
147 load: function(response) {
148 elem.attr('value', response);
149 }
150 });
151 </script>
152 </span> $is_active</td>";
153
154 print "</tr>";
155
156 ++$lnum;
157 }
158
159 print "</table>";
160 print "</form>";
161 print "</div>";
162
163 print "<div class='dlgButtons'>
164 <div style='float : left'>
165 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').removeSelected()\">".
166 __('Remove selected profiles')."</button>
167 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').activateProfile()\">".
168 __('Activate profile')."</button>
169 </div>";
170
171 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('profileEditDlg').hide()\">".
172 __('Close this window')."</button>";
173 print "</div>";
174
175 }
176
177 if ($id == "pubOPMLUrl") {
178
179 print "<title>".__('Public OPML URL')."</title>";
180 print "<content><![CDATA[";
181
182 $url_path = opml_publish_url($link);
183
184 print __("Your Public OPML URL is:");
185
186 print "<div class=\"tagCloudContainer\">";
187 print "<a id='pub_opml_url' href='$url_path' target='_blank'>$url_path</a>";
188 print "</div>";
189
190 print "<div align='center'>";
191
192 print "<button dojoType=\"dijit.form.Button\" onclick=\"return opmlRegenKey()\">".
193 __('Generate new URL')."</button> ";
194
195 print "<button dojoType=\"dijit.form.Button\" onclick=\"return closeInfoBox()\">".
196 __('Close this window')."</button>";
197
198 print "</div>";
199 print "]]></content>";
200
201 //return;
202 }
203
204 if ($id == "explainError") {
205
206 print "<title>".__('Notice')."</title>";
207 print "<content><![CDATA[";
208
209 print "<div class=\"errorExplained\">";
210
211 if ($param == 1) {
212 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.");
213
214 $stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
215
216 print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp);
217
218 }
219
220 if ($param == 2) {
221 $msg = check_for_update($link);
222
223 if (!$msg) {
224 print __("You are running the latest version of Tiny Tiny RSS. The fact that you are seeing this dialog is probably a bug.");
225 } else {
226 print $msg;
227 }
228
229 }
230
231 if ($param == 3) {
232 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.");
233
234 $stamp = (int) file_get_contents(LOCK_DIRECTORY . "/update_daemon.stamp");
235
236 print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp);
237
238 }
239
240 print "</div>";
241
242 print "<div align='center'>";
243
244 print "<button onclick=\"return closeInfoBox()\"".
245 __('Close this window')."</button>";
246
247 print "</div>";
248 print "]]></content>";
249
250 //return;
251 }
252
253 if ($id == "quickAddFeed") {
254
255 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
256 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"addfeed\">";
257
258 print "<div class=\"dlgSec\">".__("Feed")."</div>";
259 print "<div class=\"dlgSecCont\">";
260
261 print "<input style=\"font-size : 16px; width : 20em;\"
262 placeHolder=\"".__("Feed URL")."\"
263 dojoType=\"dijit.form.ValidationTextBox\" required=\"1\" name=\"feed\" id=\"feedDlg_feedUrl\">";
264
265 print "<br/>";
266
267 if (get_pref($link, 'ENABLE_FEED_CATS')) {
268 print __('Place in category:') . " ";
269 print_feed_cat_select($link, "cat", false, 'dojoType="dijit.form.Select"');
270 }
271
272 print "</div>";
273
274 print '<div id="feedDlg_feedsContainer" style="display : none">
275
276 <div class="dlgSec">' . __('Available feeds') . '</div>
277 <div class="dlgSecCont">'.
278 '<select id="feedDlg_feedContainerSelect"
279 dojoType="dijit.form.Select" size="3">
280 <script type="dojo/method" event="onChange" args="value">
281 dijit.byId("feedDlg_feedUrl").attr("value", value);
282 </script>
283 </select>'.
284 '</div></div>';
285
286 print "<div id='feedDlg_loginContainer' style='display : none'>
287
288 <div class=\"dlgSec\">".__("Authentication")."</div>
289 <div class=\"dlgSecCont\">".
290
291 " <input dojoType=\"dijit.form.TextBox\" name='login'\"
292 placeHolder=\"".__("Login")."\"
293 style=\"width : 10em;\"> ".
294 " <input
295 placeHolder=\"".__("Password")."\"
296 dojoType=\"dijit.form.TextBox\" type='password'
297 style=\"width : 10em;\" name='pass'\">
298 </div></div>";
299
300
301 print "<div style=\"clear : both\">
302 <input type=\"checkbox\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
303 onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
304 <label for=\"feedDlg_loginCheck\">".
305 __('This feed requires authentication.')."</div>";
306
307 print "</form>";
308
309 print "<div class=\"dlgButtons\">
310 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').execute()\">".__('Subscribe')."</button>
311 <button dojoType=\"dijit.form.Button\" onclick=\"return feedBrowser()\">".__('More feeds')."</button>
312 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').hide()\">".__('Cancel')."</button>
313 </div>";
314
315 //return;
316 }
317
318 if ($id == "feedBrowser") {
319
320 $browser_search = db_escape_string($_REQUEST["search"]);
321
322 # print "<form onsubmit='return false;' display='inline'
323 # name='feed_browser' id='feed_browser'>";
324
325 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
326 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"updateFeedBrowser\">";
327
328 print "<div dojoType=\"dijit.Toolbar\">
329 <div style='float : right'>
330 <img style='display : none'
331 id='feed_browser_spinner' src='".
332 theme_image($link, 'images/indicator_white.gif')."'>
333 <input name=\"search\" dojoType=\"dijit.form.TextBox\" size=\"20\" type=\"search\"
334 onchange=\"dijit.byId('feedBrowserDlg').update()\" value=\"$browser_search\">
335 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').update()\">".__('Search')."</button>
336 </div>";
337
338 print " <select name=\"mode\" dojoType=\"dijit.form.Select\" onchange=\"dijit.byId('feedBrowserDlg').update()\">
339 <option value='1'>" . __('Popular feeds') . "</option>
340 <option value='2'>" . __('Feed archive') . "</option>
341 </select> ";
342
343 print __("limit:");
344
345 print " <select dojoType=\"dijit.form.Select\" name=\"limit\" onchange=\"dijit.byId('feedBrowserDlg').update()\">";
346
347 foreach (array(25, 50, 100, 200) as $l) {
348 $issel = ($l == $limit) ? "selected=\"1\"" : "";
349 print "<option $issel value=\"$l\">$l</option>";
350 }
351
352 print "</select> ";
353
354 print "</div>";
355
356 $owner_uid = $_SESSION["uid"];
357
358 print "<ul class='browseFeedList' id='browseFeedList'>";
359 print_feed_browser($link, $search, 25);
360 print "</ul>";
361
362 print "<div align='center'>
363 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').execute()\">".__('Subscribe')."</button>
364 <button dojoType=\"dijit.form.Button\" style='display : none' id='feed_archive_remove' onclick=\"dijit.byId('feedBrowserDlg').removeFromArchive()\">".__('Remove')."</button>
365 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').hide()\" >".__('Cancel')."</button></div>";
366
367 }
368
369 if ($id == "search") {
370
371 $params = explode(":", db_escape_string($_REQUEST["param"]), 2);
372
373 $active_feed_id = sprintf("%d", $params[0]);
374 $is_cat = (bool) $params[1];
375
376 print "<div class=\"dlgSec\">".__('Look for')."</div>";
377
378 print "<div class=\"dlgSecCont\">";
379
380 if (!SPHINX_ENABLE) {
381
382 print "<input dojoType=\"dijit.form.ValidationTextBox\"
383 style=\"font-size : 16px; width : 12em;\"
384 required=\"1\" name=\"query\" type=\"search\" value=''>";
385
386 print " " . __('match on')." ";
387
388 $search_fields = array(
389 "title" => __("Title"),
390 "content" => __("Content"),
391 "both" => __("Title or content"));
392
393 print_select_hash("match_on", 3, $search_fields,
394 'dojoType="dijit.form.Select"');
395 } else {
396 print "<input dojoType=\"dijit.form.ValidationTextBox\"
397 style=\"font-size : 16px; width : 20em;\"
398 required=\"1\" name=\"query\" type=\"search\" value=''>";
399 }
400
401
402 print "<br/>".__('Limit search to:')." ";
403
404 print "<select name=\"search_mode\" dojoType=\"dijit.form.Select\">
405 <option value=\"all_feeds\">".__('All feeds')."</option>";
406
407 $feed_title = getFeedTitle($link, $active_feed_id);
408
409 if (!$is_cat) {
410 $feed_cat_title = getFeedCatTitle($link, $active_feed_id);
411 } else {
412 $feed_cat_title = getCategoryTitle($link, $active_feed_id);
413 }
414
415 if ($active_feed_id && !$is_cat) {
416 print "<option selected=\"1\" value=\"this_feed\">$feed_title</option>";
417 } else {
418 print "<option disabled=\"1\" value=\"false\">".__('This feed')."</option>";
419 }
420
421 if ($is_cat) {
422 $cat_preselected = "selected=\"1\"";
423 }
424
425 if (get_pref($link, 'ENABLE_FEED_CATS') && ($active_feed_id > 0 || $is_cat)) {
426 print "<option $cat_preselected value=\"this_cat\">$feed_cat_title</option>";
427 } else {
428 //print "<option disabled>".__('This category')."</option>";
429 }
430
431 print "</select>";
432
433 print "</div>";
434
435 print "<div class=\"dlgButtons\">
436 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').execute()\">".__('Search')."</button>
437 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').hide()\">".__('Cancel')."</button>
438 </div>";
439 }
440
441 if ($id == "quickAddFilter") {
442
443 $active_feed_id = db_escape_string($_REQUEST["param"]);
444
445 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-filters\">";
446 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"quiet\" value=\"1\">";
447 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"add\">";
448
449 $result = db_query($link, "SELECT id,description
450 FROM ttrss_filter_types ORDER BY description");
451
452 $filter_types = array();
453
454 while ($line = db_fetch_assoc($result)) {
455 //array_push($filter_types, $line["description"]);
456 $filter_types[$line["id"]] = __($line["description"]);
457 }
458
459 print "<div class=\"dlgSec\">".__("Match")."</div>";
460
461 print "<div class=\"dlgSecCont\">";
462
463 print "<span id=\"filterDlg_dateModBox\" style=\"display : none\">";
464
465 $filter_params = array(
466 "before" => __("before"),
467 "after" => __("after"));
468
469 print_select_hash("filter_date_modifier", "before",
470 $filter_params, 'dojoType="dijit.form.Select"');
471
472 print "&nbsp;</span>";
473
474 print "<input dojoType=\"dijit.form.ValidationTextBox\"
475 required=\"true\" id=\"filterDlg_regExp\"
476 style=\"font-size : 16px\"
477 name=\"reg_exp\" value=\"$reg_exp\"/>";
478
479 print "<span id=\"filterDlg_dateChkBox\" style=\"display : none\">";
480 print "&nbsp;<button onclick=\"return filterDlgCheckDate()\">".
481 __('Check it')."</button>";
482 print "</span>";
483
484 print "<br/>" . __("on field") . " ";
485 print_select_hash("filter_type", 1, $filter_types,
486 'onchange="filterDlgCheckType(this)" dojoType="dijit.form.Select"');
487
488 print "<br/>";
489
490 print __("in") . " ";
491 print_feed_select($link, "feed_id", $active_feed_id,
492 'dojoType="dijit.form.FilteringSelect"');
493
494 print "</div>";
495
496 print "<div class=\"dlgSec\">".__("Perform Action")."</div>";
497
498 print "<div class=\"dlgSecCont\">";
499
500 print "<select name=\"action_id\" dojoType=\"dijit.form.Select\"
501 onchange=\"filterDlgCheckAction(this)\">";
502
503 $result = db_query($link, "SELECT id,description FROM ttrss_filter_actions
504 ORDER BY name");
505
506 while ($line = db_fetch_assoc($result)) {
507 printf("<option value='%d'>%s</option>", $line["id"], __($line["description"]));
508 }
509
510 print "</select>";
511
512 print "<span id=\"filterDlg_paramBox\" style=\"display : none\">";
513 print " " . __("with parameters:") . " ";
514 print "<input dojoType=\"dijit.form.TextBox\"
515 id=\"filterDlg_actionParam\"
516 name=\"action_param\">";
517
518 print_label_select($link, "action_param_label", $action_param,
519 'id="filterDlg_actionParamLabel" dojoType="dijit.form.Select"');
520
521 print "</span>";
522
523 print "&nbsp;"; // tiny layout hack
524
525 print "</div>";
526
527 print "<div class=\"dlgSec\">".__("Options")."</div>";
528 print "<div class=\"dlgSecCont\">";
529
530 print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"enabled\" id=\"enabled\" checked=\"1\">
531 <label for=\"enabled\">".__('Enabled')."</label><br/>";
532
533 print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"inverse\" id=\"inverse\">
534 <label for=\"inverse\">".__('Inverse match')."</label>";
535
536 print "</div>";
537
538 print "<div class=\"dlgButtons\">";
539
540 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').execute()\">".
541 __('Create')."</button> ";
542
543 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('filterEditDlg').hide()\">".
544 __('Cancel')."</button>";
545
546 print "</div>";
547
548 //return;
549 }
550
551 if ($id == "feedUpdateErrors") {
552
553 print "<title>".__('Feeds with update errors')."</title>";
554 print "<content><![CDATA[";
555
556 print __("These feeds have not been updated because of errors:");
557
558 $result = db_query($link, "SELECT id,title,feed_url,last_error
559 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
560
561 print "<ul class='feedErrorsList'>";
562
563 while ($line = db_fetch_assoc($result)) {
564 print "<li><b>" . $line["title"] . "</b> (" . $line["feed_url"] . "): " .
565 "<em>" . $line["last_error"] . "</em>";
566 }
567
568 print "</ul>";
569
570 print "<div align='center'>";
571
572 print "<button dojoType=\"dijit.form.Button\"
573 onclick=\"return closeInfoBox()\">".
574 __('Close this window')."</button>";
575
576 print "]]></content>";
577
578 //return;
579 }
580
581 if ($id == "editArticleTags") {
582
583 print "<title>".__('Edit Tags')."</title>";
584 print "<content><![CDATA[";
585
586 print "<form id=\"tag_edit_form\" onsubmit='return false'>";
587
588 print __("Tags for this article (separated by commas):")."<br>";
589
590 $tags = get_article_tags($link, $param);
591
592 $tags_str = join(", ", $tags);
593
594 print "<table width='100%'>";
595
596 print "<tr><td colspan='2'><input type=\"hidden\" name=\"id\" value=\"$param\"></td></tr>";
597
598 print "<tr><td colspan='2'><textarea rows='4' class='iedit' id='tags_str'
599 name='tags_str'>$tags_str</textarea>
600 <div class=\"autocomplete\" id=\"tags_choices\"
601 style=\"display:none\"></div>
602 </td></tr>";
603
604 print "</table>";
605
606 print "</form>";
607
608 print "<div align='right'>";
609
610 print "<button onclick=\"return editTagsSave()\">".__('Save')."</button> ";
611 print "<button onclick=\"return closeInfoBox()\">".__('Cancel')."</button>";
612
613 print "]]></content>";
614
615 //return;
616 }
617
618 if ($id == "printTagCloud") {
619 print "<title>".__('Tag Cloud')."</title>";
620 print "<content><![CDATA[";
621
622 # print __("Showing most popular tags ")." (<a
623 # href='javascript:toggleTags(true)'>".__('more tags')."</a>):<br/>";
624
625 print "<div class=\"tagCloudContainer\">";
626
627 printTagCloud($link);
628
629 print "</div>";
630
631 print "<div align='center'>";
632 print "<button dojoType=\"dijit.form.Button\"
633 onclick=\"return closeInfoBox()\">".
634 __('Close this window')."</button>";
635 print "</div>";
636
637 print "]]></content>";
638
639 //return;
640 }
641
642 if ($id == "emailArticle") {
643
644 $secretkey = sha1(uniqid(rand(), true));
645
646 $_SESSION['email_secretkey'] = $secretkey;
647
648 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"secretkey\" value=\"$secretkey\">";
649 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
650 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"sendEmail\">";
651
652 $result = db_query($link, "SELECT email, full_name FROM ttrss_users WHERE
653 id = " . $_SESSION["uid"]);
654
655 $user_email = htmlspecialchars(db_fetch_result($result, 0, "email"));
656 $user_name = htmlspecialchars(db_fetch_result($result, 0, "full_name"));
657
658 if (!$user_name) $user_name = $_SESSION['name'];
659
660 $_SESSION['email_replyto'] = $user_email;
661 $_SESSION['email_fromname'] = $user_name;
662
663 require_once "lib/MiniTemplator.class.php";
664
665 $tpl = new MiniTemplator;
666 $tpl_t = new MiniTemplator;
667
668 $tpl->readTemplateFromFile("templates/email_article_template.txt");
669
670 $tpl->setVariable('USER_NAME', $_SESSION["name"]);
671 $tpl->setVariable('USER_EMAIL', $user_email);
672 $tpl->setVariable('TTRSS_HOST', $_SERVER["HTTP_HOST"]);
673
674 // $tpl->addBlock('header');
675
676 $result = db_query($link, "SELECT link, content, title
677 FROM ttrss_user_entries, ttrss_entries WHERE id = ref_id AND
678 id IN ($param) AND owner_uid = " . $_SESSION["uid"]);
679
680 if (db_num_rows($result) > 1) {
681 $subject = __("[Forwarded]") . " " . __("Multiple articles");
682 }
683
684 while ($line = db_fetch_assoc($result)) {
685
686 if (!$subject)
687 $subject = __("[Forwarded]") . " " . htmlspecialchars($line["title"]);
688
689 $tpl->setVariable('ARTICLE_TITLE', strip_tags($line["title"]));
690 $tpl->setVariable('ARTICLE_URL', strip_tags($line["link"]));
691
692 $tpl->addBlock('article');
693 }
694
695 $tpl->addBlock('email');
696
697 $content = "";
698 $tpl->generateOutputToString($content);
699
700 print "<table width='100%'><tr><td>";
701
702 print __('From:');
703
704 print "</td><td>";
705
706 print "<input dojoType=\"dijit.form.TextBox\" disabled=\"1\" style=\"width : 30em;\"
707 value=\"$user_name <$user_email>\">";
708
709 print "</td></tr><tr><td>";
710
711 print __('To:');
712
713 print "</td><td>";
714
715 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"true\"
716 style=\"width : 30em;\"
717 name=\"destination\" id=\"emailArticleDlg_destination\">";
718
719 print "<div class=\"autocomplete\" id=\"emailArticleDlg_dst_choices\"
720 style=\"z-index: 30; display : none\"></div>";
721
722 print "</td></tr><tr><td>";
723
724 print __('Subject:');
725
726 print "</td><td>";
727
728 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"true\"
729 style=\"width : 30em;\"
730 name=\"subject\" value=\"$subject\" id=\"subject\">";
731
732 print "</td></tr>";
733
734 print "<tr><td colspan='2'><textarea dojoType=\"dijit.form.SimpleTextarea\" style='font-size : 12px; width : 100%' rows=\"20\"
735 name='content'>$content</textarea>";
736
737 print "</td></tr></table>";
738
739 print "<div class='dlgButtons'>";
740 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('emailArticleDlg').execute()\">".__('Send e-mail')."</button> ";
741 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('emailArticleDlg').hide()\">".__('Cancel')."</button>";
742 print "</div>";
743
744 //return;
745 }
746
747 if ($id == "generatedFeed") {
748
749 print "<title>".__('View as RSS')."</title>";
750 print "<content><![CDATA[";
751
752 $params = explode(":", $param, 3);
753 $feed_id = db_escape_string($params[0]);
754 $is_cat = (bool) $params[1];
755
756 $key = get_feed_access_key($link, $feed_id, $is_cat);
757
758 $url_path = htmlspecialchars($params[2]) . "&key=" . $key;
759
760 print __("You can view this feed as RSS using the following URL:");
761
762 print "<div class=\"tagCloudContainer\">";
763 print "<a id='gen_feed_url' href='$url_path' target='_blank'>$url_path</a>";
764 print "</div>";
765
766 print "<div align='center'>";
767
768 print "<button dojoType=\"dijit.form.Button\" onclick=\"return genUrlChangeKey('$feed_id', '$is_cat')\">".
769 __('Generate new URL')."</button> ";
770
771 print "<button dojoType=\"dijit.form.Button\" onclick=\"return closeInfoBox()\">".
772 __('Close this window')."</button>";
773
774 print "</div>";
775 print "]]></content>";
776
777 //return;
778 }
779
780 print "</dlg>";
781 }
782 ?>