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