]> git.wh0rd.org - tt-rss.git/blob - modules/pref-feeds.php
add feed editor button to reset pubsub subscription state
[tt-rss.git] / modules / pref-feeds.php
1 <?php
2
3 function batch_edit_cbox($elem, $label = false) {
4 print "<input type=\"checkbox\" title=\"".__("Check to enable field")."\"
5 onchange=\"dijit.byId('feedEditDlg').toggleField(this, '$elem', '$label')\">";
6 }
7
8 function module_pref_feeds($link) {
9
10 global $update_intervals;
11 global $purge_intervals;
12 global $update_methods;
13
14 $subop = $_REQUEST["subop"];
15 $quiet = $_REQUEST["quiet"];
16 $mode = $_REQUEST["mode"];
17
18 if ($subop == "renamecat") {
19 $title = db_escape_string($_REQUEST['title']);
20 $id = db_escape_string($_REQUEST['id']);
21
22 if ($title) {
23 db_query($link, "UPDATE ttrss_feed_categories SET
24 title = '$title' WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
25 }
26 return;
27 }
28
29 if ($subop == "remtwitterinfo") {
30
31 db_query($link, "UPDATE ttrss_users SET twitter_oauth = NULL
32 WHERE id = " . $_SESSION['uid']);
33
34 return;
35 }
36
37 if ($subop == "getfeedtree") {
38
39 $root = array();
40 $root['id'] = 'root';
41 $root['name'] = __('Feeds');
42 $root['items'] = array();
43 $root['type'] = 'category';
44
45 if (get_pref($link, 'ENABLE_FEED_CATS')) {
46
47 $result = db_query($link, "SELECT id, title FROM ttrss_feed_categories
48 WHERE owner_uid = " . $_SESSION["uid"] . " ORDER BY order_id, title");
49
50 while ($line = db_fetch_assoc($result)) {
51 $cat = array();
52 $cat['id'] = 'CAT:' . $line['id'];
53 $cat['bare_id'] = $feed_id;
54 $cat['name'] = $line['title'];
55 $cat['items'] = array();
56 $cat['type'] = 'category';
57
58 $feed_result = db_query($link, "SELECT id, title, last_error,
59 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
60 FROM ttrss_feeds
61 WHERE cat_id = '".$line['id']."' AND owner_uid = ".$_SESSION["uid"].
62 " ORDER BY order_id, title");
63
64 while ($feed_line = db_fetch_assoc($feed_result)) {
65 $feed = array();
66 $feed['id'] = 'FEED:' . $feed_line['id'];
67 $feed['bare_id'] = $feed_line['id'];
68 $feed['name'] = $feed_line['title'];
69 $feed['checkbox'] = false;
70 $feed['error'] = $feed_line['last_error'];
71 $feed['icon'] = getFeedIcon($feed_line['id']);
72 $feed['param'] = make_local_datetime($link,
73 $feed_line['last_updated'], true);
74
75 array_push($cat['items'], $feed);
76 }
77
78 array_push($root['items'], $cat);
79 }
80
81 /* Uncategorized is a special case */
82
83 $cat = array();
84 $cat['id'] = 'CAT:0';
85 $cat['bare_id'] = 0;
86 $cat['name'] = __("Uncategorized");
87 $cat['items'] = array();
88 $cat['type'] = 'category';
89
90 $feed_result = db_query($link, "SELECT id, title,last_error,
91 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
92 FROM ttrss_feeds
93 WHERE cat_id IS NULL AND owner_uid = ".$_SESSION["uid"].
94 " ORDER BY order_id, title");
95
96 while ($feed_line = db_fetch_assoc($feed_result)) {
97 $feed = array();
98 $feed['id'] = 'FEED:' . $feed_line['id'];
99 $feed['bare_id'] = $feed_line['id'];
100 $feed['name'] = $feed_line['title'];
101 $feed['checkbox'] = false;
102 $feed['error'] = $feed_line['last_error'];
103 $feed['icon'] = getFeedIcon($feed_line['id']);
104 $feed['param'] = make_local_datetime($link,
105 $feed_line['last_updated'], true);
106
107 array_push($cat['items'], $feed);
108 }
109
110 array_push($root['items'], $cat);
111 } else {
112 $feed_result = db_query($link, "SELECT id, title, last_error,
113 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
114 FROM ttrss_feeds
115 WHERE owner_uid = ".$_SESSION["uid"].
116 " ORDER BY order_id, title");
117
118 while ($feed_line = db_fetch_assoc($feed_result)) {
119 $feed = array();
120 $feed['id'] = 'FEED:' . $feed_line['id'];
121 $feed['bare_id'] = $feed_line['id'];
122 $feed['name'] = $feed_line['title'];
123 $feed['checkbox'] = false;
124 $feed['error'] = $feed_line['last_error'];
125 $feed['icon'] = getFeedIcon($feed_line['id']);
126 $feed['param'] = make_local_datetime($link,
127 $feed_line['last_updated'], true);
128
129 array_push($root['items'], $feed);
130 }
131 }
132
133 $fl = array();
134 $fl['identifier'] = 'id';
135 $fl['label'] = 'name';
136 $fl['items'] = array($root);
137
138 print json_encode($fl);
139 return;
140 }
141
142 if ($subop == "catsortreset") {
143 db_query($link, "UPDATE ttrss_feed_categories
144 SET order_id = 0 WHERE owner_uid = " . $_SESSION["uid"]);
145 return;
146 }
147
148 if ($subop == "feedsortreset") {
149 db_query($link, "UPDATE ttrss_feeds
150 SET order_id = 0 WHERE owner_uid = " . $_SESSION["uid"]);
151 return;
152 }
153
154 if ($subop == "savefeedorder") {
155 # if ($_POST['payload']) {
156 # file_put_contents("/tmp/blahblah.txt", $_POST['payload']);
157 # $data = json_decode($_POST['payload'], true);
158 # } else {
159 # $data = json_decode(file_get_contents("/tmp/blahblah.txt"), true);
160 # }
161
162 $data = json_decode($_POST['payload'], true);
163
164 if (is_array($data) && is_array($data['items'])) {
165 $cat_order_id = 0;
166
167 $data_map = array();
168
169 foreach ($data['items'] as $item) {
170
171 if ($item['id'] != 'root') {
172 if (is_array($item['items'])) {
173 if (isset($item['items']['_reference'])) {
174 $data_map[$item['id']] = array($item['items']);
175 } else {
176 $data_map[$item['id']] =& $item['items'];
177 }
178 }
179 }
180 }
181
182 foreach ($data['items'][0]['items'] as $item) {
183 $id = $item['_reference'];
184 $bare_id = substr($id, strpos($id, ':')+1);
185
186 ++$cat_order_id;
187
188 if ($bare_id > 0) {
189 db_query($link, "UPDATE ttrss_feed_categories
190 SET order_id = '$cat_order_id' WHERE id = '$bare_id' AND
191 owner_uid = " . $_SESSION["uid"]);
192 }
193
194 $feed_order_id = 0;
195
196 if (is_array($data_map[$id])) {
197 foreach ($data_map[$id] as $feed) {
198 $id = $feed['_reference'];
199 $feed_id = substr($id, strpos($id, ':')+1);
200
201 if ($bare_id != 0)
202 $cat_query = "cat_id = '$bare_id'";
203 else
204 $cat_query = "cat_id = NULL";
205
206 db_query($link, "UPDATE ttrss_feeds
207 SET order_id = '$feed_order_id',
208 $cat_query
209 WHERE id = '$feed_id' AND
210 owner_uid = " . $_SESSION["uid"]);
211
212 ++$feed_order_id;
213 }
214 }
215 }
216 }
217
218 return;
219 }
220
221 if ($subop == "removeicon") {
222 $feed_id = db_escape_string($_REQUEST["feed_id"]);
223
224 $result = db_query($link, "SELECT id FROM ttrss_feeds
225 WHERE id = '$feed_id' AND owner_uid = ". $_SESSION["uid"]);
226
227 if (db_num_rows($result) != 0) {
228 unlink(ICONS_DIR . "/$feed_id.ico");
229 }
230
231 return;
232 }
233
234 if ($subop == "uploadicon") {
235 $icon_file = $_FILES['icon_file']['tmp_name'];
236 $feed_id = db_escape_string($_REQUEST["feed_id"]);
237
238 if (is_file($icon_file) && $feed_id) {
239 if (filesize($icon_file) < 20000) {
240
241 $result = db_query($link, "SELECT id FROM ttrss_feeds
242 WHERE id = '$feed_id' AND owner_uid = ". $_SESSION["uid"]);
243
244 if (db_num_rows($result) != 0) {
245 unlink(ICONS_DIR . "/$feed_id.ico");
246 move_uploaded_file($icon_file, ICONS_DIR . "/$feed_id.ico");
247 $rc = 0;
248 } else {
249 $rc = 2;
250 }
251 } else {
252 $rc = 1;
253 }
254 } else {
255 $rc = 2;
256 }
257
258 print "<script type=\"text/javascript\">";
259 print "parent.uploadIconHandler($rc);";
260 print "</script>";
261 return;
262 }
263
264 if ($subop == "editfeed") {
265
266 $feed_id = db_escape_string($_REQUEST["id"]);
267
268 $result = db_query($link,
269 "SELECT * FROM ttrss_feeds WHERE id = '$feed_id' AND
270 owner_uid = " . $_SESSION["uid"]);
271
272 $title = htmlspecialchars(db_fetch_result($result,
273 0, "title"));
274
275 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"id\" value=\"$feed_id\">";
276 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-feeds\">";
277 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"editSave\">";
278
279 print "<div class=\"dlgSec\">".__("Feed")."</div>";
280 print "<div class=\"dlgSecCont\">";
281
282 /* Title */
283
284 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\"
285 placeHolder=\"".__("Feed Title")."\"
286 style=\"font-size : 16px; width: 20em\" name=\"title\" value=\"$title\">";
287
288 /* Feed URL */
289
290 $feed_url = db_fetch_result($result, 0, "feed_url");
291 $feed_url = htmlspecialchars(db_fetch_result($result,
292 0, "feed_url"));
293
294 print "<hr/>";
295
296 print __('URL:') . " ";
297 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\"
298 placeHolder=\"".__("Feed URL")."\"
299 regExp='^(http|https)://.*' style=\"width : 20em\"
300 name=\"feed_url\" value=\"$feed_url\">";
301
302 /* Category */
303
304 if (get_pref($link, 'ENABLE_FEED_CATS')) {
305
306 $cat_id = db_fetch_result($result, 0, "cat_id");
307
308 print "<hr/>";
309
310 print __('Place in category:') . " ";
311
312 print_feed_cat_select($link, "cat_id", $cat_id,
313 'dojoType="dijit.form.Select"');
314 }
315
316 print "</div>";
317
318 print "<div class=\"dlgSec\">".__("Update")."</div>";
319 print "<div class=\"dlgSecCont\">";
320
321 /* Update Interval */
322
323 $update_interval = db_fetch_result($result, 0, "update_interval");
324
325 print_select_hash("update_interval", $update_interval, $update_intervals,
326 'dojoType="dijit.form.Select"');
327
328 /* Update method */
329
330 $update_method = db_fetch_result($result, 0, "update_method",
331 'dojoType="dijit.form.Select"');
332
333 print " " . __('using') . " ";
334 print_select_hash("update_method", $update_method, $update_methods,
335 'dojoType="dijit.form.Select"');
336
337 $purge_interval = db_fetch_result($result, 0, "purge_interval");
338
339 if (FORCE_ARTICLE_PURGE == 0) {
340
341 /* Purge intl */
342
343 print "<hr/>";
344
345 print __('Article purging:') . " ";
346
347 print_select_hash("purge_interval", $purge_interval, $purge_intervals,
348 'dojoType="dijit.form.Select"');
349
350 } else {
351 print "<input style=\"display : none\" name='purge_interval'
352 dojoType=\"dijit.form.TextBox\" value='$purge_interval'>";
353
354 }
355
356 print "</div>";
357 print "<div class=\"dlgSec\">".__("Authentication")."</div>";
358 print "<div class=\"dlgSecCont\">";
359
360 $auth_login = htmlspecialchars(db_fetch_result($result, 0, "auth_login"));
361
362 # print "<table>";
363
364 # print "<tr><td>" . __('Login:') . "</td><td>";
365
366 print "<input dojoType=\"dijit.form.TextBox\" id=\"feedEditDlg_login\"
367 placeHolder=\"".__("Login")."\"
368 name=\"auth_login\" value=\"$auth_login\"><hr/>";
369
370 # print "</tr><tr><td>" . __("Password:") . "</td><td>";
371
372 $auth_pass = htmlspecialchars(db_fetch_result($result, 0, "auth_pass"));
373
374 print "<input dojoType=\"dijit.form.TextBox\" type=\"password\" name=\"auth_pass\"
375 placeHolder=\"".__("Password")."\"
376 value=\"$auth_pass\">";
377
378 print "<div dojoType=\"dijit.Tooltip\" connectId=\"feedEditDlg_login\" position=\"below\">
379 ".__('<b>Hint:</b> you need to fill in your login information if your feed requires authentication, except for Twitter feeds.')."
380 </div>";
381
382 # print "</td></tr></table>";
383
384 print "</div>";
385 print "<div class=\"dlgSec\">".__("Options")."</div>";
386 print "<div class=\"dlgSecCont\">";
387
388 # print "<div style=\"line-height : 100%\">";
389
390 $private = sql_bool_to_bool(db_fetch_result($result, 0, "private"));
391
392 if ($private) {
393 $checked = "checked=\"1\"";
394 } else {
395 $checked = "";
396 }
397
398 print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"private\" id=\"private\"
399 $checked>&nbsp;<label for=\"private\">".__('Hide from Popular feeds')."</label>";
400
401 $rtl_content = sql_bool_to_bool(db_fetch_result($result, 0, "rtl_content"));
402
403 if ($rtl_content) {
404 $checked = "checked=\"1\"";
405 } else {
406 $checked = "";
407 }
408
409 print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"rtl_content\" name=\"rtl_content\"
410 $checked>&nbsp;<label for=\"rtl_content\">".__('Right-to-left content')."</label>";
411
412 $include_in_digest = sql_bool_to_bool(db_fetch_result($result, 0, "include_in_digest"));
413
414 if ($include_in_digest) {
415 $checked = "checked=\"1\"";
416 } else {
417 $checked = "";
418 }
419
420 print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"include_in_digest\"
421 name=\"include_in_digest\"
422 $checked>&nbsp;<label for=\"include_in_digest\">".__('Include in e-mail digest')."</label>";
423
424
425 $always_display_enclosures = sql_bool_to_bool(db_fetch_result($result, 0, "always_display_enclosures"));
426
427 if ($always_display_enclosures) {
428 $checked = "checked";
429 } else {
430 $checked = "";
431 }
432
433 print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"always_display_enclosures\"
434 name=\"always_display_enclosures\"
435 $checked>&nbsp;<label for=\"always_display_enclosures\">".__('Always display image attachments')."</label>";
436
437
438 $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
439
440 if ($cache_images) {
441 $checked = "checked=\"1\"";
442 } else {
443 $checked = "";
444 }
445
446 if (SIMPLEPIE_CACHE_IMAGES) {
447 print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"cache_images\"
448 name=\"cache_images\"
449 $checked>&nbsp;<label for=\"cache_images\">".
450 __('Cache images locally (SimplePie only)')."</label>";
451 }
452
453 $mark_unread_on_update = sql_bool_to_bool(db_fetch_result($result, 0, "mark_unread_on_update"));
454
455 if ($mark_unread_on_update) {
456 $checked = "checked";
457 } else {
458 $checked = "";
459 }
460
461 print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"mark_unread_on_update\"
462 name=\"mark_unread_on_update\"
463 $checked>&nbsp;<label for=\"mark_unread_on_update\">".__('Mark updated articles as unread')."</label>";
464
465 $update_on_checksum_change = sql_bool_to_bool(db_fetch_result($result, 0, "update_on_checksum_change"));
466
467 if ($update_on_checksum_change) {
468 $checked = "checked";
469 } else {
470 $checked = "";
471 }
472
473 print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"update_on_checksum_change\"
474 name=\"update_on_checksum_change\"
475 $checked>&nbsp;<label for=\"update_on_checksum_change\">".__('Mark posts as updated on content change')."</label>";
476
477 # print "</div>";
478 print "</div>";
479
480 /* Icon */
481
482 print "<div class=\"dlgSec\">".__("Icon")."</div>";
483 print "<div class=\"dlgSecCont\">";
484
485 print "<iframe name=\"icon_upload_iframe\"
486 style=\"width: 400px; height: 100px; display: none;\"></iframe>";
487
488 print "<form style='display : block' target=\"icon_upload_iframe\"
489 enctype=\"multipart/form-data\" method=\"POST\"
490 action=\"backend.php\">
491 <input id=\"icon_file\" size=\"10\" name=\"icon_file\" type=\"file\">
492 <input type=\"hidden\" name=\"op\" value=\"pref-feeds\">
493 <input type=\"hidden\" name=\"feed_id\" value=\"$feed_id\">
494 <input type=\"hidden\" name=\"subop\" value=\"uploadicon\">
495 <button dojoType=\"dijit.form.Button\" onclick=\"return uploadFeedIcon();\"
496 type=\"submit\">".__('Replace')."</button>
497 <button dojoType=\"dijit.form.Button\" onclick=\"return removeFeedIcon($feed_id);\"
498 type=\"submit\">".__('Remove')."</button>
499 </form>";
500
501 print "</div>";
502
503 $title = htmlspecialchars($title, ENT_QUOTES);
504
505 print "<div class='dlgButtons'>
506 <div style=\"float : left\">
507 <button dojoType=\"dijit.form.Button\" onclick='return unsubscribeFeed($feed_id, \"$title\")'>".
508 __('Unsubscribe')."</button>";
509
510 $pubsub_state = db_fetch_result($result, 0, "pubsub_state");
511
512 $pubsub_btn_disabled = ($pubsub_state == 2) ? "" : "disabled=\"1\"";
513
514 print "<button dojoType=\"dijit.form.Button\" id=\"pubsubReset_Btn\" $pubsub_btn_disabled
515 onclick='return resetPubSub($feed_id, \"$title\")'>".__('Resubscribe to push updates').
516 "</button>";
517
518 print "</div>";
519
520 print "<div dojoType=\"dijit.Tooltip\" connectId=\"pubsubReset_Btn\" position=\"below\">".
521 __('Resets PubSubHubbub subscription status for push-enabled feeds.')."</div>";
522
523 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedEditDlg').execute()\">".__('Save')."</button>
524 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedEditDlg').hide()\">".__('Cancel')."</button>
525 </div>";
526
527 return;
528 }
529
530 if ($subop == "editfeeds") {
531
532 $feed_ids = db_escape_string($_REQUEST["ids"]);
533
534 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"ids\" value=\"$feed_ids\">";
535 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-feeds\">";
536 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"subop\" value=\"batchEditSave\">";
537
538 print "<div class=\"dlgSec\">".__("Feed")."</div>";
539 print "<div class=\"dlgSecCont\">";
540
541 /* Title */
542
543 print "<input dojoType=\"dijit.form.ValidationTextBox\"
544 disabled=\"1\" style=\"font-size : 16px; width : 20em;\" required=\"1\"
545 name=\"title\" value=\"$title\">";
546
547 batch_edit_cbox("title");
548
549 /* Feed URL */
550
551 print "<br/>";
552
553 print __('URL:') . " ";
554 print "<input dojoType=\"dijit.form.ValidationTextBox\" disabled=\"1\"
555 required=\"1\" regExp='^(http|https)://.*' style=\"width : 20em\"
556 name=\"feed_url\" value=\"$feed_url\">";
557
558 batch_edit_cbox("feed_url");
559
560 /* Category */
561
562 if (get_pref($link, 'ENABLE_FEED_CATS')) {
563
564 print "<br/>";
565
566 print __('Place in category:') . " ";
567
568 print_feed_cat_select($link, "cat_id", $cat_id,
569 'disabled="1" dojoType="dijit.form.Select"');
570
571 batch_edit_cbox("cat_id");
572
573 }
574
575 print "</div>";
576
577 print "<div class=\"dlgSec\">".__("Update")."</div>";
578 print "<div class=\"dlgSecCont\">";
579
580 /* Update Interval */
581
582 print_select_hash("update_interval", $update_interval, $update_intervals,
583 'disabled="1" dojoType="dijit.form.Select"');
584
585 batch_edit_cbox("update_interval");
586
587 /* Update method */
588
589 print " " . __('using') . " ";
590 print_select_hash("update_method", $update_method, $update_methods,
591 'disabled="1" dojoType="dijit.form.Select"');
592 batch_edit_cbox("update_method");
593
594 /* Purge intl */
595
596 if (FORCE_ARTICLE_PURGE == 0) {
597
598 print "<br/>";
599
600 print __('Article purging:') . " ";
601
602 print_select_hash("purge_interval", $purge_interval, $purge_intervals,
603 'disabled="1" dojoType="dijit.form.Select"');
604
605 batch_edit_cbox("purge_interval");
606 }
607
608 print "</div>";
609 print "<div class=\"dlgSec\">".__("Authentication")."</div>";
610 print "<div class=\"dlgSecCont\">";
611
612 print "<input dojoType=\"dijit.form.TextBox\"
613 placeHolder=\"".__("Login")."\" disabled=\"1\"
614 name=\"auth_login\" value=\"$auth_login\">";
615
616 batch_edit_cbox("auth_login");
617
618 print "<br/><input dojoType=\"dijit.form.TextBox\" type=\"password\" name=\"auth_pass\"
619 placeHolder=\"".__("Password")."\" disabled=\"1\"
620 value=\"$auth_pass\">";
621
622 batch_edit_cbox("auth_pass");
623
624 print "</div>";
625 print "<div class=\"dlgSec\">".__("Options")."</div>";
626 print "<div class=\"dlgSecCont\">";
627
628 print "<input disabled=\"1\" type=\"checkbox\" name=\"private\" id=\"private\"
629 dojoType=\"dijit.form.CheckBox\">&nbsp;<label id=\"private_l\" class='insensitive' for=\"private\">".__('Hide from Popular feeds')."</label>";
630
631 print "&nbsp;"; batch_edit_cbox("private", "private_l");
632
633 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"rtl_content\" name=\"rtl_content\"
634 dojoType=\"dijit.form.CheckBox\">&nbsp;<label class='insensitive' id=\"rtl_content_l\" for=\"rtl_content\">".__('Right-to-left content')."</label>";
635
636 print "&nbsp;"; batch_edit_cbox("rtl_content", "rtl_content_l");
637
638 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"include_in_digest\"
639 name=\"include_in_digest\"
640 dojoType=\"dijit.form.CheckBox\">&nbsp;<label id=\"include_in_digest_l\" class='insensitive' for=\"include_in_digest\">".__('Include in e-mail digest')."</label>";
641
642 print "&nbsp;"; batch_edit_cbox("include_in_digest", "include_in_digest_l");
643
644 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"always_display_enclosures\"
645 name=\"always_display_enclosures\"
646 dojoType=\"dijit.form.CheckBox\">&nbsp;<label id=\"always_display_enclosures_l\" class='insensitive' for=\"always_display_enclosures\">".__('Always display image attachments')."</label>";
647
648 print "&nbsp;"; batch_edit_cbox("always_display_enclosures", "always_display_enclosures_l");
649
650 if (SIMPLEPIE_CACHE_IMAGES) {
651 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"cache_images\"
652 name=\"cache_images\"
653 dojoType=\"dijit.form.CheckBox\">&nbsp;<label class='insensitive' id=\"cache_images_l\"
654 for=\"cache_images\">".
655 __('Cache images locally')."</label>";
656
657
658 print "&nbsp;"; batch_edit_cbox("cache_images", "cache_images_l");
659 }
660
661 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"mark_unread_on_update\"
662 name=\"mark_unread_on_update\"
663 dojoType=\"dijit.form.CheckBox\">&nbsp;<label id=\"mark_unread_on_update_l\" class='insensitive' for=\"mark_unread_on_update\">".__('Mark updated articles as unread')."</label>";
664
665 print "&nbsp;"; batch_edit_cbox("mark_unread_on_update", "mark_unread_on_update_l");
666
667 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"update_on_checksum_change\"
668 name=\"update_on_checksum_change\"
669 dojoType=\"dijit.form.CheckBox\">&nbsp;<label id=\"update_on_checksum_change_l\" class='insensitive' for=\"update_on_checksum_change\">".__('Mark posts as updated on content change')."</label>";
670
671 print "&nbsp;"; batch_edit_cbox("update_on_checksum_change", "update_on_checksum_change_l");
672
673 print "</div>";
674
675 print "<div class='dlgButtons'>
676 <button dojoType=\"dijit.form.Button\"
677 onclick=\"return dijit.byId('feedEditDlg').execute()\">".
678 __('Save')."</button>
679 <button dojoType=\"dijit.form.Button\"
680 onclick=\"return dijit.byId('feedEditDlg').hide()\">".
681 __('Cancel')."</button>
682 </div>";
683
684 return;
685 }
686
687 if ($subop == "editSave" || $subop == "batchEditSave") {
688
689 $feed_title = db_escape_string(trim($_POST["title"]));
690 $feed_link = db_escape_string(trim($_POST["feed_url"]));
691 $upd_intl = db_escape_string($_POST["update_interval"]);
692 $purge_intl = db_escape_string($_POST["purge_interval"]);
693 $feed_id = db_escape_string($_POST["id"]); /* editSave */
694 $feed_ids = db_escape_string($_POST["ids"]); /* batchEditSave */
695 $cat_id = db_escape_string($_POST["cat_id"]);
696 $auth_login = db_escape_string(trim($_POST["auth_login"]));
697 $auth_pass = db_escape_string(trim($_POST["auth_pass"]));
698 $private = checkbox_to_sql_bool(db_escape_string($_POST["private"]));
699 $rtl_content = checkbox_to_sql_bool(db_escape_string($_POST["rtl_content"]));
700 $include_in_digest = checkbox_to_sql_bool(
701 db_escape_string($_POST["include_in_digest"]));
702 $cache_images = checkbox_to_sql_bool(
703 db_escape_string($_POST["cache_images"]));
704 $update_method = (int) db_escape_string($_POST["update_method"]);
705
706 $always_display_enclosures = checkbox_to_sql_bool(
707 db_escape_string($_POST["always_display_enclosures"]));
708
709 $mark_unread_on_update = checkbox_to_sql_bool(
710 db_escape_string($_POST["mark_unread_on_update"]));
711
712 $update_on_checksum_change = checkbox_to_sql_bool(
713 db_escape_string($_POST["update_on_checksum_change"]));
714
715 if (get_pref($link, 'ENABLE_FEED_CATS')) {
716 if ($cat_id && $cat_id != 0) {
717 $category_qpart = "cat_id = '$cat_id',";
718 $category_qpart_nocomma = "cat_id = '$cat_id'";
719 } else {
720 $category_qpart = 'cat_id = NULL,';
721 $category_qpart_nocomma = 'cat_id = NULL';
722 }
723 } else {
724 $category_qpart = "";
725 $category_qpart_nocomma = "";
726 }
727
728 if (SIMPLEPIE_CACHE_IMAGES) {
729 $cache_images_qpart = "cache_images = $cache_images,";
730 } else {
731 $cache_images_qpart = "";
732 }
733
734 if ($subop == "editSave") {
735
736 $result = db_query($link, "UPDATE ttrss_feeds SET
737 $category_qpart
738 title = '$feed_title', feed_url = '$feed_link',
739 update_interval = '$upd_intl',
740 purge_interval = '$purge_intl',
741 auth_login = '$auth_login',
742 auth_pass = '$auth_pass',
743 private = $private,
744 rtl_content = $rtl_content,
745 $cache_images_qpart
746 include_in_digest = $include_in_digest,
747 always_display_enclosures = $always_display_enclosures,
748 mark_unread_on_update = $mark_unread_on_update,
749 update_on_checksum_change = $update_on_checksum_change,
750 update_method = '$update_method'
751 WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
752
753 } else if ($subop == "batchEditSave") {
754 $feed_data = array();
755
756 foreach (array_keys($_POST) as $k) {
757 if ($k != "op" && $k != "subop" && $k != "ids") {
758 $feed_data[$k] = $_POST[$k];
759 }
760 }
761
762 db_query($link, "BEGIN");
763
764 foreach (array_keys($feed_data) as $k) {
765
766 $qpart = "";
767
768 switch ($k) {
769 case "title":
770 $qpart = "title = '$feed_title'";
771 break;
772
773 case "feed_url":
774 $qpart = "feed_url = '$feed_link'";
775 break;
776
777 case "update_interval":
778 $qpart = "update_interval = '$upd_intl'";
779 break;
780
781 case "purge_interval":
782 $qpart = "purge_interval = '$purge_intl'";
783 break;
784
785 case "auth_login":
786 $qpart = "auth_login = '$auth_login'";
787 break;
788
789 case "auth_pass":
790 $qpart = "auth_pass = '$auth_pass'";
791 break;
792
793 case "private":
794 $qpart = "private = '$private'";
795 break;
796
797 case "include_in_digest":
798 $qpart = "include_in_digest = '$include_in_digest'";
799 break;
800
801 case "always_display_enclosures":
802 $qpart = "always_display_enclosures = '$always_display_enclosures'";
803 break;
804
805 case "mark_unread_on_update":
806 $qpart = "mark_unread_on_update = '$mark_unread_on_update'";
807 break;
808
809 case "update_on_checksum_change":
810 $qpart = "update_on_checksum_change = '$update_on_checksum_change'";
811 break;
812
813 case "cache_images":
814 $qpart = "cache_images = '$cache_images'";
815 break;
816
817 case "rtl_content":
818 $qpart = "rtl_content = '$rtl_content'";
819 break;
820
821 case "update_method":
822 $qpart = "update_method = '$update_method'";
823 break;
824
825 case "cat_id":
826 $qpart = $category_qpart_nocomma;
827 break;
828
829 }
830
831 if ($qpart) {
832 db_query($link,
833 "UPDATE ttrss_feeds SET $qpart WHERE id IN ($feed_ids)
834 AND owner_uid = " . $_SESSION["uid"]);
835 print "<br/>";
836 }
837 }
838
839 db_query($link, "COMMIT");
840 }
841 return;
842 }
843
844 if ($subop == "resetPubSub") {
845
846 $ids = db_escape_string($_REQUEST["ids"]);
847
848 db_query($link, "UPDATE ttrss_feeds SET pubsub_state = 0 WHERE id IN ($ids)
849 AND owner_uid = " . $_SESSION["uid"]);
850
851 return;
852 }
853
854 if ($subop == "remove") {
855
856 $ids = split(",", db_escape_string($_REQUEST["ids"]));
857
858 foreach ($ids as $id) {
859 remove_feed($link, $id, $_SESSION["uid"]);
860 }
861
862 return;
863 }
864
865 if ($subop == "clear") {
866 $id = db_escape_string($_REQUEST["id"]);
867 clear_feed_articles($link, $id);
868 }
869
870 if ($subop == "rescore") {
871 $ids = split(",", db_escape_string($_REQUEST["ids"]));
872
873 foreach ($ids as $id) {
874
875 $filters = load_filters($link, $id, $_SESSION["uid"], 6);
876
877 $result = db_query($link, "SELECT
878 title, content, link, ref_id, author,".
879 SUBSTRING_FOR_DATE."(updated, 1, 19) AS updated
880 FROM
881 ttrss_user_entries, ttrss_entries
882 WHERE ref_id = id AND feed_id = '$id' AND
883 owner_uid = " .$_SESSION['uid']."
884 ");
885
886 $scores = array();
887
888 while ($line = db_fetch_assoc($result)) {
889
890 $tags = get_article_tags($link, $line["ref_id"]);
891
892 $article_filters = get_article_filters($filters, $line['title'],
893 $line['content'], $line['link'], strtotime($line['updated']),
894 $line['author'], $tags);
895
896 $new_score = calculate_article_score($article_filters);
897
898 if (!$scores[$new_score]) $scores[$new_score] = array();
899
900 array_push($scores[$new_score], $line['ref_id']);
901 }
902
903 foreach (array_keys($scores) as $s) {
904 if ($s > 1000) {
905 db_query($link, "UPDATE ttrss_user_entries SET score = '$s',
906 marked = true WHERE
907 ref_id IN (" . join(',', $scores[$s]) . ")");
908 } else if ($s < -500) {
909 db_query($link, "UPDATE ttrss_user_entries SET score = '$s',
910 unread = false WHERE
911 ref_id IN (" . join(',', $scores[$s]) . ")");
912 } else {
913 db_query($link, "UPDATE ttrss_user_entries SET score = '$s' WHERE
914 ref_id IN (" . join(',', $scores[$s]) . ")");
915 }
916 }
917 }
918
919 print __("All done.");
920
921 }
922
923 if ($subop == "rescoreAll") {
924
925 $result = db_query($link,
926 "SELECT id FROM ttrss_feeds WHERE owner_uid = " . $_SESSION['uid']);
927
928 while ($feed_line = db_fetch_assoc($result)) {
929
930 $id = $feed_line["id"];
931
932 $filters = load_filters($link, $id, $_SESSION["uid"], 6);
933
934 $tmp_result = db_query($link, "SELECT
935 title, content, link, ref_id, author,".
936 SUBSTRING_FOR_DATE."(updated, 1, 19) AS updated
937 FROM
938 ttrss_user_entries, ttrss_entries
939 WHERE ref_id = id AND feed_id = '$id' AND
940 owner_uid = " .$_SESSION['uid']."
941 ");
942
943 $scores = array();
944
945 while ($line = db_fetch_assoc($tmp_result)) {
946
947 $tags = get_article_tags($link, $line["ref_id"]);
948
949 $article_filters = get_article_filters($filters, $line['title'],
950 $line['content'], $line['link'], strtotime($line['updated']),
951 $line['author'], $tags);
952
953 $new_score = calculate_article_score($article_filters);
954
955 if (!$scores[$new_score]) $scores[$new_score] = array();
956
957 array_push($scores[$new_score], $line['ref_id']);
958 }
959
960 foreach (array_keys($scores) as $s) {
961 if ($s > 1000) {
962 db_query($link, "UPDATE ttrss_user_entries SET score = '$s',
963 marked = true WHERE
964 ref_id IN (" . join(',', $scores[$s]) . ")");
965 } else {
966 db_query($link, "UPDATE ttrss_user_entries SET score = '$s' WHERE
967 ref_id IN (" . join(',', $scores[$s]) . ")");
968 }
969 }
970 }
971
972 print __("All done.");
973
974 }
975
976 if ($subop == "add") {
977
978 $feed_url = db_escape_string(trim($_REQUEST["feed_url"]));
979 $cat_id = db_escape_string($_REQUEST["cat_id"]);
980 $p_from = db_escape_string($_REQUEST["from"]);
981
982 /* only read authentication information from POST */
983
984 $auth_login = db_escape_string(trim($_POST["auth_login"]));
985 $auth_pass = db_escape_string(trim($_POST["auth_pass"]));
986
987 if ($p_from != 'tt-rss') {
988 header("Content-Type: text/html");
989 print "<html>
990 <head>
991 <title>Tiny Tiny RSS</title>
992 <link rel=\"stylesheet\" type=\"text/css\" href=\"utility.css\">
993 </head>
994 <body>
995 <img class=\"floatingLogo\" src=\"images/ttrss_logo.png\"
996 alt=\"Tiny Tiny RSS\"/>
997 <h1>Subscribe to feed...</h1>";
998 }
999
1000 $rc = subscribe_to_feed($link, $feed_url, $cat_id, $auth_login, $auth_pass);
1001
1002 switch ($rc) {
1003 case 1:
1004 print_notice(T_sprintf("Subscribed to <b>%s</b>.", $feed_url));
1005 break;
1006 case 2:
1007 print_error(T_sprintf("Could not subscribe to <b>%s</b>.", $feed_url));
1008 break;
1009 case 0:
1010 print_warning(T_sprintf("Already subscribed to <b>%s</b>.", $feed_url));
1011 break;
1012 case 4:
1013 print_notice("Multiple feed URLs found.");
1014
1015 $feed_urls = get_feeds_from_html($feed_url);
1016 break;
1017 case 5:
1018 print_error(T_sprintf("Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL.", $feed_url));
1019 break;
1020 }
1021
1022 if ($p_from != 'tt-rss') {
1023
1024 if ($feed_urls) {
1025
1026 print "<form action=\"backend.php\">";
1027 print "<input type=\"hidden\" name=\"op\" value=\"pref-feeds\">";
1028 print "<input type=\"hidden\" name=\"quiet\" value=\"1\">";
1029 print "<input type=\"hidden\" name=\"subop\" value=\"add\">";
1030
1031 print "<select name=\"feed_url\">";
1032
1033 foreach ($feed_urls as $url => $name) {
1034 $url = htmlspecialchars($url);
1035 $name = htmlspecialchars($name);
1036
1037 print "<option value=\"$url\">$name</option>";
1038 }
1039
1040 print "<input type=\"submit\" value=\"".__("Subscribe to selected feed").
1041 "\">";
1042
1043 print "</form>";
1044 }
1045
1046 $tp_uri = get_self_url_prefix() . "/prefs.php";
1047 $tt_uri = get_self_url_prefix();
1048
1049 if ($rc <= 2){
1050 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
1051 feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
1052
1053 $feed_id = db_fetch_result($result, 0, "id");
1054 } else {
1055 $feed_id = 0;
1056 }
1057 print "<p>";
1058
1059 if ($feed_id) {
1060 print "<form method=\"GET\" style='display: inline'
1061 action=\"$tp_uri\">
1062 <input type=\"hidden\" name=\"tab\" value=\"feedConfig\">
1063 <input type=\"hidden\" name=\"subop\" value=\"editFeed\">
1064 <input type=\"hidden\" name=\"subopparam\" value=\"$feed_id\">
1065 <input type=\"submit\" value=\"".__("Edit subscription options")."\">
1066 </form>";
1067 }
1068
1069 print "<form style='display: inline' method=\"GET\" action=\"$tt_uri\">
1070 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
1071 </form></p>";
1072
1073 print "</body></html>";
1074 return;
1075 }
1076 }
1077
1078 if ($subop == "categorize") {
1079
1080
1081 $ids = split(",", db_escape_string($_REQUEST["ids"]));
1082
1083 $cat_id = db_escape_string($_REQUEST["cat_id"]);
1084
1085 if ($cat_id == 0) {
1086 $cat_id_qpart = 'NULL';
1087 } else {
1088 $cat_id_qpart = "'$cat_id'";
1089 }
1090
1091 db_query($link, "BEGIN");
1092
1093 foreach ($ids as $id) {
1094
1095 db_query($link, "UPDATE ttrss_feeds SET cat_id = $cat_id_qpart
1096 WHERE id = '$id'
1097 AND owner_uid = " . $_SESSION["uid"]);
1098
1099 }
1100
1101 db_query($link, "COMMIT");
1102
1103 }
1104
1105 if ($subop == "editCats") {
1106
1107 $action = $_REQUEST["action"];
1108
1109 if ($action == "save") {
1110
1111 $cat_title = db_escape_string(trim($_REQUEST["value"]));
1112 $cat_id = db_escape_string($_REQUEST["cid"]);
1113
1114 db_query($link, "BEGIN");
1115
1116 $result = db_query($link, "SELECT title FROM ttrss_feed_categories
1117 WHERE id = '$cat_id' AND owner_uid = ".$_SESSION["uid"]);
1118
1119 if (db_num_rows($result) == 1) {
1120
1121 $old_title = db_fetch_result($result, 0, "title");
1122
1123 if ($cat_title != "") {
1124 $result = db_query($link, "UPDATE ttrss_feed_categories SET
1125 title = '$cat_title' WHERE id = '$cat_id' AND
1126 owner_uid = ".$_SESSION["uid"]);
1127
1128 print $cat_title;
1129 } else {
1130 print $old_title;
1131 }
1132 } else {
1133 print $_REQUEST["value"];
1134 }
1135
1136 db_query($link, "COMMIT");
1137
1138 return;
1139
1140 }
1141
1142 if ($action == "add") {
1143
1144 $feed_cat = db_escape_string(trim($_REQUEST["cat"]));
1145
1146 if (!add_feed_category($link, $feed_cat))
1147 print_warning(T_sprintf("Category <b>$%s</b> already exists in the database.", $feed_cat));
1148
1149 }
1150
1151 if ($action == "remove") {
1152
1153 $ids = split(",", db_escape_string($_REQUEST["ids"]));
1154
1155 foreach ($ids as $id) {
1156 remove_feed_category($link, $id, $_SESSION["uid"]);
1157 }
1158 }
1159
1160 print "<div dojoType=\"dijit.Toolbar\">
1161 <input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\" name=\"newcat\">
1162 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedCatEditDlg').addCategory()\">".
1163 __('Create category')."</button></div>";
1164
1165 $result = db_query($link, "SELECT title,id FROM ttrss_feed_categories
1166 WHERE owner_uid = ".$_SESSION["uid"]."
1167 ORDER BY title");
1168
1169 # print "<p>";
1170
1171 if (db_num_rows($result) != 0) {
1172
1173 print "<div class=\"prefFeedCatHolder\">";
1174
1175 # print "<form id=\"feed_cat_edit_form\" onsubmit=\"return false\">";
1176
1177 print "<table width=\"100%\" class=\"prefFeedCatList\"
1178 cellspacing=\"0\" id=\"prefFeedCatList\">";
1179
1180 $lnum = 0;
1181
1182 while ($line = db_fetch_assoc($result)) {
1183
1184 $class = ($lnum % 2) ? "even" : "odd";
1185
1186 $cat_id = $line["id"];
1187 $this_row_id = "id=\"FCATR-$cat_id\"";
1188
1189 print "<tr class=\"\" $this_row_id>";
1190
1191 $edit_title = htmlspecialchars($line["title"]);
1192
1193 print "<td width='5%' align='center'><input
1194 onclick='toggleSelectRow2(this);' dojoType=\"dijit.form.CheckBox\"
1195 type=\"checkbox\"></td>";
1196
1197 print "<td>";
1198
1199 # print "<span id=\"FCATT-$cat_id\">" .
1200 # $edit_title . "</span>";
1201
1202 print "<span dojoType=\"dijit.InlineEditBox\"
1203 width=\"300px\" autoSave=\"false\"
1204 cat-id=\"$cat_id\">" . $edit_title .
1205 "<script type=\"dojo/method\" event=\"onChange\" args=\"item\">
1206 var elem = this;
1207 dojo.xhrPost({
1208 url: 'backend.php',
1209 content: {op: 'pref-feeds', subop: 'editCats',
1210 action: 'save',
1211 value: this.value,
1212 cid: this.srcNodeRef.getAttribute('cat-id')},
1213 load: function(response) {
1214 elem.attr('value', response);
1215 updateFeedList();
1216 }
1217 });
1218 </script>
1219 </span>";
1220
1221 print "</td></tr>";
1222
1223 ++$lnum;
1224 }
1225
1226 print "</table>";
1227
1228 # print "</form>";
1229
1230 print "</div>";
1231
1232 } else {
1233 print "<p>".__('No feed categories defined.')."</p>";
1234 }
1235
1236 print "<div class='dlgButtons'>
1237 <div style='float : left'>
1238 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedCatEditDlg').removeSelected()\">".
1239 __('Remove selected categories')."</button>
1240 </div>";
1241
1242 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedCatEditDlg').hide()\">".
1243 __('Close this window')."</button></div>";
1244
1245 return;
1246
1247 }
1248
1249 if ($quiet) return;
1250
1251 print "<div dojoType=\"dijit.layout.AccordionContainer\" region=\"center\">";
1252 print "<div id=\"pref-feeds-feeds\" dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Feeds')."\">";
1253
1254 $result = db_query($link, "SELECT COUNT(id) AS num_errors
1255 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
1256
1257 $num_errors = db_fetch_result($result, 0, "num_errors");
1258
1259 if ($num_errors > 0) {
1260
1261 $error_button = "<button dojoType=\"dijit.form.Button\"
1262 onclick=\"showFeedsWithErrors()\" id=\"errorButton\">" .
1263 __("Feeds with errors") . "</button>";
1264
1265 // print format_notice("<a href=\"javascript:showFeedsWithErrors()\">".
1266 // __('Some feeds have update errors (click for details)')."</a>");
1267 }
1268
1269 if (DB_TYPE == "pgsql") {
1270 $interval_qpart = "NOW() - INTERVAL '3 months'";
1271 } else {
1272 $interval_qpart = "DATE_SUB(NOW(), INTERVAL 3 MONTH)";
1273 }
1274
1275 $result = db_query($link, "SELECT COUNT(*) AS num_inactive FROM ttrss_feeds WHERE
1276 (SELECT MAX(updated) FROM ttrss_entries, ttrss_user_entries WHERE
1277 ttrss_entries.id = ref_id AND
1278 ttrss_user_entries.feed_id = ttrss_feeds.id) < $interval_qpart AND
1279 ttrss_feeds.owner_uid = ".$_SESSION["uid"]);
1280
1281 $num_inactive = db_fetch_result($result, 0, "num_inactive");
1282
1283 if ($num_inactive > 0) {
1284 $inactive_button = "<button dojoType=\"dijit.form.Button\"
1285 onclick=\"showInactiveFeeds()\">" .
1286 __("Inactive feeds") . "</button>";
1287 }
1288
1289 $feed_search = db_escape_string($_REQUEST["search"]);
1290
1291 if (array_key_exists("search", $_REQUEST)) {
1292 $_SESSION["prefs_feed_search"] = $feed_search;
1293 } else {
1294 $feed_search = $_SESSION["prefs_feed_search"];
1295 }
1296
1297 print "<div dojoType=\"dijit.Toolbar\">";
1298
1299 print "<div dojoType=\"dijit.form.DropDownButton\">".
1300 "<span>" . __('Select')."</span>";
1301 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1302 print "<div onclick=\"dijit.byId('feedTree').model.setAllChecked(true)\"
1303 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
1304 print "<div onclick=\"dijit.byId('feedTree').model.setAllChecked(false)\"
1305 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
1306 print "</div></div>";
1307
1308 print "<div dojoType=\"dijit.form.DropDownButton\">".
1309 "<span>" . __('Feeds')."</span>";
1310 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1311 print "<div onclick=\"quickAddFeed()\"
1312 dojoType=\"dijit.MenuItem\">".__('Subscribe to feed')."</div>";
1313 print "<div onclick=\"editSelectedFeed()\"
1314 dojoType=\"dijit.MenuItem\">".__('Edit selected feeds')."</div>";
1315 print "<div onclick=\"resetFeedOrder()\"
1316 dojoType=\"dijit.MenuItem\">".__('Reset sort order')."</div>";
1317 print "</div></div>";
1318
1319 if (get_pref($link, 'ENABLE_FEED_CATS')) {
1320 print "<div dojoType=\"dijit.form.DropDownButton\">".
1321 "<span>" . __('Categories')."</span>";
1322 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1323 print "<div onclick=\"editFeedCats()\"
1324 dojoType=\"dijit.MenuItem\">".__('Edit categories')."</div>";
1325 print "<div onclick=\"resetCatOrder()\"
1326 dojoType=\"dijit.MenuItem\">".__('Reset sort order')."</div>";
1327 print "</div></div>";
1328
1329 }
1330
1331 print $error_button;
1332 print $inactive_button;
1333
1334 print "<button dojoType=\"dijit.form.Button\" onclick=\"removeSelectedFeeds()\">"
1335 .__('Unsubscribe')."</button dojoType=\"dijit.form.Button\"> ";
1336
1337 if (defined('_ENABLE_FEED_DEBUGGING')) {
1338
1339 print "<select id=\"feedActionChooser\" onchange=\"feedActionChange()\">
1340 <option value=\"facDefault\" selected>".__('More actions...')."</option>";
1341
1342 if (FORCE_ARTICLE_PURGE == 0) {
1343 print
1344 "<option value=\"facPurge\">".__('Manual purge')."</option>";
1345 }
1346
1347 print "
1348 <option value=\"facClear\">".__('Clear feed data')."</option>
1349 <option value=\"facRescore\">".__('Rescore articles')."</option>";
1350
1351 print "</select>";
1352
1353 }
1354
1355 print "</div>"; # toolbar
1356
1357 print "<div id=\"feedlistLoading\">
1358 <img src='images/indicator_tiny.gif'>".
1359 __("Loading, please wait...")."</div>";
1360
1361 print "<div dojoType=\"fox.PrefFeedStore\" jsId=\"feedStore\"
1362 url=\"backend.php?op=pref-feeds&subop=getfeedtree\">
1363 </div>
1364 <div dojoType=\"lib.CheckBoxStoreModel\" jsId=\"feedModel\" store=\"feedStore\"
1365 query=\"{id:'root'}\" rootId=\"root\" rootLabel=\"Feeds\"
1366 childrenAttrs=\"items\" checkboxStrict=\"false\" checkboxAll=\"false\">
1367 </div>
1368 <div dojoType=\"fox.PrefFeedTree\" id=\"feedTree\"
1369 dndController=\"dijit.tree.dndSource\"
1370 betweenThreshold=\"5\"
1371 model=\"feedModel\" openOnClick=\"false\">
1372 <script type=\"dojo/method\" event=\"onClick\" args=\"item\">
1373 var id = String(item.id);
1374 var bare_id = id.substr(id.indexOf(':')+1);
1375
1376 if (id.match('FEED:')) {
1377 editFeed(bare_id);
1378 } else if (id.match('CAT:')) {
1379 editCat(bare_id, item);
1380 }
1381 </script>
1382 <script type=\"dojo/method\" event=\"onLoad\" args=\"item\">
1383 Element.hide(\"feedlistLoading\");
1384 </script>
1385 </div>";
1386
1387 print "<div dojoType=\"dijit.Tooltip\" connectId=\"feedTree\" position=\"below\">
1388 ".__('<b>Hint:</b> you can drag feeds and categories around.')."
1389 </div>";
1390
1391 print "</div>"; # feeds pane
1392
1393 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('OPML')."\">";
1394
1395 print "<p>" . __("Using OPML you can export and import your feeds and Tiny Tiny RSS settings.");
1396
1397 print "<div class=\"insensitive\">" . __("Note: Only main settings profile can be migrated using OPML.") . "</div>";
1398
1399 print "</p>";
1400
1401 print "<iframe id=\"upload_iframe\"
1402 name=\"upload_iframe\" onload=\"opmlImportComplete(this)\"
1403 style=\"width: 400px; height: 100px; display: none;\"></iframe>";
1404
1405 print "<form style='display : block' target=\"upload_iframe\"
1406 enctype=\"multipart/form-data\" method=\"POST\"
1407 action=\"backend.php\">
1408 <input id=\"opml_file\" name=\"opml_file\" type=\"file\">&nbsp;
1409 <input type=\"hidden\" name=\"op\" value=\"dlg\">
1410 <input type=\"hidden\" name=\"id\" value=\"importOpml\">
1411 <button dojoType=\"dijit.form.Button\" onclick=\"return opmlImport();\"
1412 type=\"submit\">".__('Import')."</button>
1413 <button dojoType=\"dijit.form.Button\" onclick=\"gotoExportOpml()\">".__('Export OPML')."</button>
1414 </form>";
1415
1416 print "<p>".__('Your OPML can be published publicly and can be subscribed by anyone who knows the URL below.');
1417
1418 print "<div class=\"insensitive\">" . __("Note: Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds.") . "</div>" . "</p>";
1419
1420 print "<button dojoType=\"dijit.form.Button\" onclick=\"return displayDlg('pubOPMLUrl')\">".
1421 __('Display URL')."</button> ";
1422
1423
1424 print "</div>"; # pane
1425
1426 if (strpos($_SERVER['HTTP_USER_AGENT'], "Firefox") !== false) {
1427
1428 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Firefox integration')."\">";
1429
1430 print "<p>" . __('This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below.') . "</p>";
1431
1432 print "<p>";
1433
1434 print "<button onclick='window.navigator.registerContentHandler(" .
1435 "\"application/vnd.mozilla.maybe.feed\", " .
1436 "\"" . add_feed_url() . "\", " . " \"Tiny Tiny RSS\")'>" .
1437 __('Click here to register this site as a feed reader.') .
1438 "</button>";
1439
1440 print "</p>";
1441
1442 print "</div>"; # pane
1443 }
1444
1445 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Subscribing using bookmarklet')."\">";
1446
1447 print "<p>" . __("Drag the link below to your browser toolbar, open the feed you're interested in in your browser and click on the link to subscribe to it.") . "</p>";
1448
1449 $bm_subscribe_url = str_replace('%s', '', add_feed_url());
1450
1451 $confirm_str = __('Subscribe to %s in Tiny Tiny RSS?');
1452
1453 $bm_url = htmlspecialchars("javascript:{if(confirm('$confirm_str'.replace('%s',window.location.href)))window.location.href='$bm_subscribe_url'+window.location.href}");
1454
1455 print "<a href=\"$bm_url\" class='bookmarklet'>" . __('Subscribe in Tiny Tiny RSS'). "</a>";
1456
1457 print "</div>"; #pane
1458
1459 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Published articles and generated feeds')."\">";
1460
1461 print "<p>".__('Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below.')."</p>";
1462
1463 $rss_url = '-2::' . htmlspecialchars(get_self_url_prefix() .
1464 "/backend.php?op=rss&id=-2&view-mode=all_articles");;
1465
1466 print "<button dojoType=\"dijit.form.Button\" onclick=\"return displayDlg('generatedFeed', '$rss_url')\">".
1467 __('Display URL')."</button> ";
1468
1469 print "<button dojoType=\"dijit.form.Button\" onclick=\"return clearFeedAccessKeys()\">".
1470 __('Clear all generated URLs')."</button> ";
1471
1472 print "</div>"; #pane
1473
1474 if (defined('CONSUMER_KEY') && CONSUMER_KEY != '') {
1475
1476 print "<div id=\"pref-feeds-twitter\" dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Twitter')."\">";
1477
1478 $result = db_query($link, "SELECT COUNT(*) AS cid FROM ttrss_users
1479 WHERE twitter_oauth IS NOT NULL AND twitter_oauth != '' AND
1480 id = " . $_SESSION['uid']);
1481
1482 $is_registered = db_fetch_result($result, 0, "cid") != 0;
1483
1484 if (!$is_registered) {
1485 print_notice(__('Before you can update your Twitter feeds, you must register this instance of Tiny Tiny RSS with Twitter.com.'));
1486 } else {
1487 print_notice(__('You have been successfully registered with Twitter.com and should be able to access your Twitter feeds.'));
1488 }
1489
1490 print "<button dojoType=\"dijit.form.Button\" onclick=\"window.location.href = 'twitter.php?op=register'\">".
1491 __("Register with Twitter.com")."</button>";
1492
1493 print " ";
1494
1495 print "<button dojoType=\"dijit.form.Button\"
1496 onclick=\"return clearTwitterCredentials()\">".
1497 __("Clear stored credentials")."</button>";
1498
1499 print "</div>"; # pane
1500
1501 }
1502
1503 print "</div>"; #container
1504
1505 }
1506
1507 function make_feed_browser($link, $search, $limit, $mode = 1) {
1508
1509 $owner_uid = $_SESSION["uid"];
1510 $rv = '';
1511
1512 if ($search) {
1513 $search_qpart = "AND (UPPER(feed_url) LIKE UPPER('%$search%') OR
1514 UPPER(title) LIKE UPPER('%$search%'))";
1515 } else {
1516 $search_qpart = "";
1517 }
1518
1519 if ($mode == 1) {
1520 $result = db_query($link, "SELECT feed_url, subscribers FROM
1521 ttrss_feedbrowser_cache WHERE (SELECT COUNT(id) = 0 FROM ttrss_feeds AS tf
1522 WHERE tf.feed_url = ttrss_feedbrowser_cache.feed_url
1523 AND owner_uid = '$owner_uid') $search_qpart
1524 ORDER BY subscribers DESC LIMIT $limit");
1525 } else if ($mode == 2) {
1526 $result = db_query($link, "SELECT *,
1527 (SELECT COUNT(*) FROM ttrss_user_entries WHERE
1528 orig_feed_id = ttrss_archived_feeds.id) AS articles_archived
1529 FROM
1530 ttrss_archived_feeds
1531 WHERE
1532 (SELECT COUNT(*) FROM ttrss_feeds
1533 WHERE ttrss_feeds.feed_url = ttrss_archived_feeds.feed_url AND
1534 owner_uid = '$owner_uid') = 0 AND
1535 owner_uid = '$owner_uid' $search_qpart
1536 ORDER BY id DESC LIMIT $limit");
1537 }
1538
1539 $feedctr = 0;
1540
1541 while ($line = db_fetch_assoc($result)) {
1542
1543 if ($mode == 1) {
1544
1545 $feed_url = $line["feed_url"];
1546 $subscribers = $line["subscribers"];
1547
1548 $det_result = db_query($link, "SELECT site_url,title,id
1549 FROM ttrss_feeds WHERE feed_url = '$feed_url' LIMIT 1");
1550
1551 $details = db_fetch_assoc($det_result);
1552
1553 $icon_file = ICONS_DIR . "/" . $details["id"] . ".ico";
1554
1555 if (file_exists($icon_file) && filesize($icon_file) > 0) {
1556 $feed_icon = "<img style=\"vertical-align : middle\" class=\"tinyFeedIcon\" src=\"" . ICONS_URL .
1557 "/".$details["id"].".ico\">";
1558 } else {
1559 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
1560 }
1561
1562 $check_box = "<input onclick='toggleSelectListRow2(this)'
1563 dojoType=\"dijit.form.CheckBox\"
1564 type=\"checkbox\" \">";
1565
1566 $class = ($feedctr % 2) ? "even" : "odd";
1567
1568 $feed_url = htmlspecialchars($line["feed_url"]);
1569
1570 if ($details["site_url"]) {
1571 $site_url = "<a target=\"_blank\" href=\"".
1572 htmlspecialchars($details["site_url"])."\">
1573 <img style='border-width : 0px' src='images/www.png' alt='www'></a>";
1574 } else {
1575 $site_url = "";
1576 }
1577
1578 $feed_url = "<a target=\"_blank\" href=\"$feed_url\"><img
1579 style='border-width : 0px; vertical-align : middle'
1580 src='images/feed-icon-12x12.png'></a>";
1581
1582 $rv .= "<li title=\"".htmlspecialchars($details["site_url"])."\"
1583 id=\"FBROW-".$details["id"]."\">$check_box".
1584 "$feed_icon $feed_url " . htmlspecialchars($details["title"]) .
1585 "&nbsp;<span class='subscribers'>($subscribers)</span>
1586 $site_url</li>";
1587
1588 } else if ($mode == 2) {
1589 $feed_url = htmlspecialchars($line["feed_url"]);
1590 $site_url = htmlspecialchars($line["site_url"]);
1591 $title = htmlspecialchars($line["title"]);
1592
1593 $icon_file = ICONS_DIR . "/" . $line["id"] . ".ico";
1594
1595 if (file_exists($icon_file) && filesize($icon_file) > 0) {
1596 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"" . ICONS_URL .
1597 "/".$line["id"].".ico\">";
1598 } else {
1599 $feed_icon = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\">";
1600 }
1601
1602 $check_box = "<input onclick='toggleSelectListRow2(this)' dojoType=\"dijit.form.CheckBox\"
1603 type=\"checkbox\">";
1604
1605 $class = ($feedctr % 2) ? "even" : "odd";
1606
1607 if ($line['articles_archived'] > 0) {
1608 $archived = sprintf(__("%d archived articles"), $line['articles_archived']);
1609 $archived = "&nbsp;<span class='subscribers'>($archived)</span>";
1610 } else {
1611 $archived = '';
1612 }
1613
1614 if ($line["site_url"]) {
1615 $site_url = "<a target=\"_blank\" href=\"$site_url\">
1616 <img style='border-width : 0px' src='images/www.png' alt='www'></a>";
1617 } else {
1618 $site_url = "";
1619 }
1620
1621 $feed_url = "<a target=\"_blank\" href=\"$feed_url\"><img
1622 style='border-width : 0px; vertical-align : middle'
1623 src='images/feed-icon-12x12.png'></a>";
1624
1625 $rv .= "<li title='".$line['site_url']."' class='$class'
1626 id=\"FBROW-".$line["id"]."\">".
1627 $check_box . "$feed_icon $feed_url " . $title .
1628 $archived . $site_url . "</li>";
1629
1630
1631 }
1632
1633 ++$feedctr;
1634 }
1635
1636 if ($feedctr == 0) {
1637 $rv .= "<li style=\"text-align : center\"><p>".__('No feeds found.')."</p></li>";
1638 }
1639
1640 return $rv;
1641
1642 }
1643
1644 ?>