]> git.wh0rd.org - tt-rss.git/blame - classes/pref/feeds.php
combine user edit & user details
[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
f9c1f8b0
AD
1301 $inactive_button = "<button dojoType=\"dijit.form.Button\"
1302 id=\"pref_feeds_inactive_btn\"
1303 style=\"display : none\"
1304 onclick=\"showInactiveFeeds()\">" .
1305 __("Inactive feeds") . "</button>";
afcfe6ca 1306
d9c85e0f 1307 $feed_search = $this->dbh->escape_string($_REQUEST["search"]);
afcfe6ca
AD
1308
1309 if (array_key_exists("search", $_REQUEST)) {
1310 $_SESSION["prefs_feed_search"] = $feed_search;
1311 } else {
1312 $feed_search = $_SESSION["prefs_feed_search"];
1313 }
1314
1315 print '<div dojoType="dijit.layout.BorderContainer" gutters="false">';
1316
1317 print "<div region='top' dojoType=\"dijit.Toolbar\">"; #toolbar
1318
1319 print "<div style='float : right; padding-right : 4px;'>
1320 <input dojoType=\"dijit.form.TextBox\" id=\"feed_search\" size=\"20\" type=\"search\"
1321 value=\"$feed_search\">
1322 <button dojoType=\"dijit.form.Button\" onclick=\"updateFeedList()\">".
1323 __('Search')."</button>
1324 </div>";
1325
1326 print "<div dojoType=\"dijit.form.DropDownButton\">".
1327 "<span>" . __('Select')."</span>";
1328 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1329 print "<div onclick=\"dijit.byId('feedTree').model.setAllChecked(true)\"
1330 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
1331 print "<div onclick=\"dijit.byId('feedTree').model.setAllChecked(false)\"
1332 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
1333 print "</div></div>";
1334
1335 print "<div dojoType=\"dijit.form.DropDownButton\">".
1336 "<span>" . __('Feeds')."</span>";
1337 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1338 print "<div onclick=\"quickAddFeed()\"
1339 dojoType=\"dijit.MenuItem\">".__('Subscribe to feed')."</div>";
1340 print "<div onclick=\"editSelectedFeed()\"
1341 dojoType=\"dijit.MenuItem\">".__('Edit selected feeds')."</div>";
1342 print "<div onclick=\"resetFeedOrder()\"
1343 dojoType=\"dijit.MenuItem\">".__('Reset sort order')."</div>";
33f0fdd0
AD
1344 print "<div onclick=\"batchSubscribe()\"
1345 dojoType=\"dijit.MenuItem\">".__('Batch subscribe')."</div>";
0671359f
AD
1346 print "<div dojoType=\"dijit.MenuItem\" onclick=\"removeSelectedFeeds()\">"
1347 .__('Unsubscribe')."</div> ";
afcfe6ca
AD
1348 print "</div></div>";
1349
a42c55f0 1350 if (get_pref('ENABLE_FEED_CATS')) {
afcfe6ca
AD
1351 print "<div dojoType=\"dijit.form.DropDownButton\">".
1352 "<span>" . __('Categories')."</span>";
1353 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
5ef071e0
AD
1354 print "<div onclick=\"createCategory()\"
1355 dojoType=\"dijit.MenuItem\">".__('Add category')."</div>";
afcfe6ca
AD
1356 print "<div onclick=\"resetCatOrder()\"
1357 dojoType=\"dijit.MenuItem\">".__('Reset sort order')."</div>";
fd26d5bf
AD
1358 print "<div onclick=\"removeSelectedCategories()\"
1359 dojoType=\"dijit.MenuItem\">".__('Remove selected')."</div>";
afcfe6ca
AD
1360 print "</div></div>";
1361
1362 }
1363
1364 print $error_button;
1365 print $inactive_button;
1366
afcfe6ca
AD
1367 if (defined('_ENABLE_FEED_DEBUGGING')) {
1368
1369 print "<select id=\"feedActionChooser\" onchange=\"feedActionChange()\">
1370 <option value=\"facDefault\" selected>".__('More actions...')."</option>";
1371
1372 if (FORCE_ARTICLE_PURGE == 0) {
1373 print
1374 "<option value=\"facPurge\">".__('Manual purge')."</option>";
1375 }
1376
1377 print "
1378 <option value=\"facClear\">".__('Clear feed data')."</option>
1379 <option value=\"facRescore\">".__('Rescore articles')."</option>";
1380
1381 print "</select>";
1382
1383 }
1384
1385 print "</div>"; # toolbar
1386
1387 //print '</div>';
1388 print '<div dojoType="dijit.layout.ContentPane" region="center">';
1389
1390 print "<div id=\"feedlistLoading\">
1391 <img src='images/indicator_tiny.gif'>".
1392 __("Loading, please wait...")."</div>";
1393
1394 print "<div dojoType=\"fox.PrefFeedStore\" jsId=\"feedStore\"
1395 url=\"backend.php?op=pref-feeds&method=getfeedtree\">
1396 </div>
1397 <div dojoType=\"lib.CheckBoxStoreModel\" jsId=\"feedModel\" store=\"feedStore\"
1398 query=\"{id:'root'}\" rootId=\"root\" rootLabel=\"Feeds\"
1399 childrenAttrs=\"items\" checkboxStrict=\"false\" checkboxAll=\"false\">
1400 </div>
1401 <div dojoType=\"fox.PrefFeedTree\" id=\"feedTree\"
1402 dndController=\"dijit.tree.dndSource\"
1403 betweenThreshold=\"5\"
1404 model=\"feedModel\" openOnClick=\"false\">
1405 <script type=\"dojo/method\" event=\"onClick\" args=\"item\">
1406 var id = String(item.id);
1407 var bare_id = id.substr(id.indexOf(':')+1);
1408
1409 if (id.match('FEED:')) {
1410 editFeed(bare_id);
1411 } else if (id.match('CAT:')) {
1412 editCat(bare_id, item);
1413 }
1414 </script>
1415 <script type=\"dojo/method\" event=\"onLoad\" args=\"item\">
1416 Element.hide(\"feedlistLoading\");
f9c1f8b0
AD
1417
1418 checkInactiveFeeds();
afcfe6ca
AD
1419 </script>
1420 </div>";
1421
ba5296a1
AD
1422# print "<div dojoType=\"dijit.Tooltip\" connectId=\"feedTree\" position=\"below\">
1423# ".__('<b>Hint:</b> you can drag feeds and categories around.')."
1424# </div>";
afcfe6ca
AD
1425
1426 print '</div>';
1427 print '</div>';
1428
1429 print "</div>"; # feeds pane
1430
6c2637d9 1431 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('OPML')."\">";
afcfe6ca 1432
11334fdf 1433 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 1434
55f34b81 1435 print "<iframe id=\"upload_iframe\"
afcfe6ca
AD
1436 name=\"upload_iframe\" onload=\"opmlImportComplete(this)\"
1437 style=\"width: 400px; height: 100px; display: none;\"></iframe>";
1438
1439 print "<form name=\"opml_form\" style='display : block' target=\"upload_iframe\"
1440 enctype=\"multipart/form-data\" method=\"POST\"
55f34b81 1441 action=\"backend.php\">
afcfe6ca
AD
1442 <input id=\"opml_file\" name=\"opml_file\" type=\"file\">&nbsp;
1443 <input type=\"hidden\" name=\"op\" value=\"dlg\">
c4c74732 1444 <input type=\"hidden\" name=\"method\" value=\"importOpml\">
afcfe6ca 1445 <button dojoType=\"dijit.form.Button\" onclick=\"return opmlImport();\" type=\"submit\">" .
a1159c01 1446 __('Import my OPML') . "</button>";
afcfe6ca 1447
a1159c01 1448 print "<hr>";
afcfe6ca
AD
1449
1450 print "<p>" . __('Filename:') .
1451 " <input type=\"text\" id=\"filename\" value=\"TinyTinyRSS.opml\" />&nbsp;" .
a1159c01 1452 __('Include settings') . "<input type=\"checkbox\" id=\"settings\" checked=\"1\"/>";
afcfe6ca 1453
a1159c01 1454 print "</p><button dojoType=\"dijit.form.Button\"
afcfe6ca 1455 onclick=\"gotoExportOpml(document.opml_form.filename.value, document.opml_form.settings.checked)\" >" .
a1159c01 1456 __('Export OPML') . "</button></p></form>";
afcfe6ca 1457
a1159c01 1458 print "<hr>";
afcfe6ca
AD
1459
1460 print "<p>".__('Your OPML can be published publicly and can be subscribed by anyone who knows the URL below.') . " ";
1461
566faa14 1462 print __("Published OPML does not include your Tiny Tiny RSS settings, feeds that require authentication or feeds hidden from Popular feeds.") . "</p>";
afcfe6ca 1463
fb54e3b1 1464 print "<button dojoType=\"dijit.form.Button\" onclick=\"return displayDlg('".__("Public OPML URL")."','pubOPMLUrl')\">".
a1159c01 1465 __('Display published OPML URL')."</button> ";
afcfe6ca 1466
1ffe3391 1467 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB_SECTION,
699daf58
AD
1468 "hook_prefs_tab_section", "prefFeedsOPML");
1469
afcfe6ca
AD
1470 print "</div>"; # pane
1471
1472 if (strpos($_SERVER['HTTP_USER_AGENT'], "Firefox") !== false) {
1473
1474 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Firefox integration')."\">";
1475
11334fdf 1476 print_notice(__('This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below.'));
afcfe6ca
AD
1477
1478 print "<p>";
1479
1480 print "<button onclick='window.navigator.registerContentHandler(" .
1481 "\"application/vnd.mozilla.maybe.feed\", " .
1482 "\"" . add_feed_url() . "\", " . " \"Tiny Tiny RSS\")'>" .
1483 __('Click here to register this site as a feed reader.') .
1484 "</button>";
1485
1486 print "</p>";
1487
1488 print "</div>"; # pane
1489 }
1490
e95e7819 1491 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Published & shared articles / Generated feeds')."\">";
afcfe6ca 1492
11334fdf 1493 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
1494
1495 $rss_url = '-2::' . htmlspecialchars(get_self_url_prefix() .
1496 "/public.php?op=rss&id=-2&view-mode=all_articles");;
1497
11334fdf
AD
1498 print "<p>";
1499
fb54e3b1 1500 print "<button dojoType=\"dijit.form.Button\" onclick=\"return displayDlg('".__("View as RSS")."','generatedFeed', '$rss_url')\">".
afcfe6ca
AD
1501 __('Display URL')."</button> ";
1502
1503 print "<button dojoType=\"dijit.form.Button\" onclick=\"return clearFeedAccessKeys()\">".
1504 __('Clear all generated URLs')."</button> ";
1505
11334fdf 1506 print "</p>";
afcfe6ca 1507
1ffe3391 1508 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB_SECTION,
699daf58
AD
1509 "hook_prefs_tab_section", "prefFeedsPublishedGenerated");
1510
afcfe6ca
AD
1511 print "</div>"; #pane
1512
1ffe3391 1513 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_TAB,
6065f3ad
AD
1514 "hook_prefs_tab", "prefFeeds");
1515
afcfe6ca 1516 print "</div>"; #container
afcfe6ca 1517 }
2ecd2df5 1518
88918ca6 1519 private function feedlist_init_cat($cat_id) {
2ecd2df5
AD
1520 $obj = array();
1521 $cat_id = (int) $cat_id;
1522
1523 if ($cat_id > 0) {
a42c55f0 1524 $cat_unread = ccache_find($cat_id, $_SESSION["uid"], true);
2ecd2df5 1525 } else if ($cat_id == 0 || $cat_id == -2) {
a42c55f0 1526 $cat_unread = getCategoryUnread($cat_id);
2ecd2df5
AD
1527 }
1528
1529 $obj['id'] = 'CAT:' . $cat_id;
1530 $obj['items'] = array();
a42c55f0 1531 $obj['name'] = getCategoryTitle($cat_id);
2ecd2df5
AD
1532 $obj['type'] = 'category';
1533 $obj['unread'] = (int) $cat_unread;
2ecd2df5
AD
1534 $obj['bare_id'] = $cat_id;
1535
1536 return $obj;
1537 }
1538
1539 private function feedlist_init_feed($feed_id, $title = false, $unread = false, $error = '', $updated = '') {
1540 $obj = array();
1541 $feed_id = (int) $feed_id;
1542
1543 if (!$title)
a42c55f0 1544 $title = getFeedTitle($feed_id, false);
2ecd2df5
AD
1545
1546 if ($unread === false)
a42c55f0 1547 $unread = getFeedUnread($feed_id, false);
2ecd2df5
AD
1548
1549 $obj['id'] = 'FEED:' . $feed_id;
1550 $obj['name'] = $title;
1551 $obj['unread'] = (int) $unread;
1552 $obj['type'] = 'feed';
1553 $obj['error'] = $error;
1554 $obj['updated'] = $updated;
1555 $obj['icon'] = getFeedIcon($feed_id);
1556 $obj['bare_id'] = $feed_id;
c594eca0 1557 $obj['auxcounter'] = 0;
2ecd2df5
AD
1558
1559 return $obj;
1560 }
1561
bc6fa236
AD
1562 function inactiveFeeds() {
1563
1564 if (DB_TYPE == "pgsql") {
1565 $interval_qpart = "NOW() - INTERVAL '3 months'";
1566 } else {
1567 $interval_qpart = "DATE_SUB(NOW(), INTERVAL 3 MONTH)";
1568 }
1569
d9c85e0f 1570 $result = $this->dbh->query("SELECT ttrss_feeds.title, ttrss_feeds.site_url,
bc6fa236
AD
1571 ttrss_feeds.feed_url, ttrss_feeds.id, MAX(updated) AS last_article
1572 FROM ttrss_feeds, ttrss_entries, ttrss_user_entries WHERE
1573 (SELECT MAX(updated) FROM ttrss_entries, ttrss_user_entries WHERE
1574 ttrss_entries.id = ref_id AND
1575 ttrss_user_entries.feed_id = ttrss_feeds.id) < $interval_qpart
1576 AND ttrss_feeds.owner_uid = ".$_SESSION["uid"]." AND
1577 ttrss_user_entries.feed_id = ttrss_feeds.id AND
1578 ttrss_entries.id = ref_id
1579 GROUP BY ttrss_feeds.title, ttrss_feeds.id, ttrss_feeds.site_url, ttrss_feeds.feed_url
1580 ORDER BY last_article");
1581
11334fdf 1582 print "<p" .__("These feeds have not been updated with new content for 3 months (oldest first):") . "</p>";
bc6fa236
AD
1583
1584 print "<div dojoType=\"dijit.Toolbar\">";
1585 print "<div dojoType=\"dijit.form.DropDownButton\">".
1586 "<span>" . __('Select')."</span>";
1587 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1588 print "<div onclick=\"selectTableRows('prefInactiveFeedList', 'all')\"
1589 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
1590 print "<div onclick=\"selectTableRows('prefInactiveFeedList', 'none')\"
1591 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
1592 print "</div></div>";
1593 print "</div>"; #toolbar
1594
1595 print "<div class=\"inactiveFeedHolder\">";
1596
1597 print "<table width=\"100%\" cellspacing=\"0\" id=\"prefInactiveFeedList\">";
1598
1599 $lnum = 1;
1600
d9c85e0f 1601 while ($line = $this->dbh->fetch_assoc($result)) {
bc6fa236 1602
bc6fa236
AD
1603 $feed_id = $line["id"];
1604 $this_row_id = "id=\"FUPDD-$feed_id\"";
1605
1606 # class needed for selectTableRows()
1607 print "<tr class=\"placeholder\" $this_row_id>";
1608
bc6fa236
AD
1609 # id needed for selectTableRows()
1610 print "<td width='5%' align='center'><input
1611 onclick='toggleSelectRow2(this);' dojoType=\"dijit.form.CheckBox\"
1612 type=\"checkbox\" id=\"FUPDC-$feed_id\"></td>";
1613 print "<td>";
1614
1615 print "<a class=\"visibleLink\" href=\"#\" ".
1616 "title=\"".__("Click to edit feed")."\" ".
1617 "onclick=\"editFeed(".$line["id"].")\">".
1618 htmlspecialchars($line["title"])."</a>";
1619
1620 print "</td><td class=\"insensitive\" align='right'>";
a42c55f0 1621 print make_local_datetime($line['last_article'], false);
bc6fa236
AD
1622 print "</td>";
1623 print "</tr>";
1624
1625 ++$lnum;
1626 }
1627
1628 print "</table>";
1629 print "</div>";
1630
1631 print "<div class='dlgButtons'>";
1632 print "<div style='float : left'>";
1633 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('inactiveFeedsDlg').removeSelected()\">"
1634 .__('Unsubscribe from selected feeds')."</button> ";
1635 print "</div>";
1636
1637 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('inactiveFeedsDlg').hide()\">".
1638 __('Close this window')."</button>";
1639
1640 print "</div>";
1641
1642 }
1643
1644 function feedsWithErrors() {
d9c85e0f 1645 $result = $this->dbh->query("SELECT id,title,feed_url,last_error,site_url
bc6fa236
AD
1646 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
1647
1648 print "<div dojoType=\"dijit.Toolbar\">";
1649 print "<div dojoType=\"dijit.form.DropDownButton\">".
1650 "<span>" . __('Select')."</span>";
1651 print "<div dojoType=\"dijit.Menu\" style=\"display: none;\">";
1652 print "<div onclick=\"selectTableRows('prefErrorFeedList', 'all')\"
1653 dojoType=\"dijit.MenuItem\">".__('All')."</div>";
1654 print "<div onclick=\"selectTableRows('prefErrorFeedList', 'none')\"
1655 dojoType=\"dijit.MenuItem\">".__('None')."</div>";
1656 print "</div></div>";
1657 print "</div>"; #toolbar
1658
1659 print "<div class=\"inactiveFeedHolder\">";
1660
1661 print "<table width=\"100%\" cellspacing=\"0\" id=\"prefErrorFeedList\">";
1662
1663 $lnum = 1;
1664
d9c85e0f 1665 while ($line = $this->dbh->fetch_assoc($result)) {
bc6fa236 1666
bc6fa236
AD
1667 $feed_id = $line["id"];
1668 $this_row_id = "id=\"FERDD-$feed_id\"";
1669
1670 # class needed for selectTableRows()
1671 print "<tr class=\"placeholder\" $this_row_id>";
1672
bc6fa236
AD
1673 # id needed for selectTableRows()
1674 print "<td width='5%' align='center'><input
1675 onclick='toggleSelectRow2(this);' dojoType=\"dijit.form.CheckBox\"
1676 type=\"checkbox\" id=\"FERDC-$feed_id\"></td>";
1677 print "<td>";
1678
1679 print "<a class=\"visibleLink\" href=\"#\" ".
1680 "title=\"".__("Click to edit feed")."\" ".
1681 "onclick=\"editFeed(".$line["id"].")\">".
1682 htmlspecialchars($line["title"])."</a>: ";
1683
1684 print "<span class=\"insensitive\">";
1685 print htmlspecialchars($line["last_error"]);
1686 print "</span>";
1687
1688 print "</td>";
1689 print "</tr>";
1690
1691 ++$lnum;
1692 }
1693
1694 print "</table>";
1695 print "</div>";
1696
1697 print "<div class='dlgButtons'>";
1698 print "<div style='float : left'>";
1699 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('errorFeedsDlg').removeSelected()\">"
1700 .__('Unsubscribe from selected feeds')."</button> ";
1701 print "</div>";
1702
1703 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('errorFeedsDlg').hide()\">".
1704 __('Close this window')."</button>";
1705
1706 print "</div>";
1707 }
1708
87d7e850
AD
1709 /**
1710 * Purge a feed contents, marked articles excepted.
1711 *
1712 * @param mixed $link The database connection.
1713 * @param integer $id The id of the feed to purge.
1714 * @return void
1715 */
6322ac79 1716 private function clear_feed_articles($id) {
87d7e850
AD
1717
1718 if ($id != 0) {
d9c85e0f 1719 $result = $this->dbh->query("DELETE FROM ttrss_user_entries
87d7e850
AD
1720 WHERE feed_id = '$id' AND marked = false AND owner_uid = " . $_SESSION["uid"]);
1721 } else {
d9c85e0f 1722 $result = $this->dbh->query("DELETE FROM ttrss_user_entries
87d7e850
AD
1723 WHERE feed_id IS NULL AND marked = false AND owner_uid = " . $_SESSION["uid"]);
1724 }
1725
d9c85e0f 1726 $result = $this->dbh->query("DELETE FROM ttrss_entries WHERE
87d7e850
AD
1727 (SELECT COUNT(int_id) FROM ttrss_user_entries WHERE ref_id = id) = 0");
1728
a42c55f0 1729 ccache_update($id, $_SESSION['uid']);
87d7e850
AD
1730 } // function clear_feed_articles
1731
a42c55f0 1732 private function remove_feed_category($id, $owner_uid) {
a6a9b812 1733
d9c85e0f 1734 $this->dbh->query("DELETE FROM ttrss_feed_categories
a6a9b812
AD
1735 WHERE id = '$id' AND owner_uid = $owner_uid");
1736
a42c55f0 1737 ccache_remove($id, $owner_uid, true);
a6a9b812
AD
1738 }
1739
a42c55f0 1740 static function remove_feed($id, $owner_uid) {
a6a9b812
AD
1741
1742 if ($id > 0) {
1743
1744 /* save starred articles in Archived feed */
1745
a42c55f0 1746 db_query("BEGIN");
a6a9b812
AD
1747
1748 /* prepare feed if necessary */
1749
a42c55f0 1750 $result = db_query("SELECT feed_url FROM ttrss_feeds WHERE id = $id
aa5ac2cd
AD
1751 AND owner_uid = $owner_uid");
1752
a42c55f0 1753 $feed_url = db_escape_string(db_fetch_result($result, 0, "feed_url"));
aa5ac2cd 1754
a42c55f0 1755 $result = db_query("SELECT id FROM ttrss_archived_feeds
aa5ac2cd 1756 WHERE feed_url = '$feed_url' AND owner_uid = $owner_uid");
a6a9b812
AD
1757
1758 if (db_num_rows($result) == 0) {
a42c55f0 1759 $result = db_query("SELECT MAX(id) AS id FROM ttrss_archived_feeds");
b1df14d0
AD
1760 $new_feed_id = (int)db_fetch_result($result, 0, "id") + 1;
1761
a42c55f0 1762 db_query("INSERT INTO ttrss_archived_feeds
a6a9b812 1763 (id, owner_uid, title, feed_url, site_url)
b1df14d0 1764 SELECT $new_feed_id, owner_uid, title, feed_url, site_url from ttrss_feeds
aa5ac2cd
AD
1765 WHERE id = '$id'");
1766
b1df14d0 1767 $archive_id = $new_feed_id;
aa5ac2cd
AD
1768 } else {
1769 $archive_id = db_fetch_result($result, 0, "id");
a6a9b812
AD
1770 }
1771
a42c55f0 1772 db_query("UPDATE ttrss_user_entries SET feed_id = NULL,
aa5ac2cd 1773 orig_feed_id = '$archive_id' WHERE feed_id = '$id' AND
a6a9b812
AD
1774 marked = true AND owner_uid = $owner_uid");
1775
1776 /* Remove access key for the feed */
1777
a42c55f0 1778 db_query("DELETE FROM ttrss_access_keys WHERE
a6a9b812
AD
1779 feed_id = '$id' AND owner_uid = $owner_uid");
1780
1781 /* remove the feed */
1782
a42c55f0 1783 db_query("DELETE FROM ttrss_feeds
a6a9b812
AD
1784 WHERE id = '$id' AND owner_uid = $owner_uid");
1785
a42c55f0 1786 db_query("COMMIT");
a6a9b812
AD
1787
1788 if (file_exists(ICONS_DIR . "/$id.ico")) {
1789 unlink(ICONS_DIR . "/$id.ico");
1790 }
1791
a42c55f0 1792 ccache_remove($id, $owner_uid);
a6a9b812
AD
1793
1794 } else {
a42c55f0
AD
1795 label_remove(feed_to_label_id($id), $owner_uid);
1796 //ccache_remove($id, $owner_uid); don't think labels are cached
a6a9b812
AD
1797 }
1798 }
87d7e850 1799
201bb1ca 1800 function batchSubscribe() {
96e3ae8c 1801 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"pref-feeds\">";
201bb1ca
AD
1802 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"batchaddfeeds\">";
1803
1804 print "<table width='100%'><tr><td>
1805 ".__("Add one valid RSS feed per line (no feed detection is done)")."
1806 </td><td align='right'>";
a42c55f0 1807 if (get_pref('ENABLE_FEED_CATS')) {
201bb1ca 1808 print __('Place in category:') . " ";
a42c55f0 1809 print_feed_cat_select("cat", false, 'dojoType="dijit.form.Select"');
201bb1ca
AD
1810 }
1811 print "</td></tr><tr><td colspan='2'>";
1812 print "<textarea
fb8a032a 1813 style='font-size : 12px; width : 98%; height: 200px;'
201bb1ca
AD
1814 placeHolder=\"".__("Feeds to subscribe, One per line")."\"
1815 dojoType=\"dijit.form.SimpleTextarea\" required=\"1\" name=\"feeds\"></textarea>";
1816
1817 print "</td></tr><tr><td colspan='2'>";
1818
1819 print "<div id='feedDlg_loginContainer' style='display : none'>
1820 " .
1821 " <input dojoType=\"dijit.form.TextBox\" name='login'\"
1822 placeHolder=\"".__("Login")."\"
1823 style=\"width : 10em;\"> ".
1824 " <input
1825 placeHolder=\"".__("Password")."\"
1826 dojoType=\"dijit.form.TextBox\" type='password'
1827 style=\"width : 10em;\" name='pass'\">".
1828 "</div>";
1829
1830 print "</td></tr><tr><td colspan='2'>";
1831
1832 print "<div style=\"clear : both\">
1833 <input type=\"checkbox\" name=\"need_auth\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
1834 onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
1835 <label for=\"feedDlg_loginCheck\">".
1836 __('Feeds require authentication.')."</div>";
1837
1838 print "</form>";
1839
1840 print "</td></tr></table>";
1841
1842 print "<div class=\"dlgButtons\">
1843 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('batchSubDlg').execute()\">".__('Subscribe')."</button>
1844 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('batchSubDlg').hide()\">".__('Cancel')."</button>
1845 </div>";
1846 }
1847
96e3ae8c 1848 function batchAddFeeds() {
d9c85e0f 1849 $cat_id = $this->dbh->escape_string($_REQUEST['cat']);
2714d5ca 1850 $feeds = explode("\n", $_REQUEST['feeds']);
d9c85e0f 1851 $login = $this->dbh->escape_string($_REQUEST['login']);
41694a95 1852 $pass = trim($_REQUEST['pass']);
96e3ae8c
AD
1853
1854 foreach ($feeds as $feed) {
d9c85e0f 1855 $feed = $this->dbh->escape_string(trim($feed));
96e3ae8c
AD
1856
1857 if (validate_feed_url($feed)) {
1858
d9c85e0f 1859 $this->dbh->query("BEGIN");
96e3ae8c
AD
1860
1861 if ($cat_id == "0" || !$cat_id) {
1862 $cat_qpart = "NULL";
1863 } else {
1864 $cat_qpart = "'$cat_id'";
1865 }
1866
d9c85e0f 1867 $result = $this->dbh->query(
96e3ae8c
AD
1868 "SELECT id FROM ttrss_feeds
1869 WHERE feed_url = '$feed' AND owner_uid = ".$_SESSION["uid"]);
1870
044cff2d
AD
1871 if (strlen(FEED_CRYPT_KEY) > 0) {
1872 require_once "crypt.php";
1873 $pass = substr(encrypt_string($pass), 0, 250);
1874 $auth_pass_encrypted = 'true';
1875 } else {
1876 $auth_pass_encrypted = 'false';
1877 }
1878
d9c85e0f 1879 $pass = $this->dbh->escape_string($pass);
41694a95 1880
d9c85e0f
AD
1881 if ($this->dbh->num_rows($result) == 0) {
1882 $result = $this->dbh->query(
96e3ae8c 1883 "INSERT INTO ttrss_feeds
044cff2d 1884 (owner_uid,feed_url,title,cat_id,auth_login,auth_pass,update_method,auth_pass_encrypted)
96e3ae8c 1885 VALUES ('".$_SESSION["uid"]."', '$feed',
044cff2d 1886 '[Unknown]', $cat_qpart, '$login', '$pass', 0, $auth_pass_encrypted)");
96e3ae8c
AD
1887 }
1888
d9c85e0f 1889 $this->dbh->query("COMMIT");
96e3ae8c
AD
1890 }
1891 }
1892 }
201bb1ca 1893
195187c4 1894 function regenOPMLKey() {
a42c55f0 1895 $this->update_feed_access_key('OPML:Publish',
195187c4
AD
1896 false, $_SESSION["uid"]);
1897
6322ac79 1898 $new_link = Opml::opml_publish_url();
195187c4
AD
1899
1900 print json_encode(array("link" => $new_link));
1901 }
1902
1903 function regenFeedKey() {
d9c85e0f
AD
1904 $feed_id = $this->dbh->escape_string($_REQUEST['id']);
1905 $is_cat = $this->dbh->escape_string($_REQUEST['is_cat']) == "true";
195187c4 1906
a42c55f0 1907 $new_key = $this->update_feed_access_key($feed_id, $is_cat);
195187c4
AD
1908
1909 print json_encode(array("link" => $new_key));
1910 }
1911
1912
a42c55f0 1913 private function update_feed_access_key($feed_id, $is_cat, $owner_uid = false) {
195187c4
AD
1914 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
1915
1916 $sql_is_cat = bool_to_sql_bool($is_cat);
1917
d9c85e0f 1918 $result = $this->dbh->query("SELECT access_key FROM ttrss_access_keys
195187c4
AD
1919 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
1920 AND owner_uid = " . $owner_uid);
1921
d9c85e0f 1922 if ($this->dbh->num_rows($result) == 1) {
3ceb893f 1923 $key = $this->dbh->escape_string(uniqid_short());
195187c4 1924
d9c85e0f 1925 $this->dbh->query("UPDATE ttrss_access_keys SET access_key = '$key'
195187c4
AD
1926 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
1927 AND owner_uid = " . $owner_uid);
1928
1929 return $key;
1930
1931 } else {
a42c55f0 1932 return get_feed_access_key($feed_id, $is_cat, $owner_uid);
195187c4
AD
1933 }
1934 }
1935
1936 // Silent
1937 function clearKeys() {
d9c85e0f 1938 $this->dbh->query("DELETE FROM ttrss_access_keys WHERE
195187c4
AD
1939 owner_uid = " . $_SESSION["uid"]);
1940 }
1941
496195db
AD
1942 private function calculate_children_count($cat) {
1943 $c = 0;
1944
1945 foreach ($cat['items'] as $child) {
1946 if ($child['type'] == 'category') {
1947 $c += $this->calculate_children_count($child);
1948 } else {
1949 $c += 1;
1950 }
1951 }
1952
1953 return $c;
1954 }
195187c4 1955
f9c1f8b0
AD
1956 function getinactivefeeds() {
1957 if (DB_TYPE == "pgsql") {
1958 $interval_qpart = "NOW() - INTERVAL '3 months'";
1959 } else {
1960 $interval_qpart = "DATE_SUB(NOW(), INTERVAL 3 MONTH)";
1961 }
1962
1963 $result = $this->dbh->query("SELECT COUNT(*) AS num_inactive FROM ttrss_feeds WHERE
1964 (SELECT MAX(updated) FROM ttrss_entries, ttrss_user_entries WHERE
1965 ttrss_entries.id = ref_id AND
1966 ttrss_user_entries.feed_id = ttrss_feeds.id) < $interval_qpart AND
1967 ttrss_feeds.owner_uid = ".$_SESSION["uid"]);
1968
1969 print (int) $this->dbh->fetch_result($result, 0, "num_inactive");
1970 }
afcfe6ca
AD
1971}
1972?>