]> git.wh0rd.org - tt-rss.git/blob - classes/api.php
Merge branch 'add_feed_id_to_subscribeToFeed_response' into 'master'
[tt-rss.git] / classes / api.php
1 <?php
2
3 class API extends Handler {
4
5 const API_LEVEL = 14;
6
7 const STATUS_OK = 0;
8 const STATUS_ERR = 1;
9
10 private $seq;
11
12 function before($method) {
13 if (parent::before($method)) {
14 header("Content-Type: text/json");
15
16 if (!$_SESSION["uid"] && $method != "login" && $method != "isloggedin") {
17 $this->wrap(self::STATUS_ERR, array("error" => 'NOT_LOGGED_IN'));
18 return false;
19 }
20
21 if ($_SESSION["uid"] && $method != "logout" && !get_pref('ENABLE_API_ACCESS')) {
22 $this->wrap(self::STATUS_ERR, array("error" => 'API_DISABLED'));
23 return false;
24 }
25
26 $this->seq = (int) $_REQUEST['seq'];
27
28 return true;
29 }
30 return false;
31 }
32
33 function wrap($status, $reply) {
34 print json_encode(array("seq" => $this->seq,
35 "status" => $status,
36 "content" => $reply));
37 }
38
39 function getVersion() {
40 $rv = array("version" => VERSION);
41 $this->wrap(self::STATUS_OK, $rv);
42 }
43
44 function getApiLevel() {
45 $rv = array("level" => self::API_LEVEL);
46 $this->wrap(self::STATUS_OK, $rv);
47 }
48
49 function login() {
50 @session_destroy();
51 @session_start();
52
53 $login = $this->dbh->escape_string($_REQUEST["user"]);
54 $password = $_REQUEST["password"];
55 $password_base64 = base64_decode($_REQUEST["password"]);
56
57 if (SINGLE_USER_MODE) $login = "admin";
58
59 $result = $this->dbh->query("SELECT id FROM ttrss_users WHERE login = '$login'");
60
61 if ($this->dbh->num_rows($result) != 0) {
62 $uid = $this->dbh->fetch_result($result, 0, "id");
63 } else {
64 $uid = 0;
65 }
66
67 if (!$uid) {
68 $this->wrap(self::STATUS_ERR, array("error" => "LOGIN_ERROR"));
69 return;
70 }
71
72 if (get_pref("ENABLE_API_ACCESS", $uid)) {
73 if (authenticate_user($login, $password)) { // try login with normal password
74 $this->wrap(self::STATUS_OK, array("session_id" => session_id(),
75 "api_level" => self::API_LEVEL));
76 } else if (authenticate_user($login, $password_base64)) { // else try with base64_decoded password
77 $this->wrap(self::STATUS_OK, array("session_id" => session_id(),
78 "api_level" => self::API_LEVEL));
79 } else { // else we are not logged in
80 user_error("Failed login attempt for $login from {$_SERVER['REMOTE_ADDR']}", E_USER_WARNING);
81 $this->wrap(self::STATUS_ERR, array("error" => "LOGIN_ERROR"));
82 }
83 } else {
84 $this->wrap(self::STATUS_ERR, array("error" => "API_DISABLED"));
85 }
86
87 }
88
89 function logout() {
90 logout_user();
91 $this->wrap(self::STATUS_OK, array("status" => "OK"));
92 }
93
94 function isLoggedIn() {
95 $this->wrap(self::STATUS_OK, array("status" => $_SESSION["uid"] != ''));
96 }
97
98 function getUnread() {
99 $feed_id = $this->dbh->escape_string($_REQUEST["feed_id"]);
100 $is_cat = $this->dbh->escape_string($_REQUEST["is_cat"]);
101
102 if ($feed_id) {
103 $this->wrap(self::STATUS_OK, array("unread" => getFeedUnread($feed_id, $is_cat)));
104 } else {
105 $this->wrap(self::STATUS_OK, array("unread" => getGlobalUnread()));
106 }
107 }
108
109 /* Method added for ttrss-reader for Android */
110 function getCounters() {
111 $this->wrap(self::STATUS_OK, getAllCounters());
112 }
113
114 function getFeeds() {
115 $cat_id = $this->dbh->escape_string($_REQUEST["cat_id"]);
116 $unread_only = sql_bool_to_bool($_REQUEST["unread_only"]);
117 $limit = (int) $this->dbh->escape_string($_REQUEST["limit"]);
118 $offset = (int) $this->dbh->escape_string($_REQUEST["offset"]);
119 $include_nested = sql_bool_to_bool($_REQUEST["include_nested"]);
120
121 $feeds = $this->api_get_feeds($cat_id, $unread_only, $limit, $offset, $include_nested);
122
123 $this->wrap(self::STATUS_OK, $feeds);
124 }
125
126 function getCategories() {
127 $unread_only = sql_bool_to_bool($_REQUEST["unread_only"]);
128 $enable_nested = sql_bool_to_bool($_REQUEST["enable_nested"]);
129 $include_empty = sql_bool_to_bool($_REQUEST['include_empty']);
130
131 // TODO do not return empty categories, return Uncategorized and standard virtual cats
132
133 if ($enable_nested)
134 $nested_qpart = "parent_cat IS NULL";
135 else
136 $nested_qpart = "true";
137
138 $result = $this->dbh->query("SELECT
139 id, title, order_id, (SELECT COUNT(id) FROM
140 ttrss_feeds WHERE
141 ttrss_feed_categories.id IS NOT NULL AND cat_id = ttrss_feed_categories.id) AS num_feeds,
142 (SELECT COUNT(id) FROM
143 ttrss_feed_categories AS c2 WHERE
144 c2.parent_cat = ttrss_feed_categories.id) AS num_cats
145 FROM ttrss_feed_categories
146 WHERE $nested_qpart AND owner_uid = " .
147 $_SESSION["uid"]);
148
149 $cats = array();
150
151 while ($line = $this->dbh->fetch_assoc($result)) {
152 if ($include_empty || $line["num_feeds"] > 0 || $line["num_cats"] > 0) {
153 $unread = getFeedUnread($line["id"], true);
154
155 if ($enable_nested)
156 $unread += getCategoryChildrenUnread($line["id"]);
157
158 if ($unread || !$unread_only) {
159 array_push($cats, array("id" => $line["id"],
160 "title" => $line["title"],
161 "unread" => $unread,
162 "order_id" => (int) $line["order_id"],
163 ));
164 }
165 }
166 }
167
168 foreach (array(-2,-1,0) as $cat_id) {
169 if ($include_empty || !$this->isCategoryEmpty($cat_id)) {
170 $unread = getFeedUnread($cat_id, true);
171
172 if ($unread || !$unread_only) {
173 array_push($cats, array("id" => $cat_id,
174 "title" => getCategoryTitle($cat_id),
175 "unread" => $unread));
176 }
177 }
178 }
179
180 $this->wrap(self::STATUS_OK, $cats);
181 }
182
183 function getHeadlines() {
184 $feed_id = $this->dbh->escape_string($_REQUEST["feed_id"]);
185 if ($feed_id != "") {
186
187 if (is_numeric($feed_id)) $feed_id = (int) $feed_id;
188
189 $limit = (int)$this->dbh->escape_string($_REQUEST["limit"]);
190
191 if (!$limit || $limit >= 200) $limit = 200;
192
193 $offset = (int)$this->dbh->escape_string($_REQUEST["skip"]);
194 $filter = $this->dbh->escape_string($_REQUEST["filter"]);
195 $is_cat = sql_bool_to_bool($_REQUEST["is_cat"]);
196 $show_excerpt = sql_bool_to_bool($_REQUEST["show_excerpt"]);
197 $show_content = sql_bool_to_bool($_REQUEST["show_content"]);
198 /* all_articles, unread, adaptive, marked, updated */
199 $view_mode = $this->dbh->escape_string($_REQUEST["view_mode"]);
200 $include_attachments = sql_bool_to_bool($_REQUEST["include_attachments"]);
201 $since_id = (int)$this->dbh->escape_string($_REQUEST["since_id"]);
202 $include_nested = sql_bool_to_bool($_REQUEST["include_nested"]);
203 $sanitize_content = !isset($_REQUEST["sanitize"]) ||
204 sql_bool_to_bool($_REQUEST["sanitize"]);
205 $force_update = sql_bool_to_bool($_REQUEST["force_update"]);
206 $has_sandbox = sql_bool_to_bool($_REQUEST["has_sandbox"]);
207 $excerpt_length = (int)$this->dbh->escape_string($_REQUEST["excerpt_length"]);
208 $check_first_id = (int)$this->dbh->escape_string($_REQUEST["check_first_id"]);
209 $include_header = sql_bool_to_bool($_REQUEST["include_header"]);
210
211 $_SESSION['hasSandbox'] = $has_sandbox;
212
213 $skip_first_id_check = false;
214
215 $override_order = false;
216 switch ($_REQUEST["order_by"]) {
217 case "title":
218 $override_order = "ttrss_entries.title";
219 break;
220 case "date_reverse":
221 $override_order = "score DESC, date_entered, updated";
222 $skip_first_id_check = true;
223 break;
224 case "feed_dates":
225 $override_order = "updated DESC";
226 break;
227 }
228
229 /* do not rely on params below */
230
231 $search = $this->dbh->escape_string($_REQUEST["search"]);
232
233 list($headlines, $headlines_header) = $this->api_get_headlines($feed_id, $limit, $offset,
234 $filter, $is_cat, $show_excerpt, $show_content, $view_mode, $override_order,
235 $include_attachments, $since_id, $search,
236 $include_nested, $sanitize_content, $force_update, $excerpt_length, $check_first_id, $skip_first_id_check);
237
238 if ($include_header) {
239 $this->wrap(self::STATUS_OK, array($headlines_header, $headlines));
240 } else {
241 $this->wrap(self::STATUS_OK, $headlines);
242 }
243 } else {
244 $this->wrap(self::STATUS_ERR, array("error" => 'INCORRECT_USAGE'));
245 }
246 }
247
248 function updateArticle() {
249 $article_ids = array_filter(explode(",", $this->dbh->escape_string($_REQUEST["article_ids"])), is_numeric);
250 $mode = (int) $this->dbh->escape_string($_REQUEST["mode"]);
251 $data = $this->dbh->escape_string($_REQUEST["data"]);
252 $field_raw = (int)$this->dbh->escape_string($_REQUEST["field"]);
253
254 $field = "";
255 $set_to = "";
256
257 switch ($field_raw) {
258 case 0:
259 $field = "marked";
260 $additional_fields = ",last_marked = NOW()";
261 break;
262 case 1:
263 $field = "published";
264 $additional_fields = ",last_published = NOW()";
265 break;
266 case 2:
267 $field = "unread";
268 $additional_fields = ",last_read = NOW()";
269 break;
270 case 3:
271 $field = "note";
272 };
273
274 switch ($mode) {
275 case 1:
276 $set_to = "true";
277 break;
278 case 0:
279 $set_to = "false";
280 break;
281 case 2:
282 $set_to = "NOT $field";
283 break;
284 }
285
286 if ($field == "note") $set_to = "'$data'";
287
288 if ($field && $set_to && count($article_ids) > 0) {
289
290 $article_ids = join(", ", $article_ids);
291
292 $result = $this->dbh->query("UPDATE ttrss_user_entries SET $field = $set_to $additional_fields WHERE ref_id IN ($article_ids) AND owner_uid = " . $_SESSION["uid"]);
293
294 $num_updated = $this->dbh->affected_rows($result);
295
296 if ($num_updated > 0 && $field == "unread") {
297 $result = $this->dbh->query("SELECT DISTINCT feed_id FROM ttrss_user_entries
298 WHERE ref_id IN ($article_ids)");
299
300 while ($line = $this->dbh->fetch_assoc($result)) {
301 ccache_update($line["feed_id"], $_SESSION["uid"]);
302 }
303 }
304
305 if ($num_updated > 0 && $field == "published") {
306 if (PUBSUBHUBBUB_HUB) {
307 $rss_link = get_self_url_prefix() .
308 "/public.php?op=rss&id=-2&key=" .
309 get_feed_access_key(-2, false);
310
311 $p = new Publisher(PUBSUBHUBBUB_HUB);
312 $pubsub_result = $p->publish_update($rss_link);
313 }
314 }
315
316 $this->wrap(self::STATUS_OK, array("status" => "OK",
317 "updated" => $num_updated));
318
319 } else {
320 $this->wrap(self::STATUS_ERR, array("error" => 'INCORRECT_USAGE'));
321 }
322
323 }
324
325 function getArticle() {
326
327 $article_id = join(",", array_filter(explode(",", $this->dbh->escape_string($_REQUEST["article_id"])), is_numeric));
328 $sanitize_content = !isset($_REQUEST["sanitize"]) ||
329 sql_bool_to_bool($_REQUEST["sanitize"]);
330
331 if ($article_id) {
332
333 $query = "SELECT id,guid,title,link,content,feed_id,comments,int_id,
334 marked,unread,published,score,note,lang,
335 ".SUBSTRING_FOR_DATE."(updated,1,16) as updated,
336 author,(SELECT title FROM ttrss_feeds WHERE id = feed_id) AS feed_title,
337 (SELECT site_url FROM ttrss_feeds WHERE id = feed_id) AS site_url,
338 (SELECT hide_images FROM ttrss_feeds WHERE id = feed_id) AS hide_images
339 FROM ttrss_entries,ttrss_user_entries
340 WHERE id IN ($article_id) AND ref_id = id AND owner_uid = " .
341 $_SESSION["uid"] ;
342
343 $result = $this->dbh->query($query);
344
345 $articles = array();
346
347 if ($this->dbh->num_rows($result) != 0) {
348
349 while ($line = $this->dbh->fetch_assoc($result)) {
350
351 $attachments = get_article_enclosures($line['id']);
352
353 $article = array(
354 "id" => $line["id"],
355 "guid" => $line["guid"],
356 "title" => $line["title"],
357 "link" => $line["link"],
358 "labels" => get_article_labels($line['id']),
359 "unread" => sql_bool_to_bool($line["unread"]),
360 "marked" => sql_bool_to_bool($line["marked"]),
361 "published" => sql_bool_to_bool($line["published"]),
362 "comments" => $line["comments"],
363 "author" => $line["author"],
364 "updated" => (int) strtotime($line["updated"]),
365 "feed_id" => $line["feed_id"],
366 "attachments" => $attachments,
367 "score" => (int)$line["score"],
368 "feed_title" => $line["feed_title"],
369 "note" => $line["note"],
370 "lang" => $line["lang"]
371 );
372
373 if ($sanitize_content) {
374 $article["content"] = sanitize(
375 $line["content"],
376 sql_bool_to_bool($line['hide_images']),
377 false, $line["site_url"], false, $line["id"]);
378 } else {
379 $article["content"] = $line["content"];
380 }
381
382 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_RENDER_ARTICLE_API) as $p) {
383 $article = $p->hook_render_article_api(array("article" => $article));
384 }
385
386
387 array_push($articles, $article);
388
389 }
390 }
391
392 $this->wrap(self::STATUS_OK, $articles);
393 } else {
394 $this->wrap(self::STATUS_ERR, array("error" => 'INCORRECT_USAGE'));
395 }
396 }
397
398 function getConfig() {
399 $config = array(
400 "icons_dir" => ICONS_DIR,
401 "icons_url" => ICONS_URL);
402
403 $config["daemon_is_running"] = file_is_locked("update_daemon.lock");
404
405 $result = $this->dbh->query("SELECT COUNT(*) AS cf FROM
406 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
407
408 $num_feeds = $this->dbh->fetch_result($result, 0, "cf");
409
410 $config["num_feeds"] = (int)$num_feeds;
411
412 $this->wrap(self::STATUS_OK, $config);
413 }
414
415 function updateFeed() {
416 require_once "include/rssfuncs.php";
417
418 $feed_id = (int) $this->dbh->escape_string($_REQUEST["feed_id"]);
419
420 if (!ini_get("open_basedir")) {
421 update_rss_feed($feed_id, true);
422 }
423
424 $this->wrap(self::STATUS_OK, array("status" => "OK"));
425 }
426
427 function catchupFeed() {
428 $feed_id = $this->dbh->escape_string($_REQUEST["feed_id"]);
429 $is_cat = $this->dbh->escape_string($_REQUEST["is_cat"]);
430
431 catchup_feed($feed_id, $is_cat);
432
433 $this->wrap(self::STATUS_OK, array("status" => "OK"));
434 }
435
436 function getPref() {
437 $pref_name = $this->dbh->escape_string($_REQUEST["pref_name"]);
438
439 $this->wrap(self::STATUS_OK, array("value" => get_pref($pref_name)));
440 }
441
442 function getLabels() {
443 //$article_ids = array_filter(explode(",", $this->dbh->escape_string($_REQUEST["article_ids"])), is_numeric);
444
445 $article_id = (int)$_REQUEST['article_id'];
446
447 $rv = array();
448
449 $result = $this->dbh->query("SELECT id, caption, fg_color, bg_color
450 FROM ttrss_labels2
451 WHERE owner_uid = '".$_SESSION['uid']."' ORDER BY caption");
452
453 if ($article_id)
454 $article_labels = get_article_labels($article_id);
455 else
456 $article_labels = array();
457
458 while ($line = $this->dbh->fetch_assoc($result)) {
459
460 $checked = false;
461 foreach ($article_labels as $al) {
462 if (feed_to_label_id($al[0]) == $line['id']) {
463 $checked = true;
464 break;
465 }
466 }
467
468 array_push($rv, array(
469 "id" => (int)label_to_feed_id($line['id']),
470 "caption" => $line['caption'],
471 "fg_color" => $line['fg_color'],
472 "bg_color" => $line['bg_color'],
473 "checked" => $checked));
474 }
475
476 $this->wrap(self::STATUS_OK, $rv);
477 }
478
479 function setArticleLabel() {
480
481 $article_ids = array_filter(explode(",", $this->dbh->escape_string($_REQUEST["article_ids"])), is_numeric);
482 $label_id = (int) $this->dbh->escape_string($_REQUEST['label_id']);
483 $assign = (bool) $this->dbh->escape_string($_REQUEST['assign']) == "true";
484
485 $label = $this->dbh->escape_string(label_find_caption(
486 feed_to_label_id($label_id), $_SESSION["uid"]));
487
488 $num_updated = 0;
489
490 if ($label) {
491
492 foreach ($article_ids as $id) {
493
494 if ($assign)
495 label_add_article($id, $label, $_SESSION["uid"]);
496 else
497 label_remove_article($id, $label, $_SESSION["uid"]);
498
499 ++$num_updated;
500
501 }
502 }
503
504 $this->wrap(self::STATUS_OK, array("status" => "OK",
505 "updated" => $num_updated));
506
507 }
508
509 function index($method) {
510 $plugin = PluginHost::getInstance()->get_api_method(strtolower($method));
511
512 if ($plugin && method_exists($plugin, $method)) {
513 $reply = $plugin->$method();
514
515 $this->wrap($reply[0], $reply[1]);
516
517 } else {
518 $this->wrap(self::STATUS_ERR, array("error" => 'UNKNOWN_METHOD', "method" => $method));
519 }
520 }
521
522 function shareToPublished() {
523 $title = $this->dbh->escape_string(strip_tags($_REQUEST["title"]));
524 $url = $this->dbh->escape_string(strip_tags($_REQUEST["url"]));
525 $content = $this->dbh->escape_string(strip_tags($_REQUEST["content"]));
526
527 if (Article::create_published_article($title, $url, $content, "", $_SESSION["uid"])) {
528 $this->wrap(self::STATUS_OK, array("status" => 'OK'));
529 } else {
530 $this->wrap(self::STATUS_ERR, array("error" => 'Publishing failed'));
531 }
532 }
533
534 static function api_get_feeds($cat_id, $unread_only, $limit, $offset, $include_nested = false) {
535
536 $feeds = array();
537
538 /* Labels */
539
540 if ($cat_id == -4 || $cat_id == -2) {
541 $counters = getLabelCounters(true);
542
543 foreach (array_values($counters) as $cv) {
544
545 $unread = $cv["counter"];
546
547 if ($unread || !$unread_only) {
548
549 $row = array(
550 "id" => (int) $cv["id"],
551 "title" => $cv["description"],
552 "unread" => $cv["counter"],
553 "cat_id" => -2,
554 );
555
556 array_push($feeds, $row);
557 }
558 }
559 }
560
561 /* Virtual feeds */
562
563 if ($cat_id == -4 || $cat_id == -1) {
564 foreach (array(-1, -2, -3, -4, -6, 0) as $i) {
565 $unread = getFeedUnread($i);
566
567 if ($unread || !$unread_only) {
568 $title = getFeedTitle($i);
569
570 $row = array(
571 "id" => $i,
572 "title" => $title,
573 "unread" => $unread,
574 "cat_id" => -1,
575 );
576 array_push($feeds, $row);
577 }
578
579 }
580 }
581
582 /* Child cats */
583
584 if ($include_nested && $cat_id) {
585 $result = db_query("SELECT
586 id, title FROM ttrss_feed_categories
587 WHERE parent_cat = '$cat_id' AND owner_uid = " . $_SESSION["uid"] .
588 " ORDER BY id, title");
589
590 while ($line = db_fetch_assoc($result)) {
591 $unread = getFeedUnread($line["id"], true) +
592 getCategoryChildrenUnread($line["id"]);
593
594 if ($unread || !$unread_only) {
595 $row = array(
596 "id" => (int) $line["id"],
597 "title" => $line["title"],
598 "unread" => $unread,
599 "is_cat" => true,
600 );
601 array_push($feeds, $row);
602 }
603 }
604 }
605
606 /* Real feeds */
607
608 if ($limit) {
609 $limit_qpart = "LIMIT $limit OFFSET $offset";
610 } else {
611 $limit_qpart = "";
612 }
613
614 if ($cat_id == -4 || $cat_id == -3) {
615 $result = db_query("SELECT
616 id, feed_url, cat_id, title, order_id, ".
617 SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
618 FROM ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"] .
619 " ORDER BY cat_id, title " . $limit_qpart);
620 } else {
621
622 if ($cat_id)
623 $cat_qpart = "cat_id = '$cat_id'";
624 else
625 $cat_qpart = "cat_id IS NULL";
626
627 $result = db_query("SELECT
628 id, feed_url, cat_id, title, order_id, ".
629 SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
630 FROM ttrss_feeds WHERE
631 $cat_qpart AND owner_uid = " . $_SESSION["uid"] .
632 " ORDER BY cat_id, title " . $limit_qpart);
633 }
634
635 while ($line = db_fetch_assoc($result)) {
636
637 $unread = getFeedUnread($line["id"]);
638
639 $has_icon = feed_has_icon($line['id']);
640
641 if ($unread || !$unread_only) {
642
643 $row = array(
644 "feed_url" => $line["feed_url"],
645 "title" => $line["title"],
646 "id" => (int)$line["id"],
647 "unread" => (int)$unread,
648 "has_icon" => $has_icon,
649 "cat_id" => (int)$line["cat_id"],
650 "last_updated" => (int) strtotime($line["last_updated"]),
651 "order_id" => (int) $line["order_id"],
652 );
653
654 array_push($feeds, $row);
655 }
656 }
657
658 return $feeds;
659 }
660
661 static function api_get_headlines($feed_id, $limit, $offset,
662 $filter, $is_cat, $show_excerpt, $show_content, $view_mode, $order,
663 $include_attachments, $since_id,
664 $search = "", $include_nested = false, $sanitize_content = true,
665 $force_update = false, $excerpt_length = 100, $check_first_id = false, $skip_first_id_check = false) {
666
667 if ($force_update && $feed_id > 0 && is_numeric($feed_id)) {
668 // Update the feed if required with some basic flood control
669
670 $result = db_query(
671 "SELECT cache_images,".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
672 FROM ttrss_feeds WHERE id = '$feed_id'");
673
674 if (db_num_rows($result) != 0) {
675 $last_updated = strtotime(db_fetch_result($result, 0, "last_updated"));
676 $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
677
678 if (!$cache_images && time() - $last_updated > 120) {
679 include "rssfuncs.php";
680 update_rss_feed($feed_id, true, true);
681 } else {
682 db_query("UPDATE ttrss_feeds SET last_updated = '1970-01-01', last_update_started = '1970-01-01'
683 WHERE id = '$feed_id'");
684 }
685 }
686 }
687
688 /*$qfh_ret = queryFeedHeadlines($feed_id, $limit,
689 $view_mode, $is_cat, $search, false,
690 $order, $offset, 0, false, $since_id, $include_nested);*/
691
692 //function queryFeedHeadlines($feed, $limit,
693 // $view_mode, $cat_view, $search, $search_mode,
694 // $override_order = false, $offset = 0, $owner_uid = 0, $filter = false, $since_id = 0, $include_children = false,
695 // $ignore_vfeed_group = false, $override_strategy = false, $override_vfeed = false, $start_ts = false, $check_top_id = false) {
696
697 $params = array(
698 "feed" => $feed_id,
699 "limit" => $limit,
700 "view_mode" => $view_mode,
701 "cat_view" => $is_cat,
702 "search" => $search,
703 "override_order" => $order,
704 "offset" => $offset,
705 "since_id" => $since_id,
706 "include_children" => $include_nested,
707 "check_first_id" => $check_first_id,
708 "skip_first_id_check" => $skip_first_id_check
709 );
710
711 $qfh_ret = queryFeedHeadlines($params);
712
713 $result = $qfh_ret[0];
714 $feed_title = $qfh_ret[1];
715 $first_id = $qfh_ret[6];
716
717 $headlines = array();
718
719 $headlines_header = array(
720 'id' => $feed_id,
721 'first_id' => $first_id,
722 'is_cat' => $is_cat);
723
724 if (!is_numeric($result)) {
725 while ($line = db_fetch_assoc($result)) {
726 $line["content_preview"] = truncate_string(strip_tags($line["content"]), $excerpt_length);
727 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
728 $line = $p->hook_query_headlines($line, $excerpt_length, true);
729 }
730
731 $is_updated = ($line["last_read"] == "" &&
732 ($line["unread"] != "t" && $line["unread"] != "1"));
733
734 $tags = explode(",", $line["tag_cache"]);
735
736 $label_cache = $line["label_cache"];
737 $labels = false;
738
739 if ($label_cache) {
740 $label_cache = json_decode($label_cache, true);
741
742 if ($label_cache) {
743 if ($label_cache["no-labels"] == 1)
744 $labels = array();
745 else
746 $labels = $label_cache;
747 }
748 }
749
750 if (!is_array($labels)) $labels = get_article_labels($line["id"]);
751
752 //if (!$tags) $tags = get_article_tags($line["id"]);
753 //if (!$labels) $labels = get_article_labels($line["id"]);
754
755 $headline_row = array(
756 "id" => (int)$line["id"],
757 "guid" => $line["guid"],
758 "unread" => sql_bool_to_bool($line["unread"]),
759 "marked" => sql_bool_to_bool($line["marked"]),
760 "published" => sql_bool_to_bool($line["published"]),
761 "updated" => (int)strtotime($line["updated"]),
762 "is_updated" => $is_updated,
763 "title" => $line["title"],
764 "link" => $line["link"],
765 "feed_id" => $line["feed_id"],
766 "tags" => $tags,
767 );
768
769 if ($include_attachments)
770 $headline_row['attachments'] = get_article_enclosures(
771 $line['id']);
772
773 if ($show_excerpt)
774 $headline_row["excerpt"] = $line["content_preview"];
775
776 if ($show_content) {
777
778 if ($sanitize_content) {
779 $headline_row["content"] = sanitize(
780 $line["content"],
781 sql_bool_to_bool($line['hide_images']),
782 false, $line["site_url"], false, $line["id"]);
783 } else {
784 $headline_row["content"] = $line["content"];
785 }
786 }
787
788 // unify label output to ease parsing
789 if ($labels["no-labels"] == 1) $labels = array();
790
791 $headline_row["labels"] = $labels;
792
793 $headline_row["feed_title"] = $line["feed_title"] ? $line["feed_title"] :
794 $feed_title;
795
796 $headline_row["comments_count"] = (int)$line["num_comments"];
797 $headline_row["comments_link"] = $line["comments"];
798
799 $headline_row["always_display_attachments"] = sql_bool_to_bool($line["always_display_enclosures"]);
800
801 $headline_row["author"] = $line["author"];
802
803 $headline_row["score"] = (int)$line["score"];
804 $headline_row["note"] = $line["note"];
805 $headline_row["lang"] = $line["lang"];
806
807 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_RENDER_ARTICLE_API) as $p) {
808 $headline_row = $p->hook_render_article_api(array("headline" => $headline_row));
809 }
810
811 array_push($headlines, $headline_row);
812 }
813 } else if (is_numeric($result) && $result == -1) {
814 $headlines_header['first_id_changed'] = true;
815 }
816
817 return array($headlines, $headlines_header);
818 }
819
820 function unsubscribeFeed() {
821 $feed_id = (int) $this->dbh->escape_string($_REQUEST["feed_id"]);
822
823 $result = $this->dbh->query("SELECT id FROM ttrss_feeds WHERE
824 id = '$feed_id' AND owner_uid = ".$_SESSION["uid"]);
825
826 if ($this->dbh->num_rows($result) != 0) {
827 Pref_Feeds::remove_feed($feed_id, $_SESSION["uid"]);
828 $this->wrap(self::STATUS_OK, array("status" => "OK"));
829 } else {
830 $this->wrap(self::STATUS_ERR, array("error" => "FEED_NOT_FOUND"));
831 }
832 }
833
834 function subscribeToFeed() {
835 $feed_url = $this->dbh->escape_string($_REQUEST["feed_url"]);
836 $category_id = (int) $this->dbh->escape_string($_REQUEST["category_id"]);
837 $login = $this->dbh->escape_string($_REQUEST["login"]);
838 $password = $this->dbh->escape_string($_REQUEST["password"]);
839
840 if ($feed_url) {
841 $rc = subscribe_to_feed($feed_url, $category_id, $login, $password);
842
843 $this->wrap(self::STATUS_OK, array("status" => $rc));
844 } else {
845 $this->wrap(self::STATUS_ERR, array("error" => 'INCORRECT_USAGE'));
846 }
847 }
848
849 function getFeedTree() {
850 $include_empty = sql_bool_to_bool($_REQUEST['include_empty']);
851
852 $pf = new Pref_Feeds($_REQUEST);
853
854 $_REQUEST['mode'] = 2;
855 $_REQUEST['force_show_empty'] = $include_empty;
856
857 if ($pf){
858 $data = $pf->makefeedtree();
859 $this->wrap(self::STATUS_OK, array("categories" => $data));
860 } else {
861 $this->wrap(self::STATUS_ERR, array("error" =>
862 'UNABLE_TO_INSTANTIATE_OBJECT'));
863 }
864
865 }
866
867 // only works for labels or uncategorized for the time being
868 private function isCategoryEmpty($id) {
869
870 if ($id == -2) {
871 $result = $this->dbh->query("SELECT COUNT(*) AS count FROM ttrss_labels2
872 WHERE owner_uid = " . $_SESSION["uid"]);
873
874 return $this->dbh->fetch_result($result, 0, "count") == 0;
875
876 } else if ($id == 0) {
877 $result = $this->dbh->query("SELECT COUNT(*) AS count FROM ttrss_feeds
878 WHERE cat_id IS NULL AND owner_uid = " . $_SESSION["uid"]);
879
880 return $this->dbh->fetch_result($result, 0, "count") == 0;
881
882 }
883
884 return false;
885 }
886
887
888 }
889
890 ?>