]> git.wh0rd.org - tt-rss.git/blame - classes/rpc.php
rpc: move setScore to article
[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
414 function regenOPMLKey() {
87d7e850 415 $this->update_feed_access_key($this->link, 'OPML:Publish',
d5112468
AD
416 false, $_SESSION["uid"]);
417
50832719 418 $new_link = Opml::opml_publish_url($this->link);
d5112468
AD
419
420 print json_encode(array("link" => $new_link));
421 }
422
1b4d1a6b 423 function completeLabels() {
3972bf59 424 $search = db_escape_string($this->link, $_REQUEST["search"]);
1b4d1a6b
AD
425
426 $result = db_query($this->link, "SELECT DISTINCT caption FROM
427 ttrss_labels2
428 WHERE owner_uid = '".$_SESSION["uid"]."' AND
429 LOWER(caption) LIKE LOWER('$search%') ORDER BY caption
430 LIMIT 5");
431
432 print "<ul>";
433 while ($line = db_fetch_assoc($result)) {
434 print "<li>" . $line["caption"] . "</li>";
435 }
436 print "</ul>";
437 }
438
439
d5112468 440 function completeTags() {
3972bf59 441 $search = db_escape_string($this->link, $_REQUEST["search"]);
d5112468
AD
442
443 $result = db_query($this->link, "SELECT DISTINCT tag_name FROM ttrss_tags
444 WHERE owner_uid = '".$_SESSION["uid"]."' AND
445 tag_name LIKE '$search%' ORDER BY tag_name
446 LIMIT 10");
447
448 print "<ul>";
449 while ($line = db_fetch_assoc($result)) {
450 print "<li>" . $line["tag_name"] . "</li>";
451 }
452 print "</ul>";
453 }
454
455 function purge() {
3972bf59 456 $ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
d5112468
AD
457 $days = sprintf("%d", $_REQUEST["days"]);
458
459 foreach ($ids as $id) {
460
461 $result = db_query($this->link, "SELECT id FROM ttrss_feeds WHERE
462 id = '$id' AND owner_uid = ".$_SESSION["uid"]);
463
464 if (db_num_rows($result) == 1) {
465 purge_feed($this->link, $id, $days);
466 }
467 }
468 }
469
470 function getArticles() {
3972bf59 471 $ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
d5112468
AD
472 $articles = array();
473
474 foreach ($ids as $id) {
475 if ($id) {
476 array_push($articles, format_article($this->link, $id, 0, false));
477 }
478 }
479
480 print json_encode($articles);
481 }
482
d5112468 483 function assigntolabel() {
4fdb8759 484 return $this->labelops(true);
d5112468 485 }
46da73c2 486
d5112468 487 function removefromlabel() {
4fdb8759 488 return $this->labelops(false);
d5112468 489 }
46da73c2 490
d5112468
AD
491 function labelops($assign) {
492 $reply = array();
493
3972bf59
AD
494 $ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
495 $label_id = db_escape_string($this->link, $_REQUEST["lid"]);
d5112468 496
3972bf59 497 $label = db_escape_string($this->link, label_find_caption($this->link, $label_id,
d5112468
AD
498 $_SESSION["uid"]));
499
500 $reply["info-for-headlines"] = array();
501
502 if ($label) {
503
504 foreach ($ids as $id) {
505
506 if ($assign)
507 label_add_article($this->link, $id, $label, $_SESSION["uid"]);
508 else
509 label_remove_article($this->link, $id, $label, $_SESSION["uid"]);
510
511 $labels = get_article_labels($this->link, $id, $_SESSION["uid"]);
512
513 array_push($reply["info-for-headlines"],
514 array("id" => $id, "labels" => format_article_labels($labels, $id)));
515
516 }
517 }
518
519 $reply["message"] = "UPDATE_COUNTERS";
520
521 print json_encode($reply);
522 }
523
524 function updateFeedBrowser() {
3972bf59
AD
525 $search = db_escape_string($this->link, $_REQUEST["search"]);
526 $limit = db_escape_string($this->link, $_REQUEST["limit"]);
527 $mode = (int) db_escape_string($this->link, $_REQUEST["mode"]);
d5112468 528
55c7f092
AD
529 require_once "feedbrowser.php";
530
d5112468
AD
531 print json_encode(array("content" =>
532 make_feed_browser($this->link, $search, $limit, $mode),
533 "mode" => $mode));
534 }
535
536 // Silent
537 function massSubscribe() {
538
539 $payload = json_decode($_REQUEST["payload"], false);
540 $mode = $_REQUEST["mode"];
541
542 if (!$payload || !is_array($payload)) return;
543
544 if ($mode == 1) {
545 foreach ($payload as $feed) {
546
3972bf59
AD
547 $title = db_escape_string($this->link, $feed[0]);
548 $feed_url = db_escape_string($this->link, $feed[1]);
d5112468
AD
549
550 $result = db_query($this->link, "SELECT id FROM ttrss_feeds WHERE
551 feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
552
553 if (db_num_rows($result) == 0) {
554 $result = db_query($this->link, "INSERT INTO ttrss_feeds
555 (owner_uid,feed_url,title,cat_id,site_url)
556 VALUES ('".$_SESSION["uid"]."',
557 '$feed_url', '$title', NULL, '')");
558 }
559 }
560 } else if ($mode == 2) {
561 // feed archive
562 foreach ($payload as $id) {
563 $result = db_query($this->link, "SELECT * FROM ttrss_archived_feeds
564 WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
565
566 if (db_num_rows($result) != 0) {
3972bf59
AD
567 $site_url = db_escape_string($this->link, db_fetch_result($result, 0, "site_url"));
568 $feed_url = db_escape_string($this->link, db_fetch_result($result, 0, "feed_url"));
569 $title = db_escape_string($this->link, db_fetch_result($result, 0, "title"));
d5112468
AD
570
571 $result = db_query($this->link, "SELECT id FROM ttrss_feeds WHERE
572 feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
573
574 if (db_num_rows($result) == 0) {
575 $result = db_query($this->link, "INSERT INTO ttrss_feeds
576 (owner_uid,feed_url,title,cat_id,site_url)
577 VALUES ('$id','".$_SESSION["uid"]."',
578 '$feed_url', '$title', NULL, '$site_url')");
579 }
580 }
581 }
582 }
583 }
584
d5112468 585 function catchupFeed() {
3972bf59
AD
586 $feed_id = db_escape_string($this->link, $_REQUEST['feed_id']);
587 $is_cat = db_escape_string($this->link, $_REQUEST['is_cat']) == "true";
c8b693cf 588 $mode = db_escape_string($this->link, $_REQUEST['mode']);
d5112468 589
c8b693cf 590 catchup_feed($this->link, $feed_id, $is_cat, false, false, $mode);
d5112468
AD
591
592 print json_encode(array("message" => "UPDATE_COUNTERS"));
593 }
594
d5112468 595 function quickAddCat() {
3972bf59 596 $cat = db_escape_string($this->link, $_REQUEST["cat"]);
d5112468
AD
597
598 add_feed_category($this->link, $cat);
599
600 $result = db_query($this->link, "SELECT id FROM ttrss_feed_categories WHERE
601 title = '$cat' AND owner_uid = " . $_SESSION["uid"]);
602
603 if (db_num_rows($result) == 1) {
604 $id = db_fetch_result($result, 0, "id");
605 } else {
606 $id = 0;
607 }
608
609 print_feed_cat_select($this->link, "cat_id", $id);
610 }
611
612 function regenFeedKey() {
3972bf59
AD
613 $feed_id = db_escape_string($this->link, $_REQUEST['id']);
614 $is_cat = db_escape_string($this->link, $_REQUEST['is_cat']) == "true";
d5112468 615
87d7e850 616 $new_key = $this->update_feed_access_key($this->link, $feed_id, $is_cat);
d5112468
AD
617
618 print json_encode(array("link" => $new_key));
619 }
620
621 // Silent
622 function clearKeys() {
623 db_query($this->link, "DELETE FROM ttrss_access_keys WHERE
624 owner_uid = " . $_SESSION["uid"]);
625 }
626
627 // Silent
628 function clearArticleKeys() {
629 db_query($this->link, "UPDATE ttrss_user_entries SET uuid = '' WHERE
630 owner_uid = " . $_SESSION["uid"]);
631
632 return;
633 }
634
7d8f5657
AD
635 function setpanelmode() {
636 $wide = (int) $_REQUEST["wide"];
637
f03701fe
AD
638 setcookie("ttrss_widescreen", $wide,
639 time() + SESSION_COOKIE_LIFETIME);
7d8f5657
AD
640
641 print json_encode(array("wide" => $wide));
642 }
643
8b83bf5f
AD
644 function updaterandomfeed() {
645 // Test if the feed need a update (update interval exceded).
646 if (DB_TYPE == "pgsql") {
647 $update_limit_qpart = "AND ((
648 ttrss_feeds.update_interval = 0
649 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_user_prefs.value || ' minutes') AS INTERVAL)
650 ) OR (
651 ttrss_feeds.update_interval > 0
652 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_feeds.update_interval || ' minutes') AS INTERVAL)
653 ) OR ttrss_feeds.last_updated IS NULL
654 OR last_updated = '1970-01-01 00:00:00')";
655 } else {
656 $update_limit_qpart = "AND ((
657 ttrss_feeds.update_interval = 0
658 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL CONVERT(ttrss_user_prefs.value, SIGNED INTEGER) MINUTE)
659 ) OR (
660 ttrss_feeds.update_interval > 0
661 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL ttrss_feeds.update_interval MINUTE)
662 ) OR ttrss_feeds.last_updated IS NULL
663 OR last_updated = '1970-01-01 00:00:00')";
664 }
665
666 // Test if feed is currently being updated by another process.
667 if (DB_TYPE == "pgsql") {
668 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '5 minutes')";
669 } else {
670 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 5 MINUTE))";
671 }
672
673 $random_qpart = sql_random_function();
674
675 // We search for feed needing update.
676 $result = db_query($this->link, "SELECT ttrss_feeds.feed_url,ttrss_feeds.id
677 FROM
678 ttrss_feeds, ttrss_users, ttrss_user_prefs
679 WHERE
680 ttrss_feeds.owner_uid = ttrss_users.id
681 AND ttrss_users.id = ttrss_user_prefs.owner_uid
682 AND ttrss_user_prefs.pref_name = 'DEFAULT_UPDATE_INTERVAL'
683 AND ttrss_feeds.owner_uid = ".$_SESSION["uid"]."
684 $update_limit_qpart $updstart_thresh_qpart
685 ORDER BY $random_qpart LIMIT 30");
686
687 $feed_id = -1;
688
689 require_once "rssfuncs.php";
690
691 $num_updated = 0;
692
693 $tstart = time();
694
695 while ($line = db_fetch_assoc($result)) {
696 $feed_id = $line["id"];
697
6b1a4ecd 698 if (time() - $tstart < ini_get("max_execution_time") * 0.7) {
8b83bf5f
AD
699 update_rss_feed($this->link, $feed_id, true);
700 ++$num_updated;
701 } else {
702 break;
703 }
704 }
705
cda55d67
AD
706 // Purge orphans and cleanup tags
707 purge_orphans($this->link);
708 cleanup_tags($this->link, 14, 50000);
709
8b83bf5f
AD
710 if ($num_updated > 0) {
711 print json_encode(array("message" => "UPDATE_COUNTERS",
712 "num_updated" => $num_updated));
713 } else {
714 print json_encode(array("message" => "NOTHING_TO_UPDATE"));
715 }
716
717 }
718
87d7e850
AD
719 function update_feed_access_key($link, $feed_id, $is_cat, $owner_uid = false) {
720 if (!$owner_uid) $owner_uid = $_SESSION["uid"];
721
722 $sql_is_cat = bool_to_sql_bool($is_cat);
723
724 $result = db_query($link, "SELECT access_key FROM ttrss_access_keys
725 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
726 AND owner_uid = " . $owner_uid);
727
728 if (db_num_rows($result) == 1) {
3972bf59 729 $key = db_escape_string($this->link, sha1(uniqid(rand(), true)));
87d7e850
AD
730
731 db_query($link, "UPDATE ttrss_access_keys SET access_key = '$key'
732 WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
733 AND owner_uid = " . $owner_uid);
734
735 return $key;
736
737 } else {
738 return get_feed_access_key($link, $feed_id, $is_cat, $owner_uid);
739 }
740 }
741
742 private function markArticlesById($link, $ids, $cmode) {
743
744 $tmp_ids = array();
745
746 foreach ($ids as $id) {
747 array_push($tmp_ids, "ref_id = '$id'");
748 }
749
750 $ids_qpart = join(" OR ", $tmp_ids);
751
752 if ($cmode == 0) {
753 db_query($link, "UPDATE ttrss_user_entries SET
7873d588 754 marked = false, last_marked = NOW()
87d7e850
AD
755 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
756 } else if ($cmode == 1) {
757 db_query($link, "UPDATE ttrss_user_entries SET
7873d588 758 marked = true, last_marked = NOW()
87d7e850
AD
759 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
760 } else {
761 db_query($link, "UPDATE ttrss_user_entries SET
7873d588 762 marked = NOT marked,last_marked = NOW()
87d7e850
AD
763 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
764 }
765 }
766
767 private function publishArticlesById($link, $ids, $cmode) {
768
769 $tmp_ids = array();
770
771 foreach ($ids as $id) {
772 array_push($tmp_ids, "ref_id = '$id'");
773 }
774
775 $ids_qpart = join(" OR ", $tmp_ids);
776
777 if ($cmode == 0) {
778 db_query($link, "UPDATE ttrss_user_entries SET
7873d588 779 published = false,last_published = NOW()
87d7e850
AD
780 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
781 } else if ($cmode == 1) {
782 db_query($link, "UPDATE ttrss_user_entries SET
7873d588 783 published = true,last_published = NOW()
87d7e850
AD
784 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
785 } else {
786 db_query($link, "UPDATE ttrss_user_entries SET
7873d588 787 published = NOT published,last_published = NOW()
87d7e850
AD
788 WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
789 }
790
791 if (PUBSUBHUBBUB_HUB) {
792 $rss_link = get_self_url_prefix() .
793 "/public.php?op=rss&id=-2&key=" .
794 get_feed_access_key($link, -2, false);
795
796 $p = new Publisher(PUBSUBHUBBUB_HUB);
797
798 $pubsub_result = $p->publish_update($rss_link);
799 }
800 }
801
5defc29f 802 function getlinktitlebyid() {
3972bf59 803 $id = db_escape_string($this->link, $_REQUEST['id']);
7fc2e87e 804
5defc29f 805 $result = db_query($this->link, "SELECT link, title FROM ttrss_entries, ttrss_user_entries
7fc2e87e
AD
806 WHERE ref_id = '$id' AND ref_id = id AND owner_uid = ". $_SESSION["uid"]);
807
808 if (db_num_rows($result) != 0) {
809 $link = db_fetch_result($result, 0, "link");
5defc29f 810 $title = db_fetch_result($result, 0, "title");
7fc2e87e 811
5defc29f 812 echo json_encode(array("link" => $link, "title" => $title));
7fc2e87e
AD
813 } else {
814 echo json_encode(array("error" => "ARTICLE_NOT_FOUND"));
815 }
816 }
817
d5112468
AD
818}
819?>