]> git.wh0rd.org - tt-rss.git/blame - classes/rpc.php
rpc: move several feed-related calls to pref-feeds
[tt-rss.git] / classes / rpc.php
CommitLineData
d5112468 1<?php
369dbc19 2class RPC extends Handler_Protected {
d5112468 3
8484ce22 4 function csrf_ignore($method) {
6c2637d9 5 $csrf_ignored = array("sanitycheck", "completelabels");
8484ce22
AD
6
7 return array_search($method, $csrf_ignored) !== false;
8 }
9
d5112468 10 function setprofile() {
3972bf59 11 $id = db_escape_string($this->link, $_REQUEST["id"]);
46da73c2 12
d5112468
AD
13 $_SESSION["profile"] = $id;
14 $_SESSION["prefs_cache"] = array();
15 }
16
17 function remprofiles() {
3972bf59 18 $ids = explode(",", db_escape_string($this->link, trim($_REQUEST["ids"])));
d5112468
AD
19
20 foreach ($ids as $id) {
21 if ($_SESSION["profile"] != $id) {
22 db_query($this->link, "DELETE FROM ttrss_settings_profiles WHERE id = '$id' AND
23 owner_uid = " . $_SESSION["uid"]);
24 }
25 }
26 }
27
28 // Silent
29 function addprofile() {
3972bf59 30 $title = db_escape_string($this->link, trim($_REQUEST["title"]));
d5112468
AD
31 if ($title) {
32 db_query($this->link, "BEGIN");
33
34 $result = db_query($this->link, "SELECT id FROM ttrss_settings_profiles
35 WHERE title = '$title' AND owner_uid = " . $_SESSION["uid"]);
36
37 if (db_num_rows($result) == 0) {
38
39 db_query($this->link, "INSERT INTO ttrss_settings_profiles (title, owner_uid)
40 VALUES ('$title', ".$_SESSION["uid"] .")");
41
42 $result = db_query($this->link, "SELECT id FROM ttrss_settings_profiles WHERE
43 title = '$title'");
44
45 if (db_num_rows($result) != 0) {
46 $profile_id = db_fetch_result($result, 0, "id");
47
48 if ($profile_id) {
49 initialize_user_prefs($this->link, $_SESSION["uid"], $profile_id);
50 }
51 }
52 }
53
54 db_query($this->link, "COMMIT");
55 }
56 }
57
58 // Silent
59 function saveprofile() {
3972bf59
AD
60 $id = db_escape_string($this->link, $_REQUEST["id"]);
61 $title = db_escape_string($this->link, trim($_REQUEST["value"]));
d5112468
AD
62
63 if ($id == 0) {
64 print __("Default profile");
65 return;
66 }
67
68 if ($title) {
69 db_query($this->link, "BEGIN");
70
71 $result = db_query($this->link, "SELECT id FROM ttrss_settings_profiles
72 WHERE title = '$title' AND owner_uid =" . $_SESSION["uid"]);
73
74 if (db_num_rows($result) == 0) {
75 db_query($this->link, "UPDATE ttrss_settings_profiles
76 SET title = '$title' WHERE id = '$id' AND
77 owner_uid = " . $_SESSION["uid"]);
78 print $title;
79 } else {
80 $result = db_query($this->link, "SELECT title FROM ttrss_settings_profiles
81 WHERE id = '$id' AND owner_uid =" . $_SESSION["uid"]);
82 print db_fetch_result($result, 0, "title");
83 }
84
85 db_query($this->link, "COMMIT");
86 }
87 }
88
89 // Silent
90 function remarchive() {
3972bf59 91 $ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
d5112468
AD
92
93 foreach ($ids as $id) {
94 $result = db_query($this->link, "DELETE FROM ttrss_archived_feeds WHERE
95 (SELECT COUNT(*) FROM ttrss_user_entries
96 WHERE orig_feed_id = '$id') = 0 AND
97 id = '$id' AND owner_uid = ".$_SESSION["uid"]);
98
99 $rc = db_affected_rows($this->link, $result);
100 }
101 }
102
103 function addfeed() {
3972bf59
AD
104 $feed = db_escape_string($this->link, $_REQUEST['feed']);
105 $cat = db_escape_string($this->link, $_REQUEST['cat']);
106 $login = db_escape_string($this->link, $_REQUEST['login']);
107 $pass = db_escape_string($this->link, $_REQUEST['pass']);
d5112468 108
efc6553d 109 $rc = subscribe_to_feed($this->link, $feed, $cat, $login, $pass);
d5112468
AD
110
111 print json_encode(array("result" => $rc));
112 }
113
d5112468 114 function togglepref() {
3972bf59 115 $key = db_escape_string($this->link, $_REQUEST["key"]);
d5112468
AD
116 set_pref($this->link, $key, !get_pref($this->link, $key));
117 $value = get_pref($this->link, $key);
118
119 print json_encode(array("param" =>$key, "value" => $value));
120 }
121
122 function setpref() {
0380cfa9 123 // set_pref escapes input, so no need to double escape it here
74eef4fc
AD
124 $key = $_REQUEST['key'];
125 $value = str_replace("\n", "<br/>", $_REQUEST['value']);
d5112468 126
7e431502 127 set_pref($this->link, $key, $value, $_SESSION['uid'], $key != 'USER_STYLESHEET');
d5112468
AD
128
129 print json_encode(array("param" =>$key, "value" => $value));
130 }
131
132 function mark() {
133 $mark = $_REQUEST["mark"];
3972bf59 134 $id = db_escape_string($this->link, $_REQUEST["id"]);
d5112468
AD
135
136 if ($mark == "1") {
137 $mark = "true";
138 } else {
139 $mark = "false";
140 }
141
7873d588
AD
142 $result = db_query($this->link, "UPDATE ttrss_user_entries SET marked = $mark,
143 last_marked = NOW()
d5112468
AD
144 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
145
146 print json_encode(array("message" => "UPDATE_COUNTERS"));
147 }
148
149 function delete() {
3972bf59 150 $ids = db_escape_string($this->link, $_REQUEST["ids"]);
d5112468
AD
151
152 $result = db_query($this->link, "DELETE FROM ttrss_user_entries
153 WHERE ref_id IN ($ids) AND owner_uid = " . $_SESSION["uid"]);
154
f0d3c94a
AD
155 purge_orphans($this->link);
156
d5112468
AD
157 print json_encode(array("message" => "UPDATE_COUNTERS"));
158 }
159
160 function unarchive() {
b029f916
AD
161 $ids = explode(",", $_REQUEST["ids"]);
162
163 foreach ($ids as $id) {
164 $id = db_escape_string($this->link, trim($id));
165 db_query($this->link, "BEGIN");
166
167 $result = db_query($this->link, "SELECT feed_url,site_url,title FROM ttrss_archived_feeds
168 WHERE id = (SELECT orig_feed_id FROM ttrss_user_entries WHERE ref_id = $id
169 AND owner_uid = ".$_SESSION["uid"].")");
170
171 if (db_num_rows($result) != 0) {
172 $feed_url = db_escape_string($this->link, db_fetch_result($result, 0, "feed_url"));
173 $site_url = db_escape_string($this->link, db_fetch_result($result, 0, "site_url"));
174 $title = db_escape_string($this->link, db_fetch_result($result, 0, "title"));
175
176 $result = db_query($this->link, "SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_url'
177 AND owner_uid = " .$_SESSION["uid"]);
178
179 if (db_num_rows($result) == 0) {
180
181 if (!$title) $title = '[Unknown]';
182
183 $result = db_query($this->link,
184 "INSERT INTO ttrss_feeds
185 (owner_uid,feed_url,site_url,title,cat_id,auth_login,auth_pass,update_method)
186 VALUES (".$_SESSION["uid"].",
187 '$feed_url',
188 '$site_url',
189 '$title',
190 NULL, '', '', 0)");
d5112468 191
b029f916
AD
192 $result = db_query($this->link,
193 "SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_url'
194 AND owner_uid = ".$_SESSION["uid"]);
195
196 if (db_num_rows($result) != 0) {
197 $feed_id = db_fetch_result($result, 0, "id");
198 }
199
200 } else {
201 $feed_id = db_fetch_result($result, 0, "id");
202 }
203
204 if ($feed_id) {
205 $result = db_query($this->link, "UPDATE ttrss_user_entries
206 SET feed_id = '$feed_id', orig_feed_id = NULL
207 WHERE ref_id = $id AND owner_uid = " . $_SESSION["uid"]);
208 }
209 }
210
211 db_query($this->link, "COMMIT");
212 }
d5112468
AD
213
214 print json_encode(array("message" => "UPDATE_COUNTERS"));
215 }
216
217 function archive() {
3972bf59 218 $ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
d5112468
AD
219
220 foreach ($ids as $id) {
87d7e850 221 $this->archive_article($this->link, $id, $_SESSION["uid"]);
d5112468
AD
222 }
223
224 print json_encode(array("message" => "UPDATE_COUNTERS"));
225 }
226
87d7e850
AD
227 private function archive_article($link, $id, $owner_uid) {
228 db_query($link, "BEGIN");
229
230 $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
231 WHERE ref_id = '$id' AND owner_uid = $owner_uid");
232
233 if (db_num_rows($result) != 0) {
234
235 /* prepare the archived table */
236
237 $feed_id = (int) db_fetch_result($result, 0, "feed_id");
238
239 if ($feed_id) {
240 $result = db_query($link, "SELECT id FROM ttrss_archived_feeds
241 WHERE id = '$feed_id'");
242
243 if (db_num_rows($result) == 0) {
244 db_query($link, "INSERT INTO ttrss_archived_feeds
245 (id, owner_uid, title, feed_url, site_url)
246 SELECT id, owner_uid, title, feed_url, site_url from ttrss_feeds
247 WHERE id = '$feed_id'");
248 }
249
250 db_query($link, "UPDATE ttrss_user_entries
251 SET orig_feed_id = feed_id, feed_id = NULL
252 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
253 }
254 }
255
256 db_query($link, "COMMIT");
257 }
258
d5112468
AD
259 function publ() {
260 $pub = $_REQUEST["pub"];
3972bf59
AD
261 $id = db_escape_string($this->link, $_REQUEST["id"]);
262 $note = trim(strip_tags(db_escape_string($this->link, $_REQUEST["note"])));
d5112468
AD
263
264 if ($pub == "1") {
265 $pub = "true";
266 } else {
267 $pub = "false";
268 }
269
270 $result = db_query($this->link, "UPDATE ttrss_user_entries SET
7873d588 271 published = $pub, last_published = NOW()
d5112468
AD
272 WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
273
274 $pubsub_result = false;
275
276 if (PUBSUBHUBBUB_HUB) {
277 $rss_link = get_self_url_prefix() .
278 "/public.php?op=rss&id=-2&key=" .
279 get_feed_access_key($this->link, -2, false);
280
281 $p = new Publisher(PUBSUBHUBBUB_HUB);
282
283 $pubsub_result = $p->publish_update($rss_link);
284 }
285
286 print json_encode(array("message" => "UPDATE_COUNTERS",
287 "pubsub_result" => $pubsub_result));
288 }
289
290 function getAllCounters() {
291 $last_article_id = (int) $_REQUEST["last_article_id"];
292
293 $reply = array();
294
5b55e9e2 295 if ($seq) $reply['seq'] = $seq;
d5112468 296
5b55e9e2
AD
297 if ($last_article_id != getLastArticleId($this->link)) {
298 $reply['counters'] = getAllCounters($this->link);
299 }
d5112468 300
5b55e9e2 301 $reply['runtime-info'] = make_runtime_info($this->link);
d5112468 302
5b55e9e2 303 print json_encode($reply);
d5112468
AD
304 }
305
306 /* GET["cmode"] = 0 - mark as read, 1 - as unread, 2 - toggle */
307 function catchupSelected() {
3972bf59 308 $ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
d5112468
AD
309 $cmode = sprintf("%d", $_REQUEST["cmode"]);
310
311 catchupArticlesById($this->link, $ids, $cmode);
312
313 print json_encode(array("message" => "UPDATE_COUNTERS"));
314 }
315
316 function markSelected() {
3972bf59 317 $ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
d5112468
AD
318 $cmode = sprintf("%d", $_REQUEST["cmode"]);
319
87d7e850 320 $this->markArticlesById($this->link, $ids, $cmode);
d5112468
AD
321
322 print json_encode(array("message" => "UPDATE_COUNTERS"));
323 }
324
325 function publishSelected() {
3972bf59 326 $ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
d5112468
AD
327 $cmode = sprintf("%d", $_REQUEST["cmode"]);
328
87d7e850 329 $this->publishArticlesById($this->link, $ids, $cmode);
d5112468
AD
330
331 print json_encode(array("message" => "UPDATE_COUNTERS"));
332 }
333
334 function sanityCheck() {
335 $_SESSION["hasAudio"] = $_REQUEST["hasAudio"] === "true";
4f7d69e1 336 $_SESSION["hasSandbox"] = $_REQUEST["hasSandbox"] === "true";
d5112468
AD
337
338 $reply = array();
339
340 $reply['error'] = sanity_check($this->link);
341
342 if ($reply['error']['code'] == 0) {
343 $reply['init-params'] = make_init_params($this->link);
344 $reply['runtime-info'] = make_runtime_info($this->link);
345 }
346
347 print json_encode($reply);
348 }
349
350 function setArticleTags() {
d5112468 351
3972bf59 352 $id = db_escape_string($this->link, $_REQUEST["id"]);
d5112468 353
3972bf59 354 $tags_str = db_escape_string($this->link, $_REQUEST["tags_str"]);
d5112468
AD
355 $tags = array_unique(trim_array(explode(",", $tags_str)));
356
357 db_query($this->link, "BEGIN");
358
359 $result = db_query($this->link, "SELECT int_id FROM ttrss_user_entries WHERE
360 ref_id = '$id' AND owner_uid = '".$_SESSION["uid"]."' LIMIT 1");
361
362 if (db_num_rows($result) == 1) {
363
364 $tags_to_cache = array();
365
366 $int_id = db_fetch_result($result, 0, "int_id");
367
368 db_query($this->link, "DELETE FROM ttrss_tags WHERE
369 post_int_id = $int_id AND owner_uid = '".$_SESSION["uid"]."'");
370
371 foreach ($tags as $tag) {
372 $tag = sanitize_tag($tag);
373
374 if (!tag_is_valid($tag)) {
375 continue;
376 }
377
378 if (preg_match("/^[0-9]*$/", $tag)) {
379 continue;
380 }
381
382 // print "<!-- $id : $int_id : $tag -->";
383
384 if ($tag != '') {
385 db_query($this->link, "INSERT INTO ttrss_tags
386 (post_int_id, owner_uid, tag_name) VALUES ('$int_id', '".$_SESSION["uid"]."', '$tag')");
387 }
388
389 array_push($tags_to_cache, $tag);
390 }
391
392 /* update tag cache */
393
394 sort($tags_to_cache);
395 $tags_str = join(",", $tags_to_cache);
396
397 db_query($this->link, "UPDATE ttrss_user_entries
398 SET tag_cache = '$tags_str' WHERE ref_id = '$id'
399 AND owner_uid = " . $_SESSION["uid"]);
400 }
401
402 db_query($this->link, "COMMIT");
403
d5112468
AD
404 $tags = get_article_tags($this->link, $id);
405 $tags_str = format_tags_string($tags, $id);
406 $tags_str_full = join(", ", $tags);
407
408 if (!$tags_str_full) $tags_str_full = __("no tags");
409
1c9bda91
AD
410 print json_encode(array("id" => (int)$id,
411 "content" => $tags_str, "content_full" => $tags_str_full));
d5112468
AD
412 }
413
1b4d1a6b 414 function completeLabels() {
3972bf59 415 $search = db_escape_string($this->link, $_REQUEST["search"]);
1b4d1a6b
AD
416
417 $result = db_query($this->link, "SELECT DISTINCT caption FROM
418 ttrss_labels2
419 WHERE owner_uid = '".$_SESSION["uid"]."' AND
420 LOWER(caption) LIKE LOWER('$search%') ORDER BY caption
421 LIMIT 5");
422
423 print "<ul>";
424 while ($line = db_fetch_assoc($result)) {
425 print "<li>" . $line["caption"] . "</li>";
426 }
427 print "</ul>";
428 }
429
430
d5112468 431 function completeTags() {
3972bf59 432 $search = db_escape_string($this->link, $_REQUEST["search"]);
d5112468
AD
433
434 $result = db_query($this->link, "SELECT DISTINCT tag_name FROM ttrss_tags
435 WHERE owner_uid = '".$_SESSION["uid"]."' AND
436 tag_name LIKE '$search%' ORDER BY tag_name
437 LIMIT 10");
438
439 print "<ul>";
440 while ($line = db_fetch_assoc($result)) {
441 print "<li>" . $line["tag_name"] . "</li>";
442 }
443 print "</ul>";
444 }
445
446 function purge() {
3972bf59 447 $ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
d5112468
AD
448 $days = sprintf("%d", $_REQUEST["days"]);
449
450 foreach ($ids as $id) {
451
452 $result = db_query($this->link, "SELECT id FROM ttrss_feeds WHERE
453 id = '$id' AND owner_uid = ".$_SESSION["uid"]);
454
455 if (db_num_rows($result) == 1) {
456 purge_feed($this->link, $id, $days);
457 }
458 }
459 }
460
461 function getArticles() {
3972bf59 462 $ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
d5112468
AD
463 $articles = array();
464
465 foreach ($ids as $id) {
466 if ($id) {
467 array_push($articles, format_article($this->link, $id, 0, false));
468 }
469 }
470
471 print json_encode($articles);
472 }
473
d5112468 474 function assigntolabel() {
4fdb8759 475 return $this->labelops(true);
d5112468 476 }
46da73c2 477
d5112468 478 function removefromlabel() {
4fdb8759 479 return $this->labelops(false);
d5112468 480 }
46da73c2 481
d5112468
AD
482 function labelops($assign) {
483 $reply = array();
484
3972bf59
AD
485 $ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
486 $label_id = db_escape_string($this->link, $_REQUEST["lid"]);
d5112468 487
3972bf59 488 $label = db_escape_string($this->link, label_find_caption($this->link, $label_id,
d5112468
AD
489 $_SESSION["uid"]));
490
491 $reply["info-for-headlines"] = array();
492
493 if ($label) {
494
495 foreach ($ids as $id) {
496
497 if ($assign)
498 label_add_article($this->link, $id, $label, $_SESSION["uid"]);
499 else
500 label_remove_article($this->link, $id, $label, $_SESSION["uid"]);
501
502 $labels = get_article_labels($this->link, $id, $_SESSION["uid"]);
503
504 array_push($reply["info-for-headlines"],
505 array("id" => $id, "labels" => format_article_labels($labels, $id)));
506
507 }
508 }
509
510 $reply["message"] = "UPDATE_COUNTERS";
511
512 print json_encode($reply);
513 }
514
515 function updateFeedBrowser() {
3972bf59
AD
516 $search = db_escape_string($this->link, $_REQUEST["search"]);
517 $limit = db_escape_string($this->link, $_REQUEST["limit"]);
518 $mode = (int) db_escape_string($this->link, $_REQUEST["mode"]);
d5112468 519
55c7f092
AD
520 require_once "feedbrowser.php";
521
d5112468
AD
522 print json_encode(array("content" =>
523 make_feed_browser($this->link, $search, $limit, $mode),
524 "mode" => $mode));
525 }
526
527 // Silent
528 function massSubscribe() {
529
530 $payload = json_decode($_REQUEST["payload"], false);
531 $mode = $_REQUEST["mode"];
532
533 if (!$payload || !is_array($payload)) return;
534
535 if ($mode == 1) {
536 foreach ($payload as $feed) {
537
3972bf59
AD
538 $title = db_escape_string($this->link, $feed[0]);
539 $feed_url = db_escape_string($this->link, $feed[1]);
d5112468
AD
540
541 $result = db_query($this->link, "SELECT id FROM ttrss_feeds WHERE
542 feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
543
544 if (db_num_rows($result) == 0) {
545 $result = db_query($this->link, "INSERT INTO ttrss_feeds
546 (owner_uid,feed_url,title,cat_id,site_url)
547 VALUES ('".$_SESSION["uid"]."',
548 '$feed_url', '$title', NULL, '')");
549 }
550 }
551 } else if ($mode == 2) {
552 // feed archive
553 foreach ($payload as $id) {
554 $result = db_query($this->link, "SELECT * FROM ttrss_archived_feeds
555 WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
556
557 if (db_num_rows($result) != 0) {
3972bf59
AD
558 $site_url = db_escape_string($this->link, db_fetch_result($result, 0, "site_url"));
559 $feed_url = db_escape_string($this->link, db_fetch_result($result, 0, "feed_url"));
560 $title = db_escape_string($this->link, db_fetch_result($result, 0, "title"));
d5112468
AD
561
562 $result = db_query($this->link, "SELECT id FROM ttrss_feeds WHERE
563 feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
564
565 if (db_num_rows($result) == 0) {
566 $result = db_query($this->link, "INSERT INTO ttrss_feeds
567 (owner_uid,feed_url,title,cat_id,site_url)
568 VALUES ('$id','".$_SESSION["uid"]."',
569 '$feed_url', '$title', NULL, '$site_url')");
570 }
571 }
572 }
573 }
574 }
575
d5112468 576 function catchupFeed() {
3972bf59
AD
577 $feed_id = db_escape_string($this->link, $_REQUEST['feed_id']);
578 $is_cat = db_escape_string($this->link, $_REQUEST['is_cat']) == "true";
c8b693cf 579 $mode = db_escape_string($this->link, $_REQUEST['mode']);
d5112468 580
c8b693cf 581 catchup_feed($this->link, $feed_id, $is_cat, false, false, $mode);
d5112468
AD
582
583 print json_encode(array("message" => "UPDATE_COUNTERS"));
584 }
585
d5112468 586 function quickAddCat() {
3972bf59 587 $cat = db_escape_string($this->link, $_REQUEST["cat"]);
d5112468
AD
588
589 add_feed_category($this->link, $cat);
590
591 $result = db_query($this->link, "SELECT id FROM ttrss_feed_categories WHERE
592 title = '$cat' AND owner_uid = " . $_SESSION["uid"]);
593
594 if (db_num_rows($result) == 1) {
595 $id = db_fetch_result($result, 0, "id");
596 } else {
597 $id = 0;
598 }
599
600 print_feed_cat_select($this->link, "cat_id", $id);
601 }
602
d5112468
AD
603 // Silent
604 function clearArticleKeys() {
605 db_query($this->link, "UPDATE ttrss_user_entries SET uuid = '' WHERE
606 owner_uid = " . $_SESSION["uid"]);
607
608 return;
609 }
610
7d8f5657
AD
611 function setpanelmode() {
612 $wide = (int) $_REQUEST["wide"];
613
f03701fe
AD
614 setcookie("ttrss_widescreen", $wide,
615 time() + SESSION_COOKIE_LIFETIME);
7d8f5657
AD
616
617 print json_encode(array("wide" => $wide));
618 }
619
8b83bf5f
AD
620 function updaterandomfeed() {
621 // Test if the feed need a update (update interval exceded).
622 if (DB_TYPE == "pgsql") {
623 $update_limit_qpart = "AND ((
624 ttrss_feeds.update_interval = 0
625 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_user_prefs.value || ' minutes') AS INTERVAL)
626 ) OR (
627 ttrss_feeds.update_interval > 0
628 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_feeds.update_interval || ' minutes') AS INTERVAL)
629 ) OR ttrss_feeds.last_updated IS NULL
630 OR last_updated = '1970-01-01 00:00:00')";
631 } else {
632 $update_limit_qpart = "AND ((
633 ttrss_feeds.update_interval = 0
634 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL CONVERT(ttrss_user_prefs.value, SIGNED INTEGER) MINUTE)
635 ) OR (
636 ttrss_feeds.update_interval > 0
637 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL ttrss_feeds.update_interval MINUTE)
638 ) OR ttrss_feeds.last_updated IS NULL
639 OR last_updated = '1970-01-01 00:00:00')";
640 }
641
642 // Test if feed is currently being updated by another process.
643 if (DB_TYPE == "pgsql") {
644 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '5 minutes')";
645 } else {
646 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 5 MINUTE))";
647 }
648
649 $random_qpart = sql_random_function();
650
651 // We search for feed needing update.
652 $result = db_query($this->link, "SELECT ttrss_feeds.feed_url,ttrss_feeds.id
653 FROM
654 ttrss_feeds, ttrss_users, ttrss_user_prefs
655 WHERE
656 ttrss_feeds.owner_uid = ttrss_users.id
657 AND ttrss_users.id = ttrss_user_prefs.owner_uid
658 AND ttrss_user_prefs.pref_name = 'DEFAULT_UPDATE_INTERVAL'
659 AND ttrss_feeds.owner_uid = ".$_SESSION["uid"]."
660 $update_limit_qpart $updstart_thresh_qpart
661 ORDER BY $random_qpart LIMIT 30");
662
663 $feed_id = -1;
664
665 require_once "rssfuncs.php";
666
667 $num_updated = 0;
668
669 $tstart = time();
670
671 while ($line = db_fetch_assoc($result)) {
672 $feed_id = $line["id"];
673
6b1a4ecd 674 if (time() - $tstart < ini_get("max_execution_time") * 0.7) {
8b83bf5f
AD
675 update_rss_feed($this->link, $feed_id, true);
676 ++$num_updated;
677 } else {
678 break;
679 }
680 }
681
cda55d67
AD
682 // Purge orphans and cleanup tags
683 purge_orphans($this->link);
684 cleanup_tags($this->link, 14, 50000);
685
8b83bf5f
AD
686 if ($num_updated > 0) {
687 print json_encode(array("message" => "UPDATE_COUNTERS",
688 "num_updated" => $num_updated));
689 } else {
690 print json_encode(array("message" => "NOTHING_TO_UPDATE"));
691 }
692
693 }
694
87d7e850
AD
695 private function markArticlesById($link, $ids, $cmode) {
696
697 $tmp_ids = array();
698
699 foreach ($ids as $id) {
700 array_push($tmp_ids, "ref_id = '$id'");
701 }
702
703 $ids_qpart = join(" OR ", $tmp_ids);
704
705 if ($cmode == 0) {
706 db_query($link, "UPDATE ttrss_user_entries SET
7873d588 707 marked = false, last_marked = NOW()
87d7e850
AD
708 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
709 } else if ($cmode == 1) {
710 db_query($link, "UPDATE ttrss_user_entries SET
7873d588 711 marked = true, last_marked = NOW()
87d7e850
AD
712 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
713 } else {
714 db_query($link, "UPDATE ttrss_user_entries SET
7873d588 715 marked = NOT marked,last_marked = NOW()
87d7e850
AD
716 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
717 }
718 }
719
720 private function publishArticlesById($link, $ids, $cmode) {
721
722 $tmp_ids = array();
723
724 foreach ($ids as $id) {
725 array_push($tmp_ids, "ref_id = '$id'");
726 }
727
728 $ids_qpart = join(" OR ", $tmp_ids);
729
730 if ($cmode == 0) {
731 db_query($link, "UPDATE ttrss_user_entries SET
7873d588 732 published = false,last_published = NOW()
87d7e850
AD
733 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
734 } else if ($cmode == 1) {
735 db_query($link, "UPDATE ttrss_user_entries SET
7873d588 736 published = true,last_published = NOW()
87d7e850
AD
737 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
738 } else {
739 db_query($link, "UPDATE ttrss_user_entries SET
7873d588 740 published = NOT published,last_published = NOW()
87d7e850
AD
741 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
742 }
743
744 if (PUBSUBHUBBUB_HUB) {
745 $rss_link = get_self_url_prefix() .
746 "/public.php?op=rss&id=-2&key=" .
747 get_feed_access_key($link, -2, false);
748
749 $p = new Publisher(PUBSUBHUBBUB_HUB);
750
751 $pubsub_result = $p->publish_update($rss_link);
752 }
753 }
754
5defc29f 755 function getlinktitlebyid() {
3972bf59 756 $id = db_escape_string($this->link, $_REQUEST['id']);
7fc2e87e 757
5defc29f 758 $result = db_query($this->link, "SELECT link, title FROM ttrss_entries, ttrss_user_entries
7fc2e87e
AD
759 WHERE ref_id = '$id' AND ref_id = id AND owner_uid = ". $_SESSION["uid"]);
760
761 if (db_num_rows($result) != 0) {
762 $link = db_fetch_result($result, 0, "link");
5defc29f 763 $title = db_fetch_result($result, 0, "title");
7fc2e87e 764
5defc29f 765 echo json_encode(array("link" => $link, "title" => $title));
7fc2e87e
AD
766 } else {
767 echo json_encode(array("error" => "ARTICLE_NOT_FOUND"));
768 }
769 }
770
d5112468
AD
771}
772?>