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