]> git.wh0rd.org - tt-rss.git/blob - modules/popup-dialog.php
baead1c37aa479dc5618aba49b624d952dfbc70c
[tt-rss.git] / modules / popup-dialog.php
1 <?php
2 function module_popup_dialog($link) {
3 $id = $_GET["id"];
4 $param = db_escape_string($_GET["param"]);
5
6 if ($id == "explainError") {
7
8 print "<div id=\"infoBoxTitle\">".__('Notice')."</div>";
9 print "<div class=\"infoBoxContents\">";
10
11 if ($param == 1) {
12 print __("Update daemon is enabled in configuration, but daemon
13 process is not running, which prevents all feeds from updating. Please
14 start the daemon process or contact instance owner.");
15
16 $stamp = (int)read_stampfile("update_daemon.stamp");
17
18 print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp);
19
20 }
21
22 if ($param == 2) {
23 $msg = check_for_update($link, false);
24
25 if (!$msg) {
26 print __("You are running the latest version of Tiny Tiny RSS. The
27 fact that you are seeing this dialog is probably a bug.");
28 } else {
29 print $msg;
30 }
31
32 }
33
34 if ($param == 3) {
35 print __("TT-RSS has detected that update daemon is taking too long to
36 perform a feed update. This could indicate a problem like crash
37 or a hang. Please check the daemon process or contact instance
38 owner.");
39
40 $stamp = (int)read_stampfile("update_daemon.stamp");
41
42 print "<p>" . __("Last update:") . " " . date("Y.m.d, G:i", $stamp);
43
44 }
45
46 print "</div>";
47
48 print "<div align='center'>";
49
50 print "<input class=\"button\"
51 type=\"submit\" onclick=\"return closeInfoBox()\"
52 value=\"".__('Close this window')."\">";
53
54 print "</div>";
55
56 return;
57 }
58
59 if ($id == "quickAddFeed") {
60
61 print "<div id=\"infoBoxTitle\">".__('Subscribe to feed')."</div>";
62 print "<div class=\"infoBoxContents\">";
63
64 print "<form id='feed_add_form' onsubmit='return false'>";
65
66 print "<input type=\"hidden\" name=\"op\" value=\"pref-feeds\">";
67 /* print "<input type=\"hidden\" name=\"quiet\" value=\"1\">"; */
68 print "<input type=\"hidden\" name=\"subop\" value=\"add\">";
69 print "<input type=\"hidden\" name=\"from\" value=\"tt-rss\">";
70
71 print "<table width='100%'>
72 <tr><td width='20%'>".__('Feed URL:')."</td><td>
73 <input class=\"iedit\" onblur=\"javascript:enableHotkeys()\"
74 onkeypress=\"return filterCR(event, subscribeToFeed)\"
75 onkeyup=\"toggleSubmitNotEmpty(this, 'fadd_submit_btn')\"
76 onchange=\"toggleSubmitNotEmpty(this, 'fadd_submit_btn')\"
77 onfocus=\"javascript:disableHotkeys()\" name=\"feed_url\"></td></tr>";
78
79 if (get_pref($link, 'ENABLE_FEED_CATS')) {
80 print "<tr><td>".__('Category:')."</td><td>";
81 print_feed_cat_select($link, "cat_id");
82 print "</td></tr>";
83 }
84
85 /* print "<tr><td colspan='2'><div class='insensitive'>";
86
87 print __("Some feeds require authentication. If you subscribe to such
88 feed, you will have to enter your login and password in Feed Editor");
89
90 print "</div></td></tr>"; */
91
92 print "</table>";
93
94 /* print "<div id='fadd_login_prompt'><br/>
95 <a href='javascript:appearBlockElement(\"fadd_login_container\",
96 \"fadd_login_prompt\")'>".__('Click here if this feed requires authentication.')."</a></div>"; */
97
98 print "<div id='fadd_login_container' style='display:none'>
99 <table width='100%'>
100 <tr><td width='20%'>".__('Login:')."</td><td><input name='auth_login' class='iedit' onfocus=\"javascript:disableHotkeys()\" onfocus=\"javascript:disableHotkeys()\" onkeypress=\"return filterCR(event, subscribeToFeed)\"></td></tr>
101 <tr><td>".__('Password:')."</td><td><input type='password'
102 name='auth_pass' class='iedit' onfocus=\"javascript:disableHotkeys()\" onfocus=\"javascript:disableHotkeys()\" onkeypress=\"return filterCR(event, subscribeToFeed)\"></td></tr>
103 </table>
104 </div>";
105
106 print "</form>";
107
108 print "<div style='float : right'>
109 <input class=\"button\"
110 id=\"fadd_submit_btn\" disabled=\"true\"
111 type=\"submit\" onclick=\"return subscribeToFeed()\" value=\"".__('Subscribe')."\">
112 <input class=\"button\"
113 type=\"submit\" onclick=\"return closeInfoBox()\"
114 value=\"".__('Cancel')."\"></div>
115
116 <div>
117 <input type=\"checkbox\" id=\"fadd_login_check\"
118 onclick='checkboxToggleElement(this, \"fadd_login_container\")'>
119 <label for=\"fadd_login_check\">".
120 __('This feed requires authentication.')."</div>";
121
122 return;
123 }
124
125 if ($id == "search") {
126
127 print "<div id=\"infoBoxTitle\">".__('Search')."</div>";
128 print "<div class=\"infoBoxContents\">";
129
130 print "<form id='search_form' onsubmit='return false'>";
131
132 #$active_feed_id = db_escape_string($_GET["param"]);
133
134 $params = split(":", db_escape_string($_GET["param"]));
135
136 $active_feed_id = sprintf("%d", $params[0]);
137 $is_cat = $params[1] == "true";
138
139 print "<table width='100%'><tr><td>".__('Search:')."</td><td>";
140
141 print "<input name=\"query\" class=\"iedit\" type=\"search\"
142 onkeypress=\"return filterCR(event, search)\"
143 onchange=\"toggleSubmitNotEmpty(this, 'search_submit_btn')\"
144 onkeyup=\"toggleSubmitNotEmpty(this, 'search_submit_btn')\"
145 value=\"\">
146 </td></tr>";
147
148 print "<tr><td>".__('Where:')."</td><td>";
149
150 print "<select name=\"search_mode\">
151 <option value=\"all_feeds\">".__('All feeds')."</option>";
152
153 $feed_title = getFeedTitle($link, $active_feed_id);
154
155 if (!$is_cat) {
156 $feed_cat_title = getFeedCatTitle($link, $active_feed_id);
157 } else {
158 $feed_cat_title = getCategoryTitle($link, $active_feed_id);
159 }
160
161 if ($active_feed_id && !$is_cat) {
162 print "<option selected value=\"this_feed\">$feed_title</option>";
163 } else {
164 print "<option disabled>".__('This feed')."</option>";
165 }
166
167 if ($is_cat) {
168 $cat_preselected = "selected";
169 }
170
171 if (get_pref($link, 'ENABLE_FEED_CATS') && ($active_feed_id > 0 || $is_cat)) {
172 print "<option $cat_preselected value=\"this_cat\">$feed_cat_title</option>";
173 } else {
174 //print "<option disabled>".__('This category')."</option>";
175 }
176
177 print "</select></td></tr>";
178
179 print "<tr><td>".__('Match on:')."</td><td>";
180
181 $search_fields = array(
182 "title" => __("Title"),
183 "content" => __("Content"),
184 "both" => __("Title or content"));
185
186 print_select_hash("match_on", 3, $search_fields);
187
188 print "</td></tr></table>";
189
190 print "</form>";
191
192 print "<div align=\"right\">
193 <input type=\"submit\"
194 class=\"button\" onclick=\"javascript:search()\"
195 id=\"search_submit_btn\" disabled=\"true\"
196 value=\"".__('Search')."\">
197 <input class=\"button\"
198 type=\"submit\" onclick=\"javascript:searchCancel()\"
199 value=\"".__('Cancel')."\"></div>";
200
201 print "</div>";
202
203 return;
204
205 }
206
207 if ($id == "quickAddLabel") {
208 print "<div id=\"infoBoxTitle\">".__('Create label')."</div>";
209 print "<div class=\"infoBoxContents\">";
210
211 print "<form id=\"label_edit_form\" onsubmit='return false'>";
212
213 print "<input type=\"hidden\" name=\"op\" value=\"pref-labels\">";
214 print "<input type=\"hidden\" name=\"subop\" value=\"add\">";
215
216 print "<div class=\"dlgSec\">".__("Caption")."</div>";
217
218 print "<div class=\"dlgSecCont\">";
219
220 print "<input onkeypress=\"return filterCR(event, labelEditSave)\"
221 onkeyup=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
222 onchange=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
223 name=\"description\" size=\"30\" value=\"$description\">";
224 print "</div>";
225
226 print "<div class=\"dlgSec\">".__("Match SQL")."</div>";
227
228 print "<div class=\"dlgSecCont\">";
229
230 print "<textarea onkeyup=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
231 rows=\"6\" name=\"sql_exp\" class=\"labelSQL\" cols=\"50\">$sql_exp</textarea>";
232
233 print "</div>";
234
235 print "</form>";
236
237 print "<div style=\"display : none\" id=\"label_test_result\"></div>";
238
239 print "<div class=\"dlgButtons\">";
240
241 print "<div style='float : left'>";
242 print "<input type=\"submit\"
243 class=\"button\" onclick=\"return displayHelpInfobox(1)\"
244 value=\"".__('Help')."\"> ";
245 print "</div>";
246
247 print "<input type=\"submit\" onclick=\"labelTest()\" value=\"".__('Test')."\">
248 ";
249
250 print "<input type=\"submit\"
251 id=\"infobox_submit\"
252 disabled=\"true\"
253 class=\"button\" onclick=\"return addLabel()\"
254 value=\"".__('Create')."\"> ";
255
256 print "<input class=\"button\"
257 type=\"submit\" onclick=\"return labelEditCancel()\"
258 value=\"".__('Cancel')."\">";
259
260 return;
261 }
262
263 if ($id == "quickAddFilter") {
264
265 $active_feed_id = db_escape_string($_GET["param"]);
266
267 print "<div id=\"infoBoxTitle\">".__('Create filter')."</div>";
268 print "<div class=\"infoBoxContents\">";
269
270 print "<form id=\"filter_add_form\" onsubmit='return false'>";
271
272 print "<input type=\"hidden\" name=\"op\" value=\"pref-filters\">";
273 print "<input type=\"hidden\" name=\"quiet\" value=\"1\">";
274 print "<input type=\"hidden\" name=\"subop\" value=\"add\">";
275
276 // print "<div class=\"notice\"><b>Note:</b> filter will only apply to new articles.</div>";
277
278 $result = db_query($link, "SELECT id,description
279 FROM ttrss_filter_types ORDER BY description");
280
281 $filter_types = array();
282
283 while ($line = db_fetch_assoc($result)) {
284 //array_push($filter_types, $line["description"]);
285 $filter_types[$line["id"]] = __($line["description"]);
286 }
287
288 /* print "<table width='100%'>";
289
290 print "<tr><td>".__('Match:')."</td>
291 <td><input onkeypress=\"return filterCR(event, createFilter)\"
292 onkeyup=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
293 onchange=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
294 name=\"reg_exp\" class=\"iedit\">";
295
296 print "</td></tr><tr><td>".__('On field:')."</td><td>";
297
298 print_select_hash("filter_type", 1, $filter_types, "class=\"_iedit\"");
299
300 print "</td></tr>";
301 print "<tr><td>".__('Feed:')."</td><td colspan='2'>";
302
303 print_feed_select($link, "feed_id", $active_feed_id);
304
305 print "</td></tr>";
306
307 print "<tr><td>".__('Action:')."</td>";
308
309 print "<td colspan='2'><select name=\"action_id\"
310 onchange=\"filterDlgCheckAction(this)\">";
311
312 $result = db_query($link, "SELECT id,description FROM ttrss_filter_actions
313 ORDER BY name");
314
315 while ($line = db_fetch_assoc($result)) {
316 printf("<option value='%d'>%s</option>", $line["id"], __($line["description"]));
317 }
318
319 print "</select>";
320
321 print "</td></tr>";
322
323 print "<tr><td>".__('Params:')."</td>";
324
325 print "<td><input disabled class='iedit' name='action_param'></td></tr>";
326
327 print "<tr><td valign='top'>".__('Options:')."</td><td>";
328
329 print "<input type=\"checkbox\" name=\"inverse\" id=\"inverse\">
330 <label for=\"inverse\">".__('Inverse match')."</label></td></tr>";
331
332 print "</table>";
333
334 print "</form>"; */
335
336 print "<div class=\"dlgSec\">".__("Match")."</div>";
337
338 print "<div class=\"dlgSecCont\">";
339
340 print "<input onkeypress=\"return filterCR(event, filterEditSave)\"
341 onkeyup=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
342 onchange=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
343 name=\"reg_exp\" size=\"30\" value=\"$reg_exp\">";
344
345 print " " . __("on field") . " ";
346 print_select_hash("filter_type", 1, $filter_types);
347
348 print "<br/>";
349
350 print __("in") . " ";
351 print_feed_select($link, "feed_id", $active_feed_id);
352
353 print "</div>";
354
355 print "<div class=\"dlgSec\">".__("Perform action")."</div>";
356
357 print "<div class=\"dlgSecCont\">";
358
359 print "<select name=\"action_id\"
360 onchange=\"filterDlgCheckAction(this)\">";
361
362 $result = db_query($link, "SELECT id,description FROM ttrss_filter_actions
363 ORDER BY name");
364
365 while ($line = db_fetch_assoc($result)) {
366 printf("<option value='%d'>%s</option>", $line["id"], __($line["description"]));
367 }
368
369 print "</select>";
370
371 print " " . __("with params") . " ";
372
373 print "<input disabled size=\"20\"
374 name=\"action_param\">";
375
376 print "</div>";
377
378 print "<div class=\"dlgSec\">".__("Options")."</div>";
379 print "<div class=\"dlgSecCont\">";
380
381 print "<input type=\"checkbox\" name=\"enabled\" id=\"enabled\" checked=\"1\">
382 <label for=\"enabled\">".__('Enabled')."</label><br/>";
383
384 print "<input type=\"checkbox\" name=\"inverse\" id=\"inverse\">
385 <label for=\"inverse\">".__('Inverse match')."</label>";
386
387 print "</div>";
388
389 print "</form>";
390
391 print "<div class=\"dlgButtons\">";
392
393 print "<input type=\"submit\"
394 id=\"infobox_submit\"
395 class=\"button\" onclick=\"return createFilter()\"
396 disabled=\"true\" value=\"".__('Create')."\"> ";
397
398 print "<input class=\"button\"
399 type=\"submit\" onclick=\"return closeInfoBox()\"
400 value=\"".__('Cancel')."\">";
401
402 print "</div>";
403
404 // print "</td></tr></table>";
405
406 return;
407 }
408
409 if ($id == "feedUpdateErrors") {
410
411 print "<div id=\"infoBoxTitle\">".__('Update Errors')."</div>";
412 print "<div class=\"infoBoxContents\">";
413
414 print __("These feeds have not been updated because of errors:");
415
416 $result = db_query($link, "SELECT id,title,feed_url,last_error
417 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
418
419 print "<ul class='feedErrorsList'>";
420
421 while ($line = db_fetch_assoc($result)) {
422 print "<li><b>" . $line["title"] . "</b> (" . $line["feed_url"] . "): " .
423 "<em>" . $line["last_error"] . "</em>";
424 }
425
426 print "</ul>";
427 print "</div>";
428
429 print "<div align='center'>";
430
431 print "<input class=\"button\"
432 type=\"submit\" onclick=\"return closeInfoBox()\"
433 value=\"".__('Close')."\">";
434
435 print "</div>";
436
437 return;
438 }
439
440 if ($id == "editArticleTags") {
441
442 print "<div id=\"infoBoxTitle\">".__('Edit Tags')."</div>";
443 print "<div class=\"infoBoxContents\">";
444
445 print "<form id=\"tag_edit_form\" onsubmit='return false'>";
446
447 print __("Tags for this article (separated by commas):")."<br>";
448
449 $tags = get_article_tags($link, $param);
450
451 $tags_str = join(", ", $tags);
452
453 print "<table width='100%'>";
454
455 print "<tr><td colspan='2'><input type=\"hidden\" name=\"id\" value=\"$param\"></td></tr>";
456
457 print "<tr><td colspan='2'><textarea rows='4' class='iedit' id='tags_str'
458 name='tags_str'>$tags_str</textarea>
459 <div class=\"autocomplete\" id=\"tags_choices\"
460 style=\"display:none\"></div>
461 </td></tr>";
462
463 /* print "<tr><td>".__('Add existing tag:')."</td>";
464
465 $result = db_query($link, "SELECT DISTINCT tag_name FROM ttrss_tags
466 WHERE owner_uid = '".$_SESSION["uid"]."' ORDER BY tag_name");
467
468 $found_tags = array();
469
470 array_push($found_tags, '');
471
472 while ($line = db_fetch_assoc($result)) {
473 array_push($found_tags, truncate_string($line["tag_name"], 20));
474 }
475
476 print "<td align='right'>";
477
478 print_select("found_tags", '', $found_tags, "onchange=\"javascript:editTagsInsert()\"");
479
480 print "</td>";
481
482 print "</tr>"; */
483
484 print "</table>";
485
486 print "</form>";
487
488 print "<div align='right'>";
489
490 print "<input class=\"button\"
491 type=\"submit\" onclick=\"return editTagsSave()\"
492 value=\"".__('Save')."\"> ";
493
494 print "<input class=\"button\"
495 type=\"submit\" onclick=\"return closeInfoBox()\"
496 value=\"".__('Cancel')."\">";
497
498
499 print "</div>";
500
501 return;
502 }
503
504 if ($id == "printTagCloud") {
505 print "<div id=\"infoBoxTitle\">".__('Tag cloud')."</div>";
506 print "<div class=\"infoBoxContents\">";
507
508 print __("Showing most popular tags ")." (<a
509 href='javascript:toggleTags(true)'>".__('browse more')."</a>):<br/>";
510
511 print "<div class=\"tagCloudContainer\">";
512
513 printTagCloud($link);
514
515 print "</div>";
516
517 print "<div align='center'>";
518 print "<input class=\"button\"
519 type=\"submit\" onclick=\"return closeInfoBox()\"
520 value=\"".__('Close this window')."\">";
521 print "</div>";
522
523 print "</div>";
524
525 return;
526 }
527
528 print "<div id='infoBoxTitle'>Internal Error</div>
529 <div id='infoBoxContents'>
530 <p>Unknown dialog <b>$id</b></p>
531 </div></div>";
532
533 }
534 ?>