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