]> git.wh0rd.org - tt-rss.git/blame - classes/pref/feeds.php
use height : auto in cdmContentInner
[tt-rss.git] / classes / pref / feeds.php
CommitLineData
afcfe6ca 1<?php
369dbc19 2class Pref_Feeds extends Handler_Protected {
8484ce22
AD
3
4 function csrf_ignore($method) {
f6cd767b 5 $csrf_ignored = array("index", "getfeedtree", "add", "editcats", "editfeed",
201bb1ca
AD
6 "savefeedorder", "uploadicon", "feedswitherrors", "inactivefeeds",
7 "batchsubscribe");
8484ce22
AD
8
9 return array_search($method, $csrf_ignored) !== false;
10 }
11
afcfe6ca
AD
12 function batch_edit_cbox($elem, $label = false) {
13 print "<input type=\"checkbox\" title=\"".__("Check to enable field")."\"
14 onchange=\"dijit.byId('feedEditDlg').toggleField(this, '$elem', '$label')\">";
15 }
16
17 function renamecat() {
3972bf59
AD
18 $title = db_escape_string($this->link, $_REQUEST['title']);
19 $id = db_escape_string($this->link, $_REQUEST['id']);
afcfe6ca
AD
20
21 if ($title) {
22 db_query($this->link, "UPDATE ttrss_feed_categories SET
23 title = '$title' WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
24 }
25 return;
26 }
27
2a060a94 28 private function get_category_items($cat_id) {
6e0ee833
AD
29
30 if ($_REQUEST['mode'] != 2)
31 $search = $_SESSION["prefs_feed_search"];
32 else
33 $search = "";
17c755f0
AD
34
35 if ($search) $search_qpart = " AND LOWER(title) LIKE LOWER('%$search%')";
36
66ca7c30
AD
37 // first one is set by API
38 $show_empty_cats = $_REQUEST['force_show_empty'] ||
39 ($_REQUEST['mode'] != 2 && !$search &&
40 get_pref($this->link, '_PREFS_SHOW_EMPTY_CATS'));
2a060a94
AD
41
42 $items = array();
43
88918ca6 44 $result = db_query($this->link, "SELECT id, title FROM ttrss_feed_categories
2a060a94
AD
45 WHERE owner_uid = " . $_SESSION["uid"] . " AND parent_cat = '$cat_id' ORDER BY order_id, title");
46
47 while ($line = db_fetch_assoc($result)) {
48
49 $cat = array();
50 $cat['id'] = 'CAT:' . $line['id'];
2ecd2df5 51 $cat['bare_id'] = (int)$line['id'];
2a060a94
AD
52 $cat['name'] = $line['title'];
53 $cat['items'] = array();
54 $cat['checkbox'] = false;
55 $cat['type'] = 'category';
2ecd2df5 56 $cat['unread'] = 0;
2c5f231e 57 $cat['child_unread'] = 0;
2a060a94
AD
58
59 $cat['items'] = $this->get_category_items($line['id']);
60
1a293f10 61 $cat['param'] = vsprintf(_ngettext('(%d feed)', '(%d feeds)', count($cat['items'])), count($cat['items']));
2a060a94
AD
62
63 if (count($cat['items']) > 0 || $show_empty_cats)
64 array_push($items, $cat);
65
66 }
67
68 $feed_result = db_query($this->link, "SELECT id, title, last_error,
69 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
70 FROM ttrss_feeds
71 WHERE cat_id = '$cat_id' AND owner_uid = ".$_SESSION["uid"].
72 "$search_qpart ORDER BY order_id, title");
73
74 while ($feed_line = db_fetch_assoc($feed_result)) {
75 $feed = array();
76 $feed['id'] = 'FEED:' . $feed_line['id'];
2ecd2df5 77 $feed['bare_id'] = (int)$feed_line['id'];
2a060a94
AD
78 $feed['name'] = $feed_line['title'];
79 $feed['checkbox'] = false;
2ecd2df5 80 $feed['unread'] = 0;
2a060a94
AD
81 $feed['error'] = $feed_line['last_error'];
82 $feed['icon'] = getFeedIcon($feed_line['id']);
83 $feed['param'] = make_local_datetime($this->link,
84 $feed_line['last_updated'], true);
85
86 array_push($items, $feed);
87 }
88
89 return $items;
90 }
91
afcfe6ca 92 function getfeedtree() {
0bb5833b
AD
93 print json_encode($this->makefeedtree());
94 }
95
96 function makefeedtree() {
afcfe6ca 97
6e0ee833
AD
98 if ($_REQUEST['mode'] != 2)
99 $search = $_SESSION["prefs_feed_search"];
100 else
101 $search = "";
afcfe6ca
AD
102
103 if ($search) $search_qpart = " AND LOWER(title) LIKE LOWER('%$search%')";
104
105 $root = array();
106 $root['id'] = 'root';
107 $root['name'] = __('Feeds');
108 $root['items'] = array();
109 $root['type'] = 'category';
110
2ecd2df5
AD
111 $enable_cats = get_pref($this->link, 'ENABLE_FEED_CATS');
112
113 if ($_REQUEST['mode'] == 2) {
114
115 if ($enable_cats) {
88918ca6 116 $cat = $this->feedlist_init_cat(-1);
2ecd2df5
AD
117 } else {
118 $cat['items'] = array();
119 }
120
5417fbd7 121 foreach (array(-4, -3, -1, -2, 0, -6) as $i) {
2ecd2df5
AD
122 array_push($cat['items'], $this->feedlist_init_feed($i));
123 }
124
a413f53e
AD
125 /* Plugin feeds for -1 */
126
127 global $pluginhost;
128
129 $feeds = $pluginhost->get_feeds(-1);
130
131 if ($feeds) {
132 foreach ($feeds as $feed) {
133 $feed_id = PluginHost::pfeed_to_feed_id($feed['id']);
134
135 $item = array();
136 $item['id'] = 'FEED:' . $feed_id;
137 $item['bare_id'] = (int)$feed_id;
138 $item['name'] = $feed['title'];
139 $item['checkbox'] = false;
140 $item['error'] = '';
141 $item['icon'] = $feed['icon'];
142
143 $item['param'] = '';
144 $item['unread'] = 0; //$feed['sender']->get_unread($feed['id']);
145 $item['type'] = 'feed';
146
147 array_push($cat['items'], $item);
148 }
149 }
150
2ecd2df5
AD
151 if ($enable_cats) {
152 array_push($root['items'], $cat);
153 } else {
154 $root['items'] = array_merge($root['items'], $cat['items']);
155 }
afcfe6ca 156
2ecd2df5
AD
157 $result = db_query($this->link, "SELECT * FROM
158 ttrss_labels2 WHERE owner_uid = ".$_SESSION['uid']." ORDER by caption");
159
160 if (db_num_rows($result) > 0) {
161
162 if (get_pref($this->link, 'ENABLE_FEED_CATS')) {
88918ca6 163 $cat = $this->feedlist_init_cat(-2);
2ecd2df5
AD
164 } else {
165 $cat['items'] = array();
166 }
167
168 while ($line = db_fetch_assoc($result)) {
169
f822a8e5 170 $label_id = label_to_feed_id($line['id']);
2ecd2df5 171
88918ca6 172 $feed = $this->feedlist_init_feed($label_id, false, 0);
2ecd2df5
AD
173
174 $feed['fg_color'] = $line['fg_color'];
175 $feed['bg_color'] = $line['bg_color'];
176
177 array_push($cat['items'], $feed);
178 }
179
180 if ($enable_cats) {
181 array_push($root['items'], $cat);
182 } else {
183 $root['items'] = array_merge($root['items'], $cat['items']);
184 }
185 }
186 }
187
188 if ($enable_cats) {
66ca7c30
AD
189 $show_empty_cats = $_REQUEST['force_show_empty'] ||
190 ($_REQUEST['mode'] != 2 && !$search &&
191 get_pref($this->link, '_PREFS_SHOW_EMPTY_CATS'));
2ecd2df5 192
88918ca6 193 $result = db_query($this->link, "SELECT id, title FROM ttrss_feed_categories
2a060a94 194 WHERE owner_uid = " . $_SESSION["uid"] . " AND parent_cat IS NULL ORDER BY order_id, title");
afcfe6ca
AD
195
196 while ($line = db_fetch_assoc($result)) {
197 $cat = array();
198 $cat['id'] = 'CAT:' . $line['id'];
2ecd2df5 199 $cat['bare_id'] = (int)$line['id'];
afcfe6ca
AD
200 $cat['name'] = $line['title'];
201 $cat['items'] = array();
202 $cat['checkbox'] = false;
203 $cat['type'] = 'category';
2ecd2df5 204 $cat['unread'] = 0;
2c5f231e 205 $cat['child_unread'] = 0;
afcfe6ca 206
2a060a94 207 $cat['items'] = $this->get_category_items($line['id']);
afcfe6ca 208
1a293f10 209 $cat['param'] = vsprintf(_ngettext('(%d feed)', '(%d feeds)', count($cat['items'])), count($cat['items']));
afcfe6ca 210
5b7bd238 211 if (count($cat['items']) > 0 || $show_empty_cats)
afcfe6ca
AD
212 array_push($root['items'], $cat);
213
214 $root['param'] += count($cat['items']);
215 }
216
217 /* Uncategorized is a special case */
218
219 $cat = array();
220 $cat['id'] = 'CAT:0';
221 $cat['bare_id'] = 0;
222 $cat['name'] = __("Uncategorized");
223 $cat['items'] = array();
224 $cat['type'] = 'category';
225 $cat['checkbox'] = false;
2ecd2df5 226 $cat['unread'] = 0;
2c5f231e 227 $cat['child_unread'] = 0;
afcfe6ca
AD
228
229 $feed_result = db_query($this->link, "SELECT id, title,last_error,
230 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
231 FROM ttrss_feeds
232 WHERE cat_id IS NULL AND owner_uid = ".$_SESSION["uid"].
233 "$search_qpart ORDER BY order_id, title");
234
235 while ($feed_line = db_fetch_assoc($feed_result)) {
236 $feed = array();
237 $feed['id'] = 'FEED:' . $feed_line['id'];
2ecd2df5 238 $feed['bare_id'] = (int)$feed_line['id'];
afcfe6ca
AD
239 $feed['name'] = $feed_line['title'];
240 $feed['checkbox'] = false;
241 $feed['error'] = $feed_line['last_error'];
242 $feed['icon'] = getFeedIcon($feed_line['id']);
243 $feed['param'] = make_local_datetime($this->link,
244 $feed_line['last_updated'], true);
2ecd2df5
AD
245 $feed['unread'] = 0;
246 $feed['type'] = 'feed';
afcfe6ca
AD
247
248 array_push($cat['items'], $feed);
249 }
250
1a293f10 251 $cat['param'] = vsprintf(_ngettext('(%d feed)', '(%d feeds)', count($cat['items'])), count($cat['items']));
afcfe6ca 252
5b7bd238 253 if (count($cat['items']) > 0 || $show_empty_cats)
afcfe6ca
AD
254 array_push($root['items'], $cat);
255
256 $root['param'] += count($cat['items']);
1a293f10 257 $root['param'] = vsprintf(_ngettext('(%d feed)', '(%d feeds)', count($cat['items'])), count($cat['items']));
afcfe6ca
AD
258
259 } else {
260 $feed_result = db_query($this->link, "SELECT id, title, last_error,
261 ".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
262 FROM ttrss_feeds
263 WHERE owner_uid = ".$_SESSION["uid"].
264 "$search_qpart ORDER BY order_id, title");
265
266 while ($feed_line = db_fetch_assoc($feed_result)) {
267 $feed = array();
268 $feed['id'] = 'FEED:' . $feed_line['id'];
2ecd2df5 269 $feed['bare_id'] = (int)$feed_line['id'];
afcfe6ca
AD
270 $feed['name'] = $feed_line['title'];
271 $feed['checkbox'] = false;
272 $feed['error'] = $feed_line['last_error'];
273 $feed['icon'] = getFeedIcon($feed_line['id']);
274 $feed['param'] = make_local_datetime($this->link,
275 $feed_line['last_updated'], true);
2ecd2df5
AD
276 $feed['unread'] = 0;
277 $feed['type'] = 'feed';
afcfe6ca
AD
278
279 array_push($root['items'], $feed);
280 }
281
1a293f10 282 $root['param'] = vsprintf(_ngettext('(%d feed)', '(%d feeds)', count($cat['items'])), count($cat['items']));
afcfe6ca
AD
283 }
284
285 $fl = array();
286 $fl['identifier'] = 'id';
287 $fl['label'] = 'name';
2ecd2df5
AD
288
289 if ($_REQUEST['mode'] != 2) {
290 $fl['items'] = array($root);
291 } else {
292 $fl['items'] =& $root['items'];
293 }
afcfe6ca 294
0bb5833b 295 return $fl;
afcfe6ca
AD
296 }
297
298 function catsortreset() {
299 db_query($this->link, "UPDATE ttrss_feed_categories
300 SET order_id = 0 WHERE owner_uid = " . $_SESSION["uid"]);
301 return;
302 }
303
304 function feedsortreset() {
305 db_query($this->link, "UPDATE ttrss_feeds
306 SET order_id = 0 WHERE owner_uid = " . $_SESSION["uid"]);
307 return;
308 }
309
5b7bd238
AD
310 function togglehiddenfeedcats() {
311 set_pref($this->link, '_PREFS_SHOW_EMPTY_CATS',
312 (get_pref($this->link, '_PREFS_SHOW_EMPTY_CATS') ? 'false' : 'true'));
313 }
314
95ee44b3
AD
315 private function process_category_order(&$data_map, $item_id, $parent_id = false, $nest_level = 0) {
316 $debug = isset($_REQUEST["debug"]);
317
318 $prefix = "";
319 for ($i = 0; $i < $nest_level; $i++)
320 $prefix .= " ";
321
322 if ($debug) _debug("$prefix C: $item_id P: $parent_id");
323
324 $bare_item_id = substr($item_id, strpos($item_id, ':')+1);
2a060a94
AD
325
326 if ($item_id != 'root') {
327 if ($parent_id && $parent_id != 'root') {
328 $parent_bare_id = substr($parent_id, strpos($parent_id, ':')+1);
3972bf59 329 $parent_qpart = db_escape_string($this->link, $parent_bare_id);
2a060a94
AD
330 } else {
331 $parent_qpart = 'NULL';
332 }
333
334 db_query($this->link, "UPDATE ttrss_feed_categories
95ee44b3 335 SET parent_cat = $parent_qpart WHERE id = '$bare_item_id' AND
2a060a94
AD
336 owner_uid = " . $_SESSION["uid"]);
337 }
338
339 $order_id = 0;
340
341 $cat = $data_map[$item_id];
342
343 if ($cat && is_array($cat)) {
344 foreach ($cat as $item) {
345 $id = $item['_reference'];
346 $bare_id = substr($id, strpos($id, ':')+1);
347
95ee44b3 348 if ($debug) _debug("$prefix [$order_id] $id/$bare_id");
2a060a94
AD
349
350 if ($item['_reference']) {
351
352 if (strpos($id, "FEED") === 0) {
353
95ee44b3 354 $cat_id = ($item_id != "root") ?
3972bf59 355 db_escape_string($this->link, $bare_item_id) : "NULL";
95ee44b3 356
49b2401e
AD
357 $cat_qpart = ($cat_id != 0) ? "cat_id = '$cat_id'" :
358 "cat_id = NULL";
359
2a060a94 360 db_query($this->link, "UPDATE ttrss_feeds
49b2401e 361 SET order_id = $order_id, $cat_qpart
95ee44b3 362 WHERE id = '$bare_id' AND
2a060a94
AD
363 owner_uid = " . $_SESSION["uid"]);
364
365 } else if (strpos($id, "CAT:") === 0) {
95ee44b3
AD
366 $this->process_category_order($data_map, $item['_reference'], $item_id,
367 $nest_level+1);
2a060a94
AD
368
369 if ($item_id != 'root') {
3972bf59 370 $parent_qpart = db_escape_string($this->link, $bare_id);
2a060a94
AD
371 } else {
372 $parent_qpart = 'NULL';
373 }
374
375 db_query($this->link, "UPDATE ttrss_feed_categories
376 SET order_id = '$order_id' WHERE id = '$bare_id' AND
377 owner_uid = " . $_SESSION["uid"]);
378 }
379 }
380
381 ++$order_id;
382 }
383 }
384 }
385
afcfe6ca
AD
386 function savefeedorder() {
387 $data = json_decode($_POST['payload'], true);
388
2a060a94
AD
389 #file_put_contents("/tmp/saveorder.json", $_POST['payload']);
390 #$data = json_decode(file_get_contents("/tmp/saveorder.json"), true);
a26f57e6 391
95ee44b3
AD
392 if (!is_array($data['items']))
393 $data['items'] = json_decode($data['items'], true);
394
395# print_r($data['items']);
2a060a94 396
afcfe6ca
AD
397 if (is_array($data) && is_array($data['items'])) {
398 $cat_order_id = 0;
399
400 $data_map = array();
2a060a94 401 $root_item = false;
afcfe6ca
AD
402
403 foreach ($data['items'] as $item) {
404
2a060a94 405# if ($item['id'] != 'root') {
afcfe6ca
AD
406 if (is_array($item['items'])) {
407 if (isset($item['items']['_reference'])) {
408 $data_map[$item['id']] = array($item['items']);
409 } else {
410 $data_map[$item['id']] =& $item['items'];
411 }
412 }
2a060a94
AD
413 if ($item['id'] == 'root') {
414 $root_item = $item['id'];
afcfe6ca
AD
415 }
416 }
417
d04f8c82 418 $this->process_category_order($data_map, $root_item);
2a060a94
AD
419
420 /* foreach ($data['items'][0]['items'] as $item) {
afcfe6ca
AD
421 $id = $item['_reference'];
422 $bare_id = substr($id, strpos($id, ':')+1);
423
424 ++$cat_order_id;
425
426 if ($bare_id > 0) {
427 db_query($this->link, "UPDATE ttrss_feed_categories
428 SET order_id = '$cat_order_id' WHERE id = '$bare_id' AND
429 owner_uid = " . $_SESSION["uid"]);
430 }
431
432 $feed_order_id = 0;
433
434 if (is_array($data_map[$id])) {
435 foreach ($data_map[$id] as $feed) {
436 $id = $feed['_reference'];
437 $feed_id = substr($id, strpos($id, ':')+1);
438
439 if ($bare_id != 0)
440 $cat_query = "cat_id = '$bare_id'";
441 else
442 $cat_query = "cat_id = NULL";
443
444 db_query($this->link, "UPDATE ttrss_feeds
445 SET order_id = '$feed_order_id',
446 $cat_query
447 WHERE id = '$feed_id' AND
448 owner_uid = " . $_SESSION["uid"]);
449
450 ++$feed_order_id;
451 }
452 }
2a060a94 453 } */
afcfe6ca
AD
454 }
455
456 return;
457 }
458
459 function removeicon() {
3972bf59 460 $feed_id = db_escape_string($this->link, $_REQUEST["feed_id"]);
afcfe6ca
AD
461
462 $result = db_query($this->link, "SELECT id FROM ttrss_feeds
463 WHERE id = '$feed_id' AND owner_uid = ". $_SESSION["uid"]);
464
465 if (db_num_rows($result) != 0) {
3306daec 466 @unlink(ICONS_DIR . "/$feed_id.ico");
afcfe6ca
AD
467 }
468
469 return;
470 }
471
472 function uploadicon() {
350e3944
AD
473 header("Content-type: text/html");
474
3306daec
AD
475 $tmp_file = false;
476
477 if (is_uploaded_file($_FILES['icon_file']['tmp_name'])) {
478 $tmp_file = tempnam(CACHE_DIR . '/upload', 'icon');
479
480 $result = move_uploaded_file($_FILES['icon_file']['tmp_name'],
481 $tmp_file);
482
483 if (!$result) {
484 return;
485 }
486 } else {
487 return;
488 }
489
490 $icon_file = $tmp_file;
3972bf59 491 $feed_id = db_escape_string($this->link, $_REQUEST["feed_id"]);
afcfe6ca
AD
492
493 if (is_file($icon_file) && $feed_id) {
494 if (filesize($icon_file) < 20000) {
495
496 $result = db_query($this->link, "SELECT id FROM ttrss_feeds
497 WHERE id = '$feed_id' AND owner_uid = ". $_SESSION["uid"]);
498
499 if (db_num_rows($result) != 0) {
3306daec
AD
500 @unlink(ICONS_DIR . "/$feed_id.ico");
501 rename($icon_file, ICONS_DIR . "/$feed_id.ico");
afcfe6ca
AD
502 $rc = 0;
503 } else {
504 $rc = 2;
505 }
506 } else {
507 $rc = 1;
508 }
509 } else {
510 $rc = 2;
511 }
512
3306daec
AD
513 @unlink($icon_file);
514
afcfe6ca
AD
515 print "<script type=\"text/javascript\">";
516 print "parent.uploadIconHandler($rc);";
517 print "</script>";
518 return;
519 }
520
521 function editfeed() {
522 global $purge_intervals;
523 global $update_intervals;
afcfe6ca 524
3972bf59 525 $feed_id = db_escape_string($this->link, $_REQUEST["id"]);
afcfe6ca
AD
526
527 $result = db_query($this->link,
528 "SELECT * FROM ttrss_feeds WHERE id = '$feed_id' AND
529 owner_uid = " . $_SESSION["uid"]);
530
531 $title = htmlspecialchars(db_fetch_result($result,
532 0, "title"));
533
534 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"id\" value=\"$feed_id\">";
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=\"method\" value=\"editSave\">";
537
538 print "<div class=\"dlgSec\">".__("Feed")."</div>";
539 print "<div class=\"dlgSecCont\">";
540
541 /* Title */
542
543 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\"
544 placeHolder=\"".__("Feed Title")."\"
545 style=\"font-size : 16px; width: 20em\" name=\"title\" value=\"$title\">";
546
547 /* Feed URL */
548
549 $feed_url = db_fetch_result($result, 0, "feed_url");
550 $feed_url = htmlspecialchars(db_fetch_result($result,
551 0, "feed_url"));
552
553 print "<hr/>";
554
555 print __('URL:') . " ";
556 print "<input dojoType=\"dijit.form.ValidationTextBox\" required=\"1\"
557 placeHolder=\"".__("Feed URL")."\"
558 regExp='^(http|https)://.*' style=\"width : 20em\"
559 name=\"feed_url\" value=\"$feed_url\">";
560
561 $last_error = db_fetch_result($result, 0, "last_error");
562
563 if ($last_error) {
564 print "&nbsp;<span title=\"".htmlspecialchars($last_error)."\"
565 class=\"feed_error\">(error)</span>";
566
567 }
568
569 /* Category */
570
571 if (get_pref($this->link, 'ENABLE_FEED_CATS')) {
572
573 $cat_id = db_fetch_result($result, 0, "cat_id");
574
575 print "<hr/>";
576
577 print __('Place in category:') . " ";
578
579 print_feed_cat_select($this->link, "cat_id", $cat_id,
580 'dojoType="dijit.form.Select"');
581 }
582
583 print "</div>";
584
585 print "<div class=\"dlgSec\">".__("Update")."</div>";
586 print "<div class=\"dlgSecCont\">";
587
588 /* Update Interval */
589
590 $update_interval = db_fetch_result($result, 0, "update_interval");
591
592 print_select_hash("update_interval", $update_interval, $update_intervals,
593 'dojoType="dijit.form.Select"');
594
19b3992b 595 /* Purge intl */
afcfe6ca
AD
596
597 $purge_interval = db_fetch_result($result, 0, "purge_interval");
598
afcfe6ca
AD
599 print "<hr/>";
600 print __('Article purging:') . " ";
601
602 print_select_hash("purge_interval", $purge_interval, $purge_intervals,
603 'dojoType="dijit.form.Select" ' .
604 ((FORCE_ARTICLE_PURGE == 0) ? "" : 'disabled="1"'));
605
606 print "</div>";
607 print "<div class=\"dlgSec\">".__("Authentication")."</div>";
608 print "<div class=\"dlgSecCont\">";
609
610 $auth_login = htmlspecialchars(db_fetch_result($result, 0, "auth_login"));
611
612 print "<input dojoType=\"dijit.form.TextBox\" id=\"feedEditDlg_login\"
613 placeHolder=\"".__("Login")."\"
614 name=\"auth_login\" value=\"$auth_login\"><hr/>";
615
616 $auth_pass = htmlspecialchars(db_fetch_result($result, 0, "auth_pass"));
617
618 print "<input dojoType=\"dijit.form.TextBox\" type=\"password\" name=\"auth_pass\"
619 placeHolder=\"".__("Password")."\"
620 value=\"$auth_pass\">";
621
622 print "<div dojoType=\"dijit.Tooltip\" connectId=\"feedEditDlg_login\" position=\"below\">
623 ".__('<b>Hint:</b> you need to fill in your login information if your feed requires authentication, except for Twitter feeds.')."
624 </div>";
625
626 print "</div>";
627 print "<div class=\"dlgSec\">".__("Options")."</div>";
628 print "<div class=\"dlgSecCont\">";
629
630 $private = sql_bool_to_bool(db_fetch_result($result, 0, "private"));
631
632 if ($private) {
633 $checked = "checked=\"1\"";
634 } else {
635 $checked = "";
636 }
637
638 print "<input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" name=\"private\" id=\"private\"
639 $checked>&nbsp;<label for=\"private\">".__('Hide from Popular feeds')."</label>";
640
afcfe6ca
AD
641 $include_in_digest = sql_bool_to_bool(db_fetch_result($result, 0, "include_in_digest"));
642
643 if ($include_in_digest) {
644 $checked = "checked=\"1\"";
645 } else {
646 $checked = "";
647 }
648
649 print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"include_in_digest\"
650 name=\"include_in_digest\"
651 $checked>&nbsp;<label for=\"include_in_digest\">".__('Include in e-mail digest')."</label>";
652
653
654 $always_display_enclosures = sql_bool_to_bool(db_fetch_result($result, 0, "always_display_enclosures"));
655
656 if ($always_display_enclosures) {
657 $checked = "checked";
658 } else {
659 $checked = "";
660 }
661
662 print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"always_display_enclosures\"
663 name=\"always_display_enclosures\"
664 $checked>&nbsp;<label for=\"always_display_enclosures\">".__('Always display image attachments')."</label>";
665
bfd61d3f
AD
666 $hide_images = sql_bool_to_bool(db_fetch_result($result, 0, "hide_images"));
667
668 if ($hide_images) {
669 $checked = "checked=\"1\"";
670 } else {
671 $checked = "";
672 }
673
674 print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"hide_images\"
675 name=\"hide_images\"
676 $checked>&nbsp;<label for=\"hide_images\">".
677 __('Do not embed images')."</label>";
afcfe6ca
AD
678
679 $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
680
681 if ($cache_images) {
682 $checked = "checked=\"1\"";
683 } else {
684 $checked = "";
685 }
686
3c696512
AD
687 print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"cache_images\"
688 name=\"cache_images\"
afcfe6ca 689 $checked>&nbsp;<label for=\"cache_images\">".
3c696512 690 __('Cache images locally')."</label>";
afcfe6ca
AD
691
692 $mark_unread_on_update = sql_bool_to_bool(db_fetch_result($result, 0, "mark_unread_on_update"));
693
694 if ($mark_unread_on_update) {
695 $checked = "checked";
696 } else {
697 $checked = "";
698 }
699
700 print "<hr/><input dojoType=\"dijit.form.CheckBox\" type=\"checkbox\" id=\"mark_unread_on_update\"
701 name=\"mark_unread_on_update\"
702 $checked>&nbsp;<label for=\"mark_unread_on_update\">".__('Mark updated articles as unread')."</label>";
703
afcfe6ca
AD
704 print "</div>";
705
706 /* Icon */
707
708 print "<div class=\"dlgSec\">".__("Icon")."</div>";
709 print "<div class=\"dlgSecCont\">";
710
711 print "<iframe name=\"icon_upload_iframe\"
712 style=\"width: 400px; height: 100px; display: none;\"></iframe>";
713
714 print "<form style='display : block' target=\"icon_upload_iframe\"
715 enctype=\"multipart/form-data\" method=\"POST\"
716 action=\"backend.php\">
717 <input id=\"icon_file\" size=\"10\" name=\"icon_file\" type=\"file\">
718 <input type=\"hidden\" name=\"op\" value=\"pref-feeds\">
719 <input type=\"hidden\" name=\"feed_id\" value=\"$feed_id\">
720 <input type=\"hidden\" name=\"method\" value=\"uploadicon\">
721 <button dojoType=\"dijit.form.Button\" onclick=\"return uploadFeedIcon();\"
722 type=\"submit\">".__('Replace')."</button>
723 <button dojoType=\"dijit.form.Button\" onclick=\"return removeFeedIcon($feed_id);\"
724 type=\"submit\">".__('Remove')."</button>
725 </form>";
726
727 print "</div>";
728
729 $title = htmlspecialchars($title, ENT_QUOTES);
730
731 print "<div class='dlgButtons'>
732 <div style=\"float : left\">
733 <button dojoType=\"dijit.form.Button\" onclick='return unsubscribeFeed($feed_id, \"$title\")'>".
734 __('Unsubscribe')."</button>";
735
736 if (PUBSUBHUBBUB_ENABLED) {
737 $pubsub_state = db_fetch_result($result, 0, "pubsub_state");
738 $pubsub_btn_disabled = ($pubsub_state == 2) ? "" : "disabled=\"1\"";
739
740 print "<button dojoType=\"dijit.form.Button\" id=\"pubsubReset_Btn\" $pubsub_btn_disabled
741 onclick='return resetPubSub($feed_id, \"$title\")'>".__('Resubscribe to push updates').
742 "</button>";
743 }
744
745 print "</div>";
746
747 print "<div dojoType=\"dijit.Tooltip\" connectId=\"pubsubReset_Btn\" position=\"below\">".
748 __('Resets PubSubHubbub subscription status for push-enabled feeds.')."</div>";
749
750 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedEditDlg').execute()\">".__('Save')."</button>
751 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedEditDlg').hide()\">".__('Cancel')."</button>
752 </div>";
753
754 return;
755 }
756
757 function editfeeds() {
758 global $purge_intervals;
759 global $update_intervals;
46da73c2 760
3972bf59 761 $feed_ids = db_escape_string($this->link, $_REQUEST["ids"]);
afcfe6ca 762
fcef9eea
AD
763 print_notice("Enable the options you wish to apply using checkboxes on the right:");
764
765 print "<p>";
ca6a0741 766
afcfe6ca
AD
767 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"ids\" value=\"$feed_ids\">";
768 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-feeds\">";
769 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"batchEditSave\">";
770
771 print "<div class=\"dlgSec\">".__("Feed")."</div>";
772 print "<div class=\"dlgSecCont\">";
773
774 /* Title */
775
776 print "<input dojoType=\"dijit.form.ValidationTextBox\"
777 disabled=\"1\" style=\"font-size : 16px; width : 20em;\" required=\"1\"
778 name=\"title\" value=\"$title\">";
779
780 $this->batch_edit_cbox("title");
781
782 /* Feed URL */
783
784 print "<br/>";
785
786 print __('URL:') . " ";
787 print "<input dojoType=\"dijit.form.ValidationTextBox\" disabled=\"1\"
788 required=\"1\" regExp='^(http|https)://.*' style=\"width : 20em\"
789 name=\"feed_url\" value=\"$feed_url\">";
790
791 $this->batch_edit_cbox("feed_url");
792
793 /* Category */
794
795 if (get_pref($this->link, 'ENABLE_FEED_CATS')) {
796
797 print "<br/>";
798
799 print __('Place in category:') . " ";
800
801 print_feed_cat_select($this->link, "cat_id", $cat_id,
802 'disabled="1" dojoType="dijit.form.Select"');
803
804 $this->batch_edit_cbox("cat_id");
805
806 }
807
808 print "</div>";
809
810 print "<div class=\"dlgSec\">".__("Update")."</div>";
811 print "<div class=\"dlgSecCont\">";
812
813 /* Update Interval */
814
815 print_select_hash("update_interval", $update_interval, $update_intervals,
816 'disabled="1" dojoType="dijit.form.Select"');
817
818 $this->batch_edit_cbox("update_interval");
819
afcfe6ca
AD
820 /* Purge intl */
821
822 if (FORCE_ARTICLE_PURGE == 0) {
823
824 print "<br/>";
825
826 print __('Article purging:') . " ";
827
828 print_select_hash("purge_interval", $purge_interval, $purge_intervals,
829 'disabled="1" dojoType="dijit.form.Select"');
830
831 $this->batch_edit_cbox("purge_interval");
832 }
833
834 print "</div>";
835 print "<div class=\"dlgSec\">".__("Authentication")."</div>";
836 print "<div class=\"dlgSecCont\">";
837
838 print "<input dojoType=\"dijit.form.TextBox\"
839 placeHolder=\"".__("Login")."\" disabled=\"1\"
840 name=\"auth_login\" value=\"$auth_login\">";
841
842 $this->batch_edit_cbox("auth_login");
843
844 print "<br/><input dojoType=\"dijit.form.TextBox\" type=\"password\" name=\"auth_pass\"
845 placeHolder=\"".__("Password")."\" disabled=\"1\"
846 value=\"$auth_pass\">";
847
848 $this->batch_edit_cbox("auth_pass");
849
850 print "</div>";
851 print "<div class=\"dlgSec\">".__("Options")."</div>";
852 print "<div class=\"dlgSecCont\">";
853
854 print "<input disabled=\"1\" type=\"checkbox\" name=\"private\" id=\"private\"
855 dojoType=\"dijit.form.CheckBox\">&nbsp;<label id=\"private_l\" class='insensitive' for=\"private\">".__('Hide from Popular feeds')."</label>";
856
857 print "&nbsp;"; $this->batch_edit_cbox("private", "private_l");
858
afcfe6ca
AD
859 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"include_in_digest\"
860 name=\"include_in_digest\"
861 dojoType=\"dijit.form.CheckBox\">&nbsp;<label id=\"include_in_digest_l\" class='insensitive' for=\"include_in_digest\">".__('Include in e-mail digest')."</label>";
862
863 print "&nbsp;"; $this->batch_edit_cbox("include_in_digest", "include_in_digest_l");
864
865 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"always_display_enclosures\"
866 name=\"always_display_enclosures\"
867 dojoType=\"dijit.form.CheckBox\">&nbsp;<label id=\"always_display_enclosures_l\" class='insensitive' for=\"always_display_enclosures\">".__('Always display image attachments')."</label>";
868
869 print "&nbsp;"; $this->batch_edit_cbox("always_display_enclosures", "always_display_enclosures_l");
870
bfd61d3f
AD
871 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"hide_images\"
872 name=\"hide_images\"
873 dojoType=\"dijit.form.CheckBox\">&nbsp;<label class='insensitive' id=\"hide_images_l\"
874 for=\"hide_images\">".
875 __('Do not embed images')."</label>";
876
877 print "&nbsp;"; $this->batch_edit_cbox("hide_images", "hide_images_l");
878
3c696512
AD
879 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"cache_images\"
880 name=\"cache_images\"
881 dojoType=\"dijit.form.CheckBox\">&nbsp;<label class='insensitive' id=\"cache_images_l\"
882 for=\"cache_images\">".
883 __('Cache images locally')."</label>";
afcfe6ca 884
3c696512 885 print "&nbsp;"; $this->batch_edit_cbox("cache_images", "cache_images_l");
afcfe6ca
AD
886
887 print "<br/><input disabled=\"1\" type=\"checkbox\" id=\"mark_unread_on_update\"
888 name=\"mark_unread_on_update\"
889 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>";
890
891 print "&nbsp;"; $this->batch_edit_cbox("mark_unread_on_update", "mark_unread_on_update_l");
892
afcfe6ca
AD
893 print "</div>";
894
895 print "<div class='dlgButtons'>
896 <button dojoType=\"dijit.form.Button\"
897 onclick=\"return dijit.byId('feedEditDlg').execute()\">".
898 __('Save')."</button>
899 <button dojoType=\"dijit.form.Button\"
900 onclick=\"return dijit.byId('feedEditDlg').hide()\">".
901 __('Cancel')."</button>
902 </div>";
903
904 return;
905 }
906
907 function batchEditSave() {
3a76e2a2 908 return $this->editsaveops(true);
afcfe6ca 909 }
46da73c2 910
afcfe6ca 911 function editSave() {
3a76e2a2 912 return $this->editsaveops(false);
afcfe6ca 913 }
46da73c2
AD
914
915 function editsaveops($batch) {
916
3972bf59
AD
917 $feed_title = db_escape_string($this->link, trim($_POST["title"]));
918 $feed_link = db_escape_string($this->link, trim($_POST["feed_url"]));
919 $upd_intl = (int) db_escape_string($this->link, $_POST["update_interval"]);
920 $purge_intl = (int) db_escape_string($this->link, $_POST["purge_interval"]);
921 $feed_id = (int) db_escape_string($this->link, $_POST["id"]); /* editSave */
922 $feed_ids = db_escape_string($this->link, $_POST["ids"]); /* batchEditSave */
923 $cat_id = (int) db_escape_string($this->link, $_POST["cat_id"]);
924 $auth_login = db_escape_string($this->link, trim($_POST["auth_login"]));
925 $auth_pass = db_escape_string($this->link, trim($_POST["auth_pass"]));
926 $private = checkbox_to_sql_bool(db_escape_string($this->link, $_POST["private"]));
afcfe6ca 927 $include_in_digest = checkbox_to_sql_bool(
3972bf59 928 db_escape_string($this->link, $_POST["include_in_digest"]));
afcfe6ca 929 $cache_images = checkbox_to_sql_bool(
3972bf59 930 db_escape_string($this->link, $_POST["cache_images"]));
bfd61d3f 931 $hide_images = checkbox_to_sql_bool(
3972bf59 932 db_escape_string($this->link, $_POST["hide_images"]));
afcfe6ca 933 $always_display_enclosures = checkbox_to_sql_bool(
3972bf59 934 db_escape_string($this->link, $_POST["always_display_enclosures"]));
afcfe6ca
AD
935
936 $mark_unread_on_update = checkbox_to_sql_bool(
3972bf59 937 db_escape_string($this->link, $_POST["mark_unread_on_update"]));
afcfe6ca 938
afcfe6ca
AD
939 if (get_pref($this->link, 'ENABLE_FEED_CATS')) {
940 if ($cat_id && $cat_id != 0) {
941 $category_qpart = "cat_id = '$cat_id',";
942 $category_qpart_nocomma = "cat_id = '$cat_id'";
943 } else {
944 $category_qpart = 'cat_id = NULL,';
945 $category_qpart_nocomma = 'cat_id = NULL';
946 }
947 } else {
948 $category_qpart = "";
949 $category_qpart_nocomma = "";
950 }
951
3a76e2a2 952 if (!$batch) {
afcfe6ca
AD
953
954 $result = db_query($this->link, "UPDATE ttrss_feeds SET
955 $category_qpart
956 title = '$feed_title', feed_url = '$feed_link',
957 update_interval = '$upd_intl',
958 purge_interval = '$purge_intl',
959 auth_login = '$auth_login',
960 auth_pass = '$auth_pass',
961 private = $private,
87764a50 962 cache_images = $cache_images,
bfd61d3f 963 hide_images = $hide_images,
afcfe6ca
AD
964 include_in_digest = $include_in_digest,
965 always_display_enclosures = $always_display_enclosures,
5321e775 966 mark_unread_on_update = $mark_unread_on_update
19b3992b 967 WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
afcfe6ca 968
3a76e2a2 969 } else {
afcfe6ca
AD
970 $feed_data = array();
971
972 foreach (array_keys($_POST) as $k) {
973 if ($k != "op" && $k != "method" && $k != "ids") {
974 $feed_data[$k] = $_POST[$k];
975 }
976 }
977
978 db_query($this->link, "BEGIN");
979
980 foreach (array_keys($feed_data) as $k) {
981
982 $qpart = "";
983
984 switch ($k) {
985 case "title":
986 $qpart = "title = '$feed_title'";
987 break;
988
989 case "feed_url":
990 $qpart = "feed_url = '$feed_link'";
991 break;
992
993 case "update_interval":
994 $qpart = "update_interval = '$upd_intl'";
995 break;
996
997 case "purge_interval":
998 $qpart = "purge_interval = '$purge_intl'";
999 break;
1000
1001 case "auth_login":
1002 $qpart = "auth_login = '$auth_login'";
1003 break;
1004
1005 case "auth_pass":
1006 $qpart = "auth_pass = '$auth_pass'";
1007 break;
1008
1009 case "private":
a498d18b 1010 $qpart = "private = $private";
afcfe6ca
AD
1011 break;
1012
1013 case "include_in_digest":
a498d18b 1014 $qpart = "include_in_digest = $include_in_digest";
afcfe6ca
AD
1015 break;
1016
1017 case "always_display_enclosures":
a498d18b 1018 $qpart = "always_display_enclosures = $always_display_enclosures";
afcfe6ca
AD
1019 break;
1020
1021 case "mark_unread_on_update":
a498d18b 1022 $qpart = "mark_unread_on_update = $mark_unread_on_update";
afcfe6ca
AD
1023 break;
1024
afcfe6ca 1025 case "cache_images":
a498d18b 1026 $qpart = "cache_images = $cache_images";
afcfe6ca
AD
1027 break;
1028
bfd61d3f
AD
1029 case "hide_images":
1030 $qpart = "hide_images = $hide_images";
1031 break;
1032
afcfe6ca
AD
1033 case "cat_id":
1034 $qpart = $category_qpart_nocomma;
1035 break;
1036
1037 }
1038
1039 if ($qpart) {
1040 db_query($this->link,
1041 "UPDATE ttrss_feeds SET $qpart WHERE id IN ($feed_ids)
1042 AND owner_uid = " . $_SESSION["uid"]);
1043 print "<br/>";
1044 }
1045 }
1046
1047 db_query($this->link, "COMMIT");
1048 }
1049 return;
1050 }
1051
1052 function resetPubSub() {
1053
3972bf59 1054 $ids = db_escape_string($this->link, $_REQUEST["ids"]);
afcfe6ca
AD
1055
1056 db_query($this->link, "UPDATE ttrss_feeds SET pubsub_state = 0 WHERE id IN ($ids)
1057 AND owner_uid = " . $_SESSION["uid"]);
1058
1059 return;
1060 }
1061
1062 function remove() {
1063
3972bf59 1064 $ids = split(",", db_escape_string($this->link, $_REQUEST["ids"]));
afcfe6ca
AD
1065
1066 foreach ($ids as $id) {
efc6553d 1067 Pref_Feeds::remove_feed($this->link, $id, $_SESSION["uid"]);
afcfe6ca
AD
1068 }
1069
1070 return;
1071 }
1072
1073 function clear() {
3972bf59 1074 $id = db_escape_string($this->link, $_REQUEST["id"]);
87d7e850 1075 $this->clear_feed_articles($this->link, $id);
afcfe6ca
AD
1076 }
1077
1078 function rescore() {
92c14e9d
AD
1079 require_once "rssfuncs.php";
1080
3972bf59 1081 $ids = split(",", db_escape_string($this->link, $_REQUEST["ids"]));
afcfe6ca
AD
1082
1083 foreach ($ids as $id) {
1084
1085 $filters = load_filters($this->link, $id, $_SESSION["uid"], 6);
1086
1087 $result = db_query($this->link, "SELECT
1088 title, content, link, ref_id, author,".
1089 SUBSTRING_FOR_DATE."(updated, 1, 19) AS updated
1090 FROM
1091 ttrss_user_entries, ttrss_entries
1092 WHERE ref_id = id AND feed_id = '$id' AND
1093 owner_uid = " .$_SESSION['uid']."
1094 ");
1095
1096 $scores = array();
1097
1098 while ($line = db_fetch_assoc($result)) {
1099
1100 $tags = get_article_tags($this->link, $line["ref_id"]);
1101
1102 $article_filters = get_article_filters($filters, $line['title'],
1103 $line['content'], $line['link'], strtotime($line['updated']),
1104 $line['author'], $tags);
1105
1106 $new_score = calculate_article_score($article_filters);
1107
1108 if (!$scores[$new_score]) $scores[$new_score] = array();
1109
1110 array_push($scores[$new_score], $line['ref_id']);
1111 }
1112
1113 foreach (array_keys($scores) as $s) {
1114 if ($s > 1000) {
1115 db_query($this->link, "UPDATE ttrss_user_entries SET score = '$s',
1116 marked = true WHERE
1117 ref_id IN (" . join(',', $scores[$s]) . ")");
1118 } else if ($s < -500) {
1119 db_query($this->link, "UPDATE ttrss_user_entries SET score = '$s',
1120 unread = false WHERE
1121 ref_id IN (" . join(',', $scores[$s]) . ")");
1122 } else {
1123 db_query($this->link, "UPDATE ttrss_user_entries SET score = '$s' WHERE
1124 ref_id IN (" . join(',', $scores[$s]) . ")");
1125 }
1126 }
1127 }
1128
1129 print __("All done.");
1130
1131 }
1132
1133 function rescoreAll() {
1134
1135 $result = db_query($this->link,
1136 "SELECT id FROM ttrss_feeds WHERE owner_uid = " . $_SESSION['uid']);
1137
1138 while ($feed_line = db_fetch_assoc($result)) {
1139
1140 $id = $feed_line["id"];
1141
1142 $filters = load_filters($this->link, $id, $_SESSION["uid"], 6);
1143
1144 $tmp_result = db_query($this->link, "SELECT
1145 title, content, link, ref_id, author,".
1146 SUBSTRING_FOR_DATE."(updated, 1, 19) AS updated
1147 FROM
1148 ttrss_user_entries, ttrss_entries
1149 WHERE ref_id = id AND feed_id = '$id' AND
1150 owner_uid = " .$_SESSION['uid']."
1151 ");
1152
1153 $scores = array();
1154
1155 while ($line = db_fetch_assoc($tmp_result)) {
1156
1157 $tags = get_article_tags($this->link, $line["ref_id"]);
1158
1159 $article_filters = get_article_filters($filters, $line['title'],
1160 $line['content'], $line['link'], strtotime($line['updated']),
1161 $line['author'], $tags);
1162
1163 $new_score = calculate_article_score($article_filters);
1164
1165 if (!$scores[$new_score]) $scores[$new_score] = array();
1166
1167 array_push($scores[$new_score], $line['ref_id']);
1168 }
1169
1170 foreach (array_keys($scores) as $s) {
1171 if ($s > 1000) {
1172 db_query($this->link, "UPDATE ttrss_user_entries SET score = '$s',
1173 marked = true WHERE
1174 ref_id IN (" . join(',', $scores[$s]) . ")");
1175 } else {
1176 db_query($this->link, "UPDATE ttrss_user_entries SET score = '$s' WHERE
1177 ref_id IN (" . join(',', $scores[$s]) . ")");
1178 }
1179 }
1180 }
1181
1182 print __("All done.");
1183
1184 }
1185
afcfe6ca 1186 function categorize() {
3972bf59 1187 $ids = split(",", db_escape_string($this->link, $_REQUEST["ids"]));
afcfe6ca 1188
3972bf59 1189 $cat_id = db_escape_string($this->link, $_REQUEST["cat_id"]);
afcfe6ca
AD
1190
1191 if ($cat_id == 0) {
1192 $cat_id_qpart = 'NULL';
1193 } else {
1194 $cat_id_qpart = "'$cat_id'";
1195 }
1196
1197 db_query($this->link, "BEGIN");
1198
1199 foreach ($ids as $id) {
1200
1201 db_query($this->link, "UPDATE ttrss_feeds SET cat_id = $cat_id_qpart
1202 WHERE id = '$id'
1203 AND owner_uid = " . $_SESSION["uid"]);
1204
1205 }
1206
1207 db_query($this->link, "COMMIT");
1208 }
1209
28537341 1210 function removeCat() {
3972bf59 1211 $ids = split(",", db_escape_string($this->link, $_REQUEST["ids"]));
28537341 1212 foreach ($ids as $id) {
a6a9b812 1213 $this->remove_feed_category($this->link, $id, $_SESSION["uid"]);
28537341
AD
1214 }
1215 }
1216
1217 function addCat() {
3972bf59 1218 $feed_cat = db_escape_string($this->link, trim($_REQUEST["cat"]));
28537341
AD
1219
1220 add_feed_category($this->link, $feed_cat);
1221 }
1222
afcfe6ca
AD
1223 function index() {
1224
1225 print "<div dojoType=\"dijit.layout.AccordionContainer\" region=\"center\">";
1226 print "<div id=\"pref-feeds-feeds\" dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Feeds')."\">";
1227
1228 $result = db_query($this->link, "SELECT COUNT(id) AS num_errors
1229 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
1230
1231 $num_errors = db_fetch_result($result, 0, "num_errors");
1232
1233 if ($num_errors > 0) {
1234
1235 $error_button = "<button dojoType=\"dijit.form.Button\"
1236 onclick=\"showFeedsWithErrors()\" id=\"errorButton\">" .
1237 __("Feeds with errors") . "</button>";
1238 }
1239
1240 if (DB_TYPE == "pgsql") {
1241 $interval_qpart = "NOW() - INTERVAL '3 months'";
1242 } else {
1243 $interval_qpart = "DATE_SUB(NOW(), INTERVAL 3 MONTH)";
1244 }
1245
1246 $result = db_query($this->link, "SELECT COUNT(*) AS num_inactive FROM ttrss_feeds WHERE
1247 (SELECT MAX(updated) FROM ttrss_entries, ttrss_user_entries WHERE
1248 ttrss_entries.id = ref_id AND
1249 ttrss_user_entries.feed_id = ttrss_feeds.id) < $interval_qpart AND
1250 ttrss_feeds.owner_uid = ".$_SESSION["uid"]);
1251
1252 $num_inactive = db_fetch_result($result, 0, "num_inactive");
1253
1254 if ($num_inactive > 0) {
1255 $inactive_button = "<button dojoType=\"dijit.form.Button\"
1256 onclick=\"showInactiveFeeds()\">" .
1257 __("Inactive feeds") . "</button>";
1258 }
1259
3972bf59 1260 $feed_search = db_escape_string($this->link, $_REQUEST["search"]);
afcfe6ca
AD
1261
1262 if (array_key_exists("search", $_REQUEST)) {
1263 $_SESSION["prefs_feed_search"] = $feed_search;
1264 } else {
1265 $feed_search = $_SESSION["prefs_feed_search"];
1266 }
1267
1268 print '<div dojoType="dijit.layout.BorderContainer" gutters="false">';
1269
1270 print "<div region='top' dojoType=\"dijit.Toolbar\">"; #toolbar
1271
1272 print "<div style='float : right; padding-right : 4px;'>
1273 <input dojoType=\"dijit.form.TextBox\" id=\"feed_search\" size=\"20\" type=\"search\"
1274 value=\"$feed_search\">
1275 <button dojoType=\"dijit.form.Button\" onclick=\"updateFeedList()\">".
1276 __('Search')."</button>
1277 </div>";
1278
1279 print "<div dojoType=\"dijit.form.DropDownButton\">".
1280 "<span>" . __('Select')."</span>";
1281 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1282 print "<div onclick=\"dijit.byId('feedTree').model.setAllChecked(true)\"
1283 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
1284 print "<div onclick=\"dijit.byId('feedTree').model.setAllChecked(false)\"
1285 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
1286 print "</div></div>";
1287
1288 print "<div dojoType=\"dijit.form.DropDownButton\">".
1289 "<span>" . __('Feeds')."</span>";
1290 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1291 print "<div onclick=\"quickAddFeed()\"
1292 dojoType=\"dijit.MenuItem\">".__('Subscribe to feed')."</div>";
1293 print "<div onclick=\"editSelectedFeed()\"
1294 dojoType=\"dijit.MenuItem\">".__('Edit selected feeds')."</div>";
1295 print "<div onclick=\"resetFeedOrder()\"
1296 dojoType=\"dijit.MenuItem\">".__('Reset sort order')."</div>";
33f0fdd0
AD
1297 print "<div onclick=\"batchSubscribe()\"
1298 dojoType=\"dijit.MenuItem\">".__('Batch subscribe')."</div>";
0671359f
AD
1299 print "<div dojoType=\"dijit.MenuItem\" onclick=\"removeSelectedFeeds()\">"
1300 .__('Unsubscribe')."</div> ";
afcfe6ca
AD
1301 print "</div></div>";
1302
1303 if (get_pref($this->link, 'ENABLE_FEED_CATS')) {
1304 print "<div dojoType=\"dijit.form.DropDownButton\">".
1305 "<span>" . __('Categories')."</span>";
1306 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
5ef071e0
AD
1307 print "<div onclick=\"createCategory()\"
1308 dojoType=\"dijit.MenuItem\">".__('Add category')."</div>";
afcfe6ca
AD
1309 print "<div onclick=\"resetCatOrder()\"
1310 dojoType=\"dijit.MenuItem\">".__('Reset sort order')."</div>";
fd26d5bf
AD
1311 print "<div onclick=\"removeSelectedCategories()\"
1312 dojoType=\"dijit.MenuItem\">".__('Remove selected')."</div>";
afcfe6ca
AD
1313 print "</div></div>";
1314
1315 }
1316
1317 print $error_button;
1318 print $inactive_button;
1319
0671359f
AD
1320 print "<button onclick=\"toggleHiddenFeedCats()\"
1321 dojoType=\"dijit.form.Button\">".__('(Un)hide empty categories')."</button>";
afcfe6ca
AD
1322
1323 if (defined('_ENABLE_FEED_DEBUGGING')) {
1324
1325 print "<select id=\"feedActionChooser\" onchange=\"feedActionChange()\">
1326 <option value=\"facDefault\" selected>".__('More actions...')."</option>";
1327
1328 if (FORCE_ARTICLE_PURGE == 0) {
1329 print
1330 "<option value=\"facPurge\">".__('Manual purge')."</option>";
1331 }
1332
1333 print "
1334 <option value=\"facClear\">".__('Clear feed data')."</option>
1335 <option value=\"facRescore\">".__('Rescore articles')."</option>";
1336
1337 print "</select>";
1338
1339 }
1340
1341 print "</div>"; # toolbar
1342
1343 //print '</div>';
1344 print '<div dojoType="dijit.layout.ContentPane" region="center">';
1345
1346 print "<div id=\"feedlistLoading\">
1347 <img src='images/indicator_tiny.gif'>".
1348 __("Loading, please wait...")."</div>";
1349
1350 print "<div dojoType=\"fox.PrefFeedStore\" jsId=\"feedStore\"
1351 url=\"backend.php?op=pref-feeds&method=getfeedtree\">
1352 </div>
1353 <div dojoType=\"lib.CheckBoxStoreModel\" jsId=\"feedModel\" store=\"feedStore\"
1354 query=\"{id:'root'}\" rootId=\"root\" rootLabel=\"Feeds\"
1355 childrenAttrs=\"items\" checkboxStrict=\"false\" checkboxAll=\"false\">
1356 </div>
1357 <div dojoType=\"fox.PrefFeedTree\" id=\"feedTree\"
1358 dndController=\"dijit.tree.dndSource\"
1359 betweenThreshold=\"5\"
1360 model=\"feedModel\" openOnClick=\"false\">
1361 <script type=\"dojo/method\" event=\"onClick\" args=\"item\">
1362 var id = String(item.id);
1363 var bare_id = id.substr(id.indexOf(':')+1);
1364
1365 if (id.match('FEED:')) {
1366 editFeed(bare_id);
1367 } else if (id.match('CAT:')) {
1368 editCat(bare_id, item);
1369 }
1370 </script>
1371 <script type=\"dojo/method\" event=\"onLoad\" args=\"item\">
1372 Element.hide(\"feedlistLoading\");
1373 </script>
1374 </div>";
1375
ba5296a1
AD
1376# print "<div dojoType=\"dijit.Tooltip\" connectId=\"feedTree\" position=\"below\">
1377# ".__('<b>Hint:</b> you can drag feeds and categories around.')."
1378# </div>";
afcfe6ca
AD
1379
1380 print '</div>';
1381 print '</div>';
1382
1383 print "</div>"; # feeds pane
1384
6c2637d9 1385 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('OPML')."\">";
afcfe6ca 1386
566faa14 1387 print "<p>" . __("Using OPML you can export and import your feeds, filters, labels and Tiny Tiny RSS settings.") . " ";
afcfe6ca 1388
566faa14 1389 print __("Only main settings profile can be migrated using OPML.") . "</p>";
afcfe6ca 1390
55f34b81 1391 print "<iframe id=\"upload_iframe\"
afcfe6ca
AD
1392 name=\"upload_iframe\" onload=\"opmlImportComplete(this)\"
1393 style=\"width: 400px; height: 100px; display: none;\"></iframe>";
1394
1395 print "<form name=\"opml_form\" style='display : block' target=\"upload_iframe\"
1396 enctype=\"multipart/form-data\" method=\"POST\"
55f34b81 1397 action=\"backend.php\">
afcfe6ca
AD
1398 <input id=\"opml_file\" name=\"opml_file\" type=\"file\">&nbsp;
1399 <input type=\"hidden\" name=\"op\" value=\"dlg\">
c4c74732 1400 <input type=\"hidden\" name=\"method\" value=\"importOpml\">
afcfe6ca 1401 <button dojoType=\"dijit.form.Button\" onclick=\"return opmlImport();\" type=\"submit\">" .
a1159c01 1402 __('Import my OPML') . "</button>";
afcfe6ca 1403
a1159c01 1404 print "<hr>";
afcfe6ca
AD
1405
1406 print "<p>" . __('Filename:') .
1407 " <input type=\"text\" id=\"filename\" value=\"TinyTinyRSS.opml\" />&nbsp;" .
a1159c01 1408 __('Include settings') . "<input type=\"checkbox\" id=\"settings\" checked=\"1\"/>";
afcfe6ca 1409
a1159c01 1410 print "</p><button dojoType=\"dijit.form.Button\"
afcfe6ca 1411 onclick=\"gotoExportOpml(document.opml_form.filename.value, document.opml_form.settings.checked)\" >" .
a1159c01 1412 __('Export OPML') . "</button></p></form>";
afcfe6ca 1413
a1159c01 1414 print "<hr>";
afcfe6ca
AD
1415
1416 print "<p>".__('Your OPML can be published publicly and can be subscribed by anyone who knows the URL below.') . " ";
1417
566faa14 1418 print __("Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds.") . "</p>";
afcfe6ca 1419
fb54e3b1 1420 print "<button dojoType=\"dijit.form.Button\" onclick=\"return displayDlg('".__("Public OPML URL")."','pubOPMLUrl')\">".
a1159c01 1421 __('Display published OPML URL')."</button> ";
afcfe6ca 1422
699daf58
AD
1423 global $pluginhost;
1424 $pluginhost->run_hooks($pluginhost::HOOK_PREFS_TAB_SECTION,
1425 "hook_prefs_tab_section", "prefFeedsOPML");
1426
afcfe6ca
AD
1427 print "</div>"; # pane
1428
1429 if (strpos($_SERVER['HTTP_USER_AGENT'], "Firefox") !== false) {
1430
1431 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Firefox integration')."\">";
1432
1433 print "<p>" . __('This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below.') . "</p>";
1434
1435 print "<p>";
1436
1437 print "<button onclick='window.navigator.registerContentHandler(" .
1438 "\"application/vnd.mozilla.maybe.feed\", " .
1439 "\"" . add_feed_url() . "\", " . " \"Tiny Tiny RSS\")'>" .
1440 __('Click here to register this site as a feed reader.') .
1441 "</button>";
1442
1443 print "</p>";
1444
1445 print "</div>"; # pane
1446 }
1447
e95e7819 1448 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Published & shared articles / Generated feeds')."\">";
afcfe6ca
AD
1449
1450 print "<h3>" . __("Published articles and generated feeds") . "</h3>";
1451
1452 print "<p>".__('Published articles are exported as a public RSS feed and can be subscribed by anyone who knows the URL specified below.')."</p>";
1453
1454 $rss_url = '-2::' . htmlspecialchars(get_self_url_prefix() .
1455 "/public.php?op=rss&id=-2&view-mode=all_articles");;
1456
fb54e3b1 1457 print "<button dojoType=\"dijit.form.Button\" onclick=\"return displayDlg('".__("View as RSS")."','generatedFeed', '$rss_url')\">".
afcfe6ca
AD
1458 __('Display URL')."</button> ";
1459
1460 print "<button dojoType=\"dijit.form.Button\" onclick=\"return clearFeedAccessKeys()\">".
1461 __('Clear all generated URLs')."</button> ";
1462
1463 print "<h3>" . __("Articles shared by URL") . "</h3>";
1464
1465 print "<p>" . __("You can disable all articles shared by unique URLs here.") . "</p>";
1466
1467 print "<button dojoType=\"dijit.form.Button\" onclick=\"return clearArticleAccessKeys()\">".
1468 __('Unshare all articles')."</button> ";
1469
699daf58
AD
1470 global $pluginhost;
1471 $pluginhost->run_hooks($pluginhost::HOOK_PREFS_TAB_SECTION,
1472 "hook_prefs_tab_section", "prefFeedsPublishedGenerated");
1473
afcfe6ca
AD
1474 print "</div>"; #pane
1475
6065f3ad 1476 global $pluginhost;
de612e7a 1477
6065f3ad
AD
1478 $pluginhost->run_hooks($pluginhost::HOOK_PREFS_TAB,
1479 "hook_prefs_tab", "prefFeeds");
1480
afcfe6ca 1481 print "</div>"; #container
afcfe6ca 1482 }
2ecd2df5 1483
88918ca6 1484 private function feedlist_init_cat($cat_id) {
2ecd2df5
AD
1485 $obj = array();
1486 $cat_id = (int) $cat_id;
1487
1488 if ($cat_id > 0) {
1489 $cat_unread = ccache_find($this->link, $cat_id, $_SESSION["uid"], true);
1490 } else if ($cat_id == 0 || $cat_id == -2) {
1491 $cat_unread = getCategoryUnread($this->link, $cat_id);
1492 }
1493
1494 $obj['id'] = 'CAT:' . $cat_id;
1495 $obj['items'] = array();
1496 $obj['name'] = getCategoryTitle($this->link, $cat_id);
1497 $obj['type'] = 'category';
1498 $obj['unread'] = (int) $cat_unread;
2ecd2df5
AD
1499 $obj['bare_id'] = $cat_id;
1500
1501 return $obj;
1502 }
1503
1504 private function feedlist_init_feed($feed_id, $title = false, $unread = false, $error = '', $updated = '') {
1505 $obj = array();
1506 $feed_id = (int) $feed_id;
1507
1508 if (!$title)
1509 $title = getFeedTitle($this->link, $feed_id, false);
1510
1511 if ($unread === false)
1512 $unread = getFeedUnread($this->link, $feed_id, false);
1513
1514 $obj['id'] = 'FEED:' . $feed_id;
1515 $obj['name'] = $title;
1516 $obj['unread'] = (int) $unread;
1517 $obj['type'] = 'feed';
1518 $obj['error'] = $error;
1519 $obj['updated'] = $updated;
1520 $obj['icon'] = getFeedIcon($feed_id);
1521 $obj['bare_id'] = $feed_id;
1522
1523 return $obj;
1524 }
1525
bc6fa236
AD
1526 function inactiveFeeds() {
1527
1528 if (DB_TYPE == "pgsql") {
1529 $interval_qpart = "NOW() - INTERVAL '3 months'";
1530 } else {
1531 $interval_qpart = "DATE_SUB(NOW(), INTERVAL 3 MONTH)";
1532 }
1533
1534 $result = db_query($this->link, "SELECT ttrss_feeds.title, ttrss_feeds.site_url,
1535 ttrss_feeds.feed_url, ttrss_feeds.id, MAX(updated) AS last_article
1536 FROM ttrss_feeds, ttrss_entries, ttrss_user_entries WHERE
1537 (SELECT MAX(updated) FROM ttrss_entries, ttrss_user_entries WHERE
1538 ttrss_entries.id = ref_id AND
1539 ttrss_user_entries.feed_id = ttrss_feeds.id) < $interval_qpart
1540 AND ttrss_feeds.owner_uid = ".$_SESSION["uid"]." AND
1541 ttrss_user_entries.feed_id = ttrss_feeds.id AND
1542 ttrss_entries.id = ref_id
1543 GROUP BY ttrss_feeds.title, ttrss_feeds.id, ttrss_feeds.site_url, ttrss_feeds.feed_url
1544 ORDER BY last_article");
1545
fcef9eea 1546 print "<h2" .__("These feeds have not been updated with new content for 3 months (oldest first):") . "</h2>";
bc6fa236
AD
1547
1548 print "<div dojoType=\"dijit.Toolbar\">";
1549 print "<div dojoType=\"dijit.form.DropDownButton\">".
1550 "<span>" . __('Select')."</span>";
1551 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1552 print "<div onclick=\"selectTableRows('prefInactiveFeedList', 'all')\"
1553 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
1554 print "<div onclick=\"selectTableRows('prefInactiveFeedList', 'none')\"
1555 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
1556 print "</div></div>";
1557 print "</div>"; #toolbar
1558
1559 print "<div class=\"inactiveFeedHolder\">";
1560
1561 print "<table width=\"100%\" cellspacing=\"0\" id=\"prefInactiveFeedList\">";
1562
1563 $lnum = 1;
1564
1565 while ($line = db_fetch_assoc($result)) {
1566
1567 $class = ($lnum % 2) ? "even" : "odd";
1568 $feed_id = $line["id"];
1569 $this_row_id = "id=\"FUPDD-$feed_id\"";
1570
1571 # class needed for selectTableRows()
1572 print "<tr class=\"placeholder\" $this_row_id>";
1573
1574 $edit_title = htmlspecialchars($line["title"]);
1575
1576 # id needed for selectTableRows()
1577 print "<td width='5%' align='center'><input
1578 onclick='toggleSelectRow2(this);' dojoType=\"dijit.form.CheckBox\"
1579 type=\"checkbox\" id=\"FUPDC-$feed_id\"></td>";
1580 print "<td>";
1581
1582 print "<a class=\"visibleLink\" href=\"#\" ".
1583 "title=\"".__("Click to edit feed")."\" ".
1584 "onclick=\"editFeed(".$line["id"].")\">".
1585 htmlspecialchars($line["title"])."</a>";
1586
1587 print "</td><td class=\"insensitive\" align='right'>";
1588 print make_local_datetime($this->link, $line['last_article'], false);
1589 print "</td>";
1590 print "</tr>";
1591
1592 ++$lnum;
1593 }
1594
1595 print "</table>";
1596 print "</div>";
1597
1598 print "<div class='dlgButtons'>";
1599 print "<div style='float : left'>";
1600 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('inactiveFeedsDlg').removeSelected()\">"
1601 .__('Unsubscribe from selected feeds')."</button> ";
1602 print "</div>";
1603
1604 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('inactiveFeedsDlg').hide()\">".
1605 __('Close this window')."</button>";
1606
1607 print "</div>";
1608
1609 }
1610
1611 function feedsWithErrors() {
fcef9eea
AD
1612 print "<h2>" . __("These feeds have not been updated because of errors:") .
1613 "</h2>";
bc6fa236
AD
1614
1615 $result = db_query($this->link, "SELECT id,title,feed_url,last_error,site_url
1616 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
1617
1618 print "<div dojoType=\"dijit.Toolbar\">";
1619 print "<div dojoType=\"dijit.form.DropDownButton\">".
1620 "<span>" . __('Select')."</span>";
1621 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1622 print "<div onclick=\"selectTableRows('prefErrorFeedList', 'all')\"
1623 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
1624 print "<div onclick=\"selectTableRows('prefErrorFeedList', 'none')\"
1625 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
1626 print "</div></div>";
1627 print "</div>"; #toolbar
1628
1629 print "<div class=\"inactiveFeedHolder\">";
1630
1631 print "<table width=\"100%\" cellspacing=\"0\" id=\"prefErrorFeedList\">";
1632
1633 $lnum = 1;
1634
1635 while ($line = db_fetch_assoc($result)) {
1636
1637 $class = ($lnum % 2) ? "even" : "odd";
1638 $feed_id = $line["id"];
1639 $this_row_id = "id=\"FERDD-$feed_id\"";
1640
1641 # class needed for selectTableRows()
1642 print "<tr class=\"placeholder\" $this_row_id>";
1643
1644 $edit_title = htmlspecialchars($line["title"]);
1645
1646 # id needed for selectTableRows()
1647 print "<td width='5%' align='center'><input
1648 onclick='toggleSelectRow2(this);' dojoType=\"dijit.form.CheckBox\"
1649 type=\"checkbox\" id=\"FERDC-$feed_id\"></td>";
1650 print "<td>";
1651
1652 print "<a class=\"visibleLink\" href=\"#\" ".
1653 "title=\"".__("Click to edit feed")."\" ".
1654 "onclick=\"editFeed(".$line["id"].")\">".
1655 htmlspecialchars($line["title"])."</a>: ";
1656
1657 print "<span class=\"insensitive\">";
1658 print htmlspecialchars($line["last_error"]);
1659 print "</span>";
1660
1661 print "</td>";
1662 print "</tr>";
1663
1664 ++$lnum;
1665 }
1666
1667 print "</table>";
1668 print "</div>";
1669
1670 print "<div class='dlgButtons'>";
1671 print "<div style='float : left'>";
1672 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('errorFeedsDlg').removeSelected()\">"
1673 .__('Unsubscribe from selected feeds')."</button> ";
1674 print "</div>";
1675
1676 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('errorFeedsDlg').hide()\">".
1677 __('Close this window')."</button>";
1678
1679 print "</div>";
1680 }
1681
87d7e850
AD
1682 /**
1683 * Purge a feed contents, marked articles excepted.
1684 *
1685 * @param mixed $link The database connection.
1686 * @param integer $id The id of the feed to purge.
1687 * @return void
1688 */
1689 private function clear_feed_articles($link, $id) {
1690
1691 if ($id != 0) {
1692 $result = db_query($link, "DELETE FROM ttrss_user_entries
1693 WHERE feed_id = '$id' AND marked = false AND owner_uid = " . $_SESSION["uid"]);
1694 } else {
1695 $result = db_query($link, "DELETE FROM ttrss_user_entries
1696 WHERE feed_id IS NULL AND marked = false AND owner_uid = " . $_SESSION["uid"]);
1697 }
1698
1699 $result = db_query($link, "DELETE FROM ttrss_entries WHERE
1700 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
1701
1702 ccache_update($link, $id, $_SESSION['uid']);
1703 } // function clear_feed_articles
1704
a6a9b812
AD
1705 private function remove_feed_category($link, $id, $owner_uid) {
1706
1707 db_query($link, "DELETE FROM ttrss_feed_categories
1708 WHERE id = '$id' AND owner_uid = $owner_uid");
1709
1710 ccache_remove($link, $id, $owner_uid, true);
1711 }
1712
efc6553d 1713 static function remove_feed($link, $id, $owner_uid) {
a6a9b812
AD
1714
1715 if ($id > 0) {
1716
1717 /* save starred articles in Archived feed */
1718
1719 db_query($link, "BEGIN");
1720
1721 /* prepare feed if necessary */
1722
aa5ac2cd
AD
1723 $result = db_query($link, "SELECT feed_url FROM ttrss_feeds WHERE id = $id
1724 AND owner_uid = $owner_uid");
1725
1726 $feed_url = db_escape_string($link, db_fetch_result($result, 0, "feed_url"));
1727
a6a9b812 1728 $result = db_query($link, "SELECT id FROM ttrss_archived_feeds
aa5ac2cd 1729 WHERE feed_url = '$feed_url' AND owner_uid = $owner_uid");
a6a9b812
AD
1730
1731 if (db_num_rows($result) == 0) {
b1df14d0
AD
1732 $result = db_query($link, "SELECT MAX(id) AS id FROM ttrss_archived_feeds");
1733 $new_feed_id = (int)db_fetch_result($result, 0, "id") + 1;
1734
a6a9b812
AD
1735 db_query($link, "INSERT INTO ttrss_archived_feeds
1736 (id, owner_uid, title, feed_url, site_url)
b1df14d0 1737 SELECT $new_feed_id, owner_uid, title, feed_url, site_url from ttrss_feeds
aa5ac2cd
AD
1738 WHERE id = '$id'");
1739
b1df14d0 1740 $archive_id = $new_feed_id;
aa5ac2cd
AD
1741 } else {
1742 $archive_id = db_fetch_result($result, 0, "id");
a6a9b812
AD
1743 }
1744
1745 db_query($link, "UPDATE ttrss_user_entries SET feed_id = NULL,
aa5ac2cd 1746 orig_feed_id = '$archive_id' WHERE feed_id = '$id' AND
a6a9b812
AD
1747 marked = true AND owner_uid = $owner_uid");
1748
1749 /* Remove access key for the feed */
1750
1751 db_query($link, "DELETE FROM ttrss_access_keys WHERE
1752 feed_id = '$id' AND owner_uid = $owner_uid");
1753
1754 /* remove the feed */
1755
1756 db_query($link, "DELETE FROM ttrss_feeds
1757 WHERE id = '$id' AND owner_uid = $owner_uid");
1758
1759 db_query($link, "COMMIT");
1760
1761 if (file_exists(ICONS_DIR . "/$id.ico")) {
1762 unlink(ICONS_DIR . "/$id.ico");
1763 }
1764
1765 ccache_remove($link, $id, $owner_uid);
1766
1767 } else {
f822a8e5
AD
1768 label_remove($link, feed_to_label_id($id), $owner_uid);
1769 //ccache_remove($link, $id, $owner_uid); don't think labels are cached
a6a9b812
AD
1770 }
1771 }
87d7e850 1772
201bb1ca 1773 function batchSubscribe() {
96e3ae8c 1774 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-feeds\">";
201bb1ca
AD
1775 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"batchaddfeeds\">";
1776
1777 print "<table width='100%'><tr><td>
1778 ".__("Add one valid RSS feed per line (no feed detection is done)")."
1779 </td><td align='right'>";
1780 if (get_pref($this->link, 'ENABLE_FEED_CATS')) {
1781 print __('Place in category:') . " ";
1782 print_feed_cat_select($this->link, "cat", false, 'dojoType="dijit.form.Select"');
1783 }
1784 print "</td></tr><tr><td colspan='2'>";
1785 print "<textarea
1786 style='font-size : 12px; width : 100%; height: 200px;'
1787 placeHolder=\"".__("Feeds to subscribe, One per line")."\"
1788 dojoType=\"dijit.form.SimpleTextarea\" required=\"1\" name=\"feeds\"></textarea>";
1789
1790 print "</td></tr><tr><td colspan='2'>";
1791
1792 print "<div id='feedDlg_loginContainer' style='display : none'>
1793 " .
1794 " <input dojoType=\"dijit.form.TextBox\" name='login'\"
1795 placeHolder=\"".__("Login")."\"
1796 style=\"width : 10em;\"> ".
1797 " <input
1798 placeHolder=\"".__("Password")."\"
1799 dojoType=\"dijit.form.TextBox\" type='password'
1800 style=\"width : 10em;\" name='pass'\">".
1801 "</div>";
1802
1803 print "</td></tr><tr><td colspan='2'>";
1804
1805 print "<div style=\"clear : both\">
1806 <input type=\"checkbox\" name=\"need_auth\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
1807 onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
1808 <label for=\"feedDlg_loginCheck\">".
1809 __('Feeds require authentication.')."</div>";
1810
1811 print "</form>";
1812
1813 print "</td></tr></table>";
1814
1815 print "<div class=\"dlgButtons\">
1816 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('batchSubDlg').execute()\">".__('Subscribe')."</button>
1817 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('batchSubDlg').hide()\">".__('Cancel')."</button>
1818 </div>";
1819 }
1820
96e3ae8c
AD
1821 function batchAddFeeds() {
1822 $cat_id = db_escape_string($this->link, $_REQUEST['cat']);
2714d5ca 1823 $feeds = explode("\n", $_REQUEST['feeds']);
96e3ae8c
AD
1824 $login = db_escape_string($this->link, $_REQUEST['login']);
1825 $pass = db_escape_string($this->link, $_REQUEST['pass']);
1826
1827 foreach ($feeds as $feed) {
2714d5ca 1828 $feed = db_escape_string($this->link, trim($feed));
96e3ae8c
AD
1829
1830 if (validate_feed_url($feed)) {
1831
1832 db_query($this->link, "BEGIN");
1833
1834 if ($cat_id == "0" || !$cat_id) {
1835 $cat_qpart = "NULL";
1836 } else {
1837 $cat_qpart = "'$cat_id'";
1838 }
1839
1840 $result = db_query($this->link,
1841 "SELECT id FROM ttrss_feeds
1842 WHERE feed_url = '$feed' AND owner_uid = ".$_SESSION["uid"]);
1843
1844 if (db_num_rows($result) == 0) {
1845 $result = db_query($this->link,
1846 "INSERT INTO ttrss_feeds
1847 (owner_uid,feed_url,title,cat_id,auth_login,auth_pass,update_method)
1848 VALUES ('".$_SESSION["uid"]."', '$feed',
1849 '[Unknown]', $cat_qpart, '$login', '$pass', 0)");
1850 }
1851
1852 db_query($this->link, "COMMIT");
1853 }
1854 }
1855 }
201bb1ca 1856
195187c4
AD
1857 function regenOPMLKey() {
1858 $this->update_feed_access_key($this->link, 'OPML:Publish',
1859 false, $_SESSION["uid"]);
1860
1861 $new_link = Opml::opml_publish_url($this->link);
1862
1863 print json_encode(array("link" => $new_link));
1864 }
1865
1866 function regenFeedKey() {
1867 $feed_id = db_escape_string($this->link, $_REQUEST['id']);
1868 $is_cat = db_escape_string($this->link, $_REQUEST['is_cat']) == "true";
1869
1870 $new_key = $this->update_feed_access_key($this->link, $feed_id, $is_cat);
1871
1872 print json_encode(array("link" => $new_key));
1873 }
1874
1875
1876 private function update_feed_access_key($link, $feed_id, $is_cat, $owner_uid = false) {
1877 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
1878
1879 $sql_is_cat = bool_to_sql_bool($is_cat);
1880
1881 $result = db_query($link, "SELECT access_key FROM ttrss_access_keys
1882 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
1883 AND owner_uid = " . $owner_uid);
1884
1885 if (db_num_rows($result) == 1) {
1886 $key = db_escape_string($this->link, sha1(uniqid(rand(), true)));
1887
1888 db_query($link, "UPDATE ttrss_access_keys SET access_key = '$key'
1889 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
1890 AND owner_uid = " . $owner_uid);
1891
1892 return $key;
1893
1894 } else {
1895 return get_feed_access_key($link, $feed_id, $is_cat, $owner_uid);
1896 }
1897 }
1898
1899 // Silent
1900 function clearKeys() {
1901 db_query($this->link, "DELETE FROM ttrss_access_keys WHERE
1902 owner_uid = " . $_SESSION["uid"]);
1903 }
1904
1905
afcfe6ca
AD
1906}
1907?>