]> git.wh0rd.org - tt-rss.git/blame - classes/rpc.php
force strip_tags() on all user input unless explicitly allowed
[tt-rss.git] / classes / rpc.php
CommitLineData
d5112468 1<?php
369dbc19 2class RPC extends Handler_Protected {
d5112468 3
8484ce22 4 function csrf_ignore($method) {
fbe7cb0a 5 $csrf_ignored = array("sanitycheck", "completelabels", "saveprofile");
8484ce22
AD
6
7 return array_search($method, $csrf_ignored) !== false;
8 }
9
d5112468 10 function setprofile() {
e6532439 11 $_SESSION["profile"] = clean($_REQUEST["id"]);
70393703
AD
12
13 // default value
14 if (!$_SESSION["profile"]) $_SESSION["profile"] = null;
d5112468
AD
15 }
16
17 function remprofiles() {
e6532439 18 $ids = explode(",", trim(clean($_REQUEST["ids"])));
d5112468
AD
19
20 foreach ($ids as $id) {
21 if ($_SESSION["profile"] != $id) {
fbe7cb0a
AD
22 $sth = $this->pdo->prepare("DELETE FROM ttrss_settings_profiles WHERE id = ? AND
23 owner_uid = ?");
24 $sth->execute([$id, $_SESSION['uid']]);
d5112468
AD
25 }
26 }
27 }
28
29 // Silent
30 function addprofile() {
e6532439 31 $title = trim(clean($_REQUEST["title"]));
fbe7cb0a 32
d5112468 33 if ($title) {
fbe7cb0a 34 $this->pdo->beginTransaction();
d5112468 35
fbe7cb0a
AD
36 $sth = $this->pdo->prepare("SELECT id FROM ttrss_settings_profiles
37 WHERE title = ? AND owner_uid = ?");
38 $sth->execute([$title, $_SESSION['uid']]);
d5112468 39
fbe7cb0a 40 if (!$sth->fetch()) {
d5112468 41
fbe7cb0a
AD
42 $sth = $this->pdo->prepare("INSERT INTO ttrss_settings_profiles (title, owner_uid)
43 VALUES (?, ?)");
d5112468 44
fbe7cb0a 45 $sth->execute([$title, $_SESSION['uid']]);
d5112468 46
fbe7cb0a
AD
47 $sth = $this->pdo->prepare("SELECT id FROM ttrss_settings_profiles WHERE
48 title = ? AND owner_uid = ?");
49 $sth->execute([$title, $_SESSION['uid']]);
50
51 if ($row = $sth->fetch()) {
52 $profile_id = $row['id'];
d5112468
AD
53
54 if ($profile_id) {
a42c55f0 55 initialize_user_prefs($_SESSION["uid"], $profile_id);
d5112468
AD
56 }
57 }
58 }
59
fbe7cb0a 60 $this->pdo->commit();
d5112468
AD
61 }
62 }
63
d5112468 64 function saveprofile() {
e6532439
AD
65 $id = clean($_REQUEST["id"]);
66 $title = trim(clean($_REQUEST["value"]));
d5112468
AD
67
68 if ($id == 0) {
69 print __("Default profile");
70 return;
71 }
72
73 if ($title) {
fbe7cb0a
AD
74 $sth = $this->pdo->prepare("UPDATE ttrss_settings_profiles
75 SET title = ? WHERE id = ? AND
76 owner_uid = ?");
d5112468 77
fbe7cb0a
AD
78 $sth->execute([$title, $id, $_SESSION['uid']]);
79 print $title;
d5112468
AD
80 }
81 }
82
83 // Silent
84 function remarchive() {
e6532439 85 $ids = explode(",", clean($_REQUEST["ids"]));
d5112468 86
fbe7cb0a
AD
87 $sth = $this->pdo->prepare("DELETE FROM ttrss_archived_feeds WHERE
88 (SELECT COUNT(*) FROM ttrss_user_entries
89 WHERE orig_feed_id = :id) = 0 AND
90 id = :id AND owner_uid = :uid");
d5112468 91
fbe7cb0a
AD
92 foreach ($ids as $id) {
93 $sth->execute([":id" => $id, ":uid" => $_SESSION['uid']]);
d5112468
AD
94 }
95 }
96
97 function addfeed() {
e6532439
AD
98 $feed = clean($_REQUEST['feed']);
99 $cat = clean($_REQUEST['cat']);
100 $login = clean($_REQUEST['login']);
101 $pass = trim(clean($_REQUEST['pass']));
d5112468 102
86a8351c 103 $rc = Feeds::subscribe_to_feed($feed, $cat, $login, $pass);
d5112468
AD
104
105 print json_encode(array("result" => $rc));
106 }
107
d5112468 108 function togglepref() {
e6532439 109 $key = clean($_REQUEST["key"]);
a42c55f0
AD
110 set_pref($key, !get_pref($key));
111 $value = get_pref($key);
d5112468
AD
112
113 print json_encode(array("param" =>$key, "value" => $value));
114 }
115
116 function setpref() {
0380cfa9 117 // set_pref escapes input, so no need to double escape it here
e6532439
AD
118 $key = clean($_REQUEST['key']);
119 $value = nl2br($_REQUEST['value']);
d5112468 120
86d07d36 121 set_pref($key, $value, false, $key != 'USER_STYLESHEET');
d5112468
AD
122
123 print json_encode(array("param" =>$key, "value" => $value));
124 }
125
126 function mark() {
e6532439
AD
127 $mark = clean($_REQUEST["mark"]);
128 $id = clean($_REQUEST["id"]);
d5112468 129
fbe7cb0a 130 $sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET marked = ?,
7873d588 131 last_marked = NOW()
fbe7cb0a
AD
132 WHERE ref_id = ? AND owner_uid = ?");
133
134 $sth->execute([$mark, $id, $_SESSION['uid']]);
d5112468
AD
135
136 print json_encode(array("message" => "UPDATE_COUNTERS"));
137 }
138
139 function delete() {
e6532439 140 $ids = explode(",", clean($_REQUEST["ids"]));
fbe7cb0a 141 $ids_qmarks = arr_qmarks($ids);
d5112468 142
fbe7cb0a
AD
143 $sth = $this->pdo->prepare("DELETE FROM ttrss_user_entries
144 WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
145 $sth->execute(array_merge($ids, [$_SESSION['uid']]));
d5112468 146
a230bf88 147 Article::purge_orphans();
f0d3c94a 148
d5112468
AD
149 print json_encode(array("message" => "UPDATE_COUNTERS"));
150 }
151
152 function unarchive() {
e6532439 153 $ids = explode(",", clean($_REQUEST["ids"]));
b029f916
AD
154
155 foreach ($ids as $id) {
fbe7cb0a 156 $this->pdo->beginTransaction();
b029f916 157
fbe7cb0a
AD
158 $sth = $this->pdo->prepare("SELECT feed_url,site_url,title FROM ttrss_archived_feeds
159 WHERE id = (SELECT orig_feed_id FROM ttrss_user_entries WHERE ref_id = :id
160 AND owner_uid = :uid) AND owner_uid = :uid");
161 $sth->execute([":uid" => $_SESSION['uid'], ":id" => $id]);
b029f916 162
fbe7cb0a
AD
163 if ($row = $sth->fetch()) {
164 $feed_url = $row['feed_url'];
165 $site_url = $row['site_url'];
166 $title = $row['title'];
b029f916 167
fbe7cb0a
AD
168 $sth = $this->pdo->prepare("SELECT id FROM ttrss_feeds WHERE feed_url = ?
169 AND owner_uid = ?");
170 $sth->execute([$feed_url, $_SESSION['uid']]);
b029f916 171
fbe7cb0a
AD
172 if ($row = $sth->fetch()) {
173 $feed_id = $row["id"];
174 } else {
b029f916
AD
175 if (!$title) $title = '[Unknown]';
176
fbe7cb0a 177 $sth = $this->pdo->prepare("INSERT INTO ttrss_feeds
b029f916 178 (owner_uid,feed_url,site_url,title,cat_id,auth_login,auth_pass,update_method)
fbe7cb0a
AD
179 VALUES (?, ?, ?, ?, NULL, '', '', 0)");
180 $sth->execute([$_SESSION['uid'], $feed_url, $site_url, $title]);
b029f916 181
fbe7cb0a
AD
182 $sth = $this->pdo->prepare("SELECT id FROM ttrss_feeds WHERE feed_url = ?
183 AND owner_uid = ?");
184 $sth->execute([$feed_url, $_SESSION['uid']]);
185
186 if ($row = $sth->fetch()) {
187 $feed_id = $row['id'];
188 }
b029f916
AD
189 }
190
191 if ($feed_id) {
fbe7cb0a
AD
192 $sth = $this->pdo->prepare("UPDATE ttrss_user_entries
193 SET feed_id = ?, orig_feed_id = NULL
194 WHERE ref_id = ? AND owner_uid = ?");
195 $sth->execute([$feed_id, $id, $_SESSION['uid']]);
b029f916
AD
196 }
197 }
198
fbe7cb0a 199 $this->pdo->commit();
b029f916 200 }
d5112468
AD
201
202 print json_encode(array("message" => "UPDATE_COUNTERS"));
203 }
204
205 function archive() {
e6532439 206 $ids = explode(",", clean($_REQUEST["ids"]));
d5112468
AD
207
208 foreach ($ids as $id) {
a42c55f0 209 $this->archive_article($id, $_SESSION["uid"]);
d5112468
AD
210 }
211
212 print json_encode(array("message" => "UPDATE_COUNTERS"));
213 }
214
a42c55f0 215 private function archive_article($id, $owner_uid) {
fbe7cb0a
AD
216 $this->pdo->beginTransaction();
217
218 if (!$owner_uid) $owner_uid = $_SESSION['uid'];
87d7e850 219
fbe7cb0a
AD
220 $sth = $this->pdo->prepare("SELECT feed_id FROM ttrss_user_entries
221 WHERE ref_id = ? AND owner_uid = ?");
222 $sth->execute([$id, $owner_uid]);
87d7e850 223
fbe7cb0a 224 if ($row = $sth->fetch()) {
87d7e850
AD
225
226 /* prepare the archived table */
227
fbe7cb0a 228 $feed_id = (int) $row['feed_id'];
87d7e850
AD
229
230 if ($feed_id) {
fbe7cb0a
AD
231 $sth = $this->pdo->prepare("SELECT id FROM ttrss_archived_feeds
232 WHERE id = ? AND owner_uid = ?");
233 $sth->execute([$feed_id, $owner_uid]);
87d7e850 234
fbe7cb0a
AD
235 if ($row = $sth->fetch()) {
236 $new_feed_id = $row['id'];
237 } else {
238 $row = $this->pdo->query("SELECT MAX(id) AS id FROM ttrss_archived_feeds")->fetch();
239 $new_feed_id = (int)$row['id'] + 1;
71b75bb7 240
fbe7cb0a 241 $sth = $this->pdo->prepare("INSERT INTO ttrss_archived_feeds
87d7e850 242 (id, owner_uid, title, feed_url, site_url)
fbe7cb0a
AD
243 SELECT ?, owner_uid, title, feed_url, site_url from ttrss_feeds
244 WHERE id = ?");
245
246 $sth->execute([$new_feed_id, $feed_id]);
87d7e850
AD
247 }
248
fbe7cb0a
AD
249 $sth = $this->pdo->prepare("UPDATE ttrss_user_entries
250 SET orig_feed_id = ?, feed_id = NULL
251 WHERE ref_id = ? AND owner_uid = ?");
252 $sth->execute([$new_feed_id, $id, $owner_uid]);
87d7e850
AD
253 }
254 }
255
fbe7cb0a 256 $this->pdo->commit();
87d7e850
AD
257 }
258
d5112468 259 function publ() {
e6532439
AD
260 $pub = clean($_REQUEST["pub"]);
261 $id = clean($_REQUEST["id"]);
d5112468 262
fbe7cb0a
AD
263 $sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
264 published = ?, last_published = NOW()
265 WHERE ref_id = ? AND owner_uid = ?");
d5112468 266
fbe7cb0a 267 $sth->execute([$pub, $id, $_SESSION['uid']]);
d5112468 268
5b6ea1ef 269 print json_encode(array("message" => "UPDATE_COUNTERS"));
d5112468
AD
270 }
271
272 function getAllCounters() {
e6532439 273 $last_article_id = (int) clean($_REQUEST["last_article_id"]);
d5112468
AD
274
275 $reply = array();
276
6f7798b6 277 if (!empty($_REQUEST['seq'])) $reply['seq'] = (int) $_REQUEST['seq'];
d5112468 278
aeb1abed 279 if ($last_article_id != Article::getLastArticleId()) {
65af3b2c 280 $reply['counters'] = Counters::getAllCounters();
5b55e9e2 281 }
d5112468 282
6322ac79 283 $reply['runtime-info'] = make_runtime_info();
d5112468 284
5b55e9e2 285 print json_encode($reply);
d5112468
AD
286 }
287
288 /* GET["cmode"] = 0 - mark as read, 1 - as unread, 2 - toggle */
289 function catchupSelected() {
e6532439
AD
290 $ids = explode(",", clean($_REQUEST["ids"]));
291 $cmode = sprintf("%d", clean($_REQUEST["cmode"]));
d5112468 292
aeb1abed 293 Article::catchupArticlesById($ids, $cmode);
d5112468 294
ae31704b 295 print json_encode(array("message" => "UPDATE_COUNTERS", "ids" => $ids));
d5112468
AD
296 }
297
298 function markSelected() {
e6532439
AD
299 $ids = explode(",", clean($_REQUEST["ids"]));
300 $cmode = (int)clean($_REQUEST["cmode"]);
d5112468 301
a42c55f0 302 $this->markArticlesById($ids, $cmode);
d5112468
AD
303
304 print json_encode(array("message" => "UPDATE_COUNTERS"));
305 }
306
307 function publishSelected() {
e6532439
AD
308 $ids = explode(",", clean($_REQUEST["ids"]));
309 $cmode = (int)clean($_REQUEST["cmode"]);
d5112468 310
a42c55f0 311 $this->publishArticlesById($ids, $cmode);
d5112468
AD
312
313 print json_encode(array("message" => "UPDATE_COUNTERS"));
314 }
315
316 function sanityCheck() {
e6532439
AD
317 $_SESSION["hasAudio"] = clean($_REQUEST["hasAudio"]) === "true";
318 $_SESSION["hasSandbox"] = clean($_REQUEST["hasSandbox"]) === "true";
319 $_SESSION["hasMp3"] = clean($_REQUEST["hasMp3"]) === "true";
320 $_SESSION["clientTzOffset"] = clean($_REQUEST["clientTzOffset"]);
d5112468
AD
321
322 $reply = array();
323
6322ac79 324 $reply['error'] = sanity_check();
d5112468
AD
325
326 if ($reply['error']['code'] == 0) {
6322ac79 327 $reply['init-params'] = make_init_params();
79c891a8 328 $reply['runtime-info'] = make_runtime_info(true);
d5112468
AD
329 }
330
331 print json_encode($reply);
332 }
333
1b4d1a6b 334 function completeLabels() {
e6532439 335 $search = clean($_REQUEST["search"]);
1b4d1a6b 336
731ecac5 337 $sth = $this->pdo->prepare("SELECT DISTINCT caption FROM
1b4d1a6b 338 ttrss_labels2
fbe7cb0a
AD
339 WHERE owner_uid = ? AND
340 LOWER(caption) LIKE LOWER(?) ORDER BY caption
1b4d1a6b 341 LIMIT 5");
fbe7cb0a 342 $sth->execute([$_SESSION['uid'], "%$search%"]);
1b4d1a6b
AD
343
344 print "<ul>";
fbe7cb0a 345 while ($line = $sth->fetch()) {
1b4d1a6b
AD
346 print "<li>" . $line["caption"] . "</li>";
347 }
348 print "</ul>";
349 }
350
d5112468 351 function updateFeedBrowser() {
0e653f75
AK
352 if (defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER) return;
353
e6532439
AD
354 $search = clean($_REQUEST["search"]);
355 $limit = clean($_REQUEST["limit"]);
356 $mode = (int) clean($_REQUEST["mode"]);
d5112468 357
55c7f092
AD
358 require_once "feedbrowser.php";
359
d5112468 360 print json_encode(array("content" =>
a42c55f0 361 make_feed_browser($search, $limit, $mode),
d5112468
AD
362 "mode" => $mode));
363 }
364
365 // Silent
366 function massSubscribe() {
367
e6532439
AD
368 $payload = json_decode(clean($_REQUEST["payload"]), false);
369 $mode = clean($_REQUEST["mode"]);
d5112468
AD
370
371 if (!$payload || !is_array($payload)) return;
372
373 if ($mode == 1) {
374 foreach ($payload as $feed) {
375
fbe7cb0a
AD
376 $title = $feed[0];
377 $feed_url = $feed[1];
d5112468 378
fbe7cb0a
AD
379 $sth = $this->pdo->prepare("SELECT id FROM ttrss_feeds WHERE
380 feed_url = ? AND owner_uid = ?");
381 $sth->execute([$feed_url, $_SESSION['uid']]);
d5112468 382
fbe7cb0a
AD
383 if (!$sth->fetch()) {
384 $sth = $this->pdo->prepare("INSERT INTO ttrss_feeds
d5112468 385 (owner_uid,feed_url,title,cat_id,site_url)
fbe7cb0a
AD
386 VALUES (?, ?, ?, NULL, '')");
387
388 $sth->execute([$_SESSION['uid'], $feed_url, $title]);
d5112468
AD
389 }
390 }
391 } else if ($mode == 2) {
392 // feed archive
393 foreach ($payload as $id) {
fbe7cb0a
AD
394 $sth = $this->pdo->prepare("SELECT * FROM ttrss_archived_feeds
395 WHERE id = ? AND owner_uid = ?");
396 $sth->execute([$id, $_SESSION['uid']]);
397
398 if ($row = $sth->fetch()) {
399 $site_url = $row['site_url'];
400 $feed_url = $row['feed_url'];
401 $title = $row['title'];
402
403 $sth = $this->pdo->prepare("SELECT id FROM ttrss_feeds WHERE
404 feed_url = ? AND owner_uid = ?");
405 $sth->execute([$feed_url, $_SESSION['uid']]);
406
407 if (!$sth->fetch()) {
408 $sth = $this->pdo->prepare("INSERT INTO ttrss_feeds
409 (owner_uid,feed_url,title,cat_id,site_url)
410 VALUES (?, ?, ?, NULL, ?)");
411
412 $sth->execute([$_SESSION['uid'], $feed_url, $title, $site_url]);
d5112468
AD
413 }
414 }
415 }
416 }
417 }
418
d5112468 419 function catchupFeed() {
e6532439
AD
420 $feed_id = clean($_REQUEST['feed_id']);
421 $is_cat = clean($_REQUEST['is_cat']) == "true";
422 $mode = clean($_REQUEST['mode']);
423 $search_query = clean($_REQUEST['search_query']);
424 $search_lang = clean($_REQUEST['search_lang']);
d5112468 425
86a8351c 426 Feeds::catchup_feed($feed_id, $is_cat, false, $mode, [$search_query, $search_lang]);
d5112468
AD
427
428 print json_encode(array("message" => "UPDATE_COUNTERS"));
429 }
430
7d8f5657 431 function setpanelmode() {
e6532439 432 $wide = (int) clean($_REQUEST["wide"]);
7d8f5657 433
f03701fe 434 setcookie("ttrss_widescreen", $wide,
e57a1507 435 time() + COOKIE_LIFETIME_LONG);
7d8f5657
AD
436
437 print json_encode(array("wide" => $wide));
438 }
439
fbe7cb0a 440 static function updaterandomfeed_real() {
113c3dec 441
8b83bf5f
AD
442 // Test if the feed need a update (update interval exceded).
443 if (DB_TYPE == "pgsql") {
444 $update_limit_qpart = "AND ((
445 ttrss_feeds.update_interval = 0
446 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_user_prefs.value || ' minutes') AS INTERVAL)
447 ) OR (
448 ttrss_feeds.update_interval > 0
449 AND ttrss_feeds.last_updated < NOW() - CAST((ttrss_feeds.update_interval || ' minutes') AS INTERVAL)
450 ) OR ttrss_feeds.last_updated IS NULL
451 OR last_updated = '1970-01-01 00:00:00')";
452 } else {
453 $update_limit_qpart = "AND ((
454 ttrss_feeds.update_interval = 0
455 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL CONVERT(ttrss_user_prefs.value, SIGNED INTEGER) MINUTE)
456 ) OR (
457 ttrss_feeds.update_interval > 0
458 AND ttrss_feeds.last_updated < DATE_SUB(NOW(), INTERVAL ttrss_feeds.update_interval MINUTE)
459 ) OR ttrss_feeds.last_updated IS NULL
460 OR last_updated = '1970-01-01 00:00:00')";
461 }
462
463 // Test if feed is currently being updated by another process.
464 if (DB_TYPE == "pgsql") {
465 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < NOW() - INTERVAL '5 minutes')";
466 } else {
467 $updstart_thresh_qpart = "AND (ttrss_feeds.last_update_started IS NULL OR ttrss_feeds.last_update_started < DATE_SUB(NOW(), INTERVAL 5 MINUTE))";
468 }
469
470 $random_qpart = sql_random_function();
471
fbe7cb0a
AD
472 $pdo = Db::pdo();
473
e1f1857d
AD
474 // we could be invoked from public.php with no active session
475 if ($_SESSION["uid"]) {
fbe7cb0a 476 $owner_check_qpart = "AND ttrss_feeds.owner_uid = ".$pdo->quote($_SESSION["uid"]);
e1f1857d
AD
477 } else {
478 $owner_check_qpart = "";
479 }
480
8b83bf5f 481 // We search for feed needing update.
fbe7cb0a 482 $res = $pdo->query("SELECT ttrss_feeds.feed_url,ttrss_feeds.id
8b83bf5f
AD
483 FROM
484 ttrss_feeds, ttrss_users, ttrss_user_prefs
485 WHERE
486 ttrss_feeds.owner_uid = ttrss_users.id
487 AND ttrss_users.id = ttrss_user_prefs.owner_uid
488 AND ttrss_user_prefs.pref_name = 'DEFAULT_UPDATE_INTERVAL'
e1f1857d
AD
489 $owner_check_qpart
490 $update_limit_qpart
491 $updstart_thresh_qpart
8b83bf5f
AD
492 ORDER BY $random_qpart LIMIT 30");
493
8b83bf5f
AD
494 $num_updated = 0;
495
496 $tstart = time();
497
fbe7cb0a 498 while ($line = $res->fetch()) {
8b83bf5f
AD
499 $feed_id = $line["id"];
500
6b1a4ecd 501 if (time() - $tstart < ini_get("max_execution_time") * 0.7) {
e6c886bf 502 RSSUtils::update_rss_feed($feed_id, true);
8b83bf5f
AD
503 ++$num_updated;
504 } else {
505 break;
506 }
507 }
508
cda55d67 509 // Purge orphans and cleanup tags
a230bf88 510 Article::purge_orphans();
9b736a20 511 //cleanup_tags(14, 50000);
cda55d67 512
8b83bf5f
AD
513 if ($num_updated > 0) {
514 print json_encode(array("message" => "UPDATE_COUNTERS",
515 "num_updated" => $num_updated));
516 } else {
517 print json_encode(array("message" => "NOTHING_TO_UPDATE"));
518 }
519
520 }
521
113c3dec 522 function updaterandomfeed() {
fbe7cb0a 523 RPC::updaterandomfeed_real();
113c3dec
AD
524 }
525
a42c55f0 526 private function markArticlesById($ids, $cmode) {
87d7e850 527
fbe7cb0a 528 $ids_qmarks = arr_qmarks($ids);
87d7e850
AD
529
530 if ($cmode == 0) {
fbe7cb0a
AD
531 $sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
532 marked = false, last_marked = NOW()
533 WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
87d7e850 534 } else if ($cmode == 1) {
fbe7cb0a
AD
535 $sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
536 marked = true, last_marked = NOW()
537 WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
87d7e850 538 } else {
fbe7cb0a
AD
539 $sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
540 marked = NOT marked,last_marked = NOW()
541 WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
87d7e850 542 }
fbe7cb0a
AD
543
544 $sth->execute(array_merge($ids, [$_SESSION['uid']]));
87d7e850
AD
545 }
546
a42c55f0 547 private function publishArticlesById($ids, $cmode) {
87d7e850 548
fbe7cb0a 549 $ids_qmarks = arr_qmarks($ids);
87d7e850
AD
550
551 if ($cmode == 0) {
fbe7cb0a
AD
552 $sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
553 published = false, last_published = NOW()
554 WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
87d7e850 555 } else if ($cmode == 1) {
fbe7cb0a
AD
556 $sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
557 published = true, last_published = NOW()
558 WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
87d7e850 559 } else {
fbe7cb0a
AD
560 $sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
561 published = NOT published,last_published = NOW()
562 WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
87d7e850 563 }
fbe7cb0a
AD
564
565 $sth->execute(array_merge($ids, [$_SESSION['uid']]));
87d7e850
AD
566 }
567
5defc29f 568 function getlinktitlebyid() {
e6532439 569 $id = clean($_REQUEST['id']);
7fc2e87e 570
fbe7cb0a
AD
571 $sth = $this->pdo->prepare("SELECT link, title FROM ttrss_entries, ttrss_user_entries
572 WHERE ref_id = ? AND ref_id = id AND owner_uid = ?");
573 $sth->execute([$id, $_SESSION['uid']]);
7fc2e87e 574
fbe7cb0a
AD
575 if ($row = $sth->fetch()) {
576 $link = $row['link'];
577 $title = $row['title'];
7fc2e87e 578
5defc29f 579 echo json_encode(array("link" => $link, "title" => $title));
7fc2e87e
AD
580 } else {
581 echo json_encode(array("error" => "ARTICLE_NOT_FOUND"));
582 }
583 }
584
f66492d3 585 function log() {
e6532439
AD
586 $msg = clean($_REQUEST['msg']);
587 $file = basename(clean($_REQUEST['file']));
588 $line = (int) clean($_REQUEST['line']);
589 $context = clean($_REQUEST['context']);
f66492d3 590
270c0a00 591 if ($msg) {
f66492d3 592 Logger::get()->log_error(E_USER_WARNING,
270c0a00 593 $msg, 'client-js:' . $file, $line, $context);
f66492d3 594
270c0a00
AD
595 echo json_encode(array("message" => "HOST_ERROR_LOGGED"));
596 } else {
597 echo json_encode(array("error" => "MESSAGE_NOT_FOUND"));
598 }
f66492d3
AD
599
600 }
ea79a0e0 601}