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