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