3 class API extends Handler {
12 function before($method) {
13 if (parent::before($method)) {
14 header("Content-Type: text/json");
16 if (!$_SESSION["uid"] && $method != "login" && $method != "isloggedin") {
17 $this->wrap(self::STATUS_ERR, array("error" => 'NOT_LOGGED_IN'));
21 if ($_SESSION["uid"] && $method != "logout" && !get_pref('ENABLE_API_ACCESS')) {
22 $this->wrap(self::STATUS_ERR, array("error" => 'API_DISABLED'));
26 $this->seq = (int) $_REQUEST['seq'];
33 function wrap($status, $reply) {
34 print json_encode(array("seq" => $this->seq,
36 "content" => $reply));
39 function getVersion() {
40 $rv = array("version" => VERSION);
41 $this->wrap(self::STATUS_OK, $rv);
44 function getApiLevel() {
45 $rv = array("level" => self::API_LEVEL);
46 $this->wrap(self::STATUS_OK, $rv);
53 $login = $this->dbh->escape_string($_REQUEST["user"]);
54 $password = $_REQUEST["password"];
55 $password_base64 = base64_decode($_REQUEST["password"]);
57 if (SINGLE_USER_MODE) $login = "admin";
59 $result = $this->dbh->query("SELECT id FROM ttrss_users WHERE login = '$login'");
61 if ($this->dbh->num_rows($result) != 0) {
62 $uid = $this->dbh->fetch_result($result, 0, "id");
68 $this->wrap(self::STATUS_ERR, array("error" => "LOGIN_ERROR"));
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"));
84 $this->wrap(self::STATUS_ERR, array("error" => "API_DISABLED"));
91 $this->wrap(self::STATUS_OK, array("status" => "OK"));
94 function isLoggedIn() {
95 $this->wrap(self::STATUS_OK, array("status" => $_SESSION["uid"] != ''));
98 function getUnread() {
99 $feed_id = $this->dbh->escape_string($_REQUEST["feed_id"]);
100 $is_cat = $this->dbh->escape_string($_REQUEST["is_cat"]);
103 $this->wrap(self::STATUS_OK, array("unread" => getFeedUnread($feed_id, $is_cat)));
105 $this->wrap(self::STATUS_OK, array("unread" => getGlobalUnread()));
109 /* Method added for ttrss-reader for Android */
110 function getCounters() {
111 $this->wrap(self::STATUS_OK, getAllCounters());
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"]);
121 $feeds = $this->api_get_feeds($cat_id, $unread_only, $limit, $offset, $include_nested);
123 $this->wrap(self::STATUS_OK, $feeds);
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']);
131 // TODO do not return empty categories, return Uncategorized and standard virtual cats
134 $nested_qpart = "parent_cat IS NULL";
136 $nested_qpart = "true";
138 $result = $this->dbh->query("SELECT
139 id, title, order_id, (SELECT COUNT(id) FROM
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 = " .
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);
156 $unread += getCategoryChildrenUnread($line["id"]);
158 if ($unread || !$unread_only) {
159 array_push($cats, array("id" => $line["id"],
160 "title" => $line["title"],
162 "order_id" => (int) $line["order_id"],
168 foreach (array(-2,-1,0) as $cat_id) {
169 if ($include_empty || !$this->isCategoryEmpty($cat_id)) {
170 $unread = getFeedUnread($cat_id, true);
172 if ($unread || !$unread_only) {
173 array_push($cats, array("id" => $cat_id,
174 "title" => getCategoryTitle($cat_id),
175 "unread" => $unread));
180 $this->wrap(self::STATUS_OK, $cats);
183 function getHeadlines() {
184 $feed_id = $this->dbh->escape_string($_REQUEST["feed_id"]);
185 if ($feed_id != "") {
187 if (is_numeric($feed_id)) $feed_id = (int) $feed_id;
189 $limit = (int)$this->dbh->escape_string($_REQUEST["limit"]);
191 if (!$limit || $limit >= 200) $limit = 200;
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"]);
211 $_SESSION['hasSandbox'] = $has_sandbox;
213 $skip_first_id_check = false;
215 $override_order = false;
216 switch ($_REQUEST["order_by"]) {
218 $override_order = "ttrss_entries.title";
221 $override_order = "score DESC, date_entered, updated";
222 $skip_first_id_check = true;
225 $override_order = "updated DESC";
229 /* do not rely on params below */
231 $search = $this->dbh->escape_string($_REQUEST["search"]);
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);
238 if ($include_header) {
239 $this->wrap(self::STATUS_OK, array($headlines_header, $headlines));
241 $this->wrap(self::STATUS_OK, $headlines);
244 $this->wrap(self::STATUS_ERR, array("error" => 'INCORRECT_USAGE'));
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"]);
257 switch ($field_raw) {
260 $additional_fields = ",last_marked = NOW()";
263 $field = "published";
264 $additional_fields = ",last_published = NOW()";
268 $additional_fields = ",last_read = NOW()";
282 $set_to = "NOT $field";
286 if ($field == "note") $set_to = "'$data'";
288 if ($field && $set_to && count($article_ids) > 0) {
290 $article_ids = join(", ", $article_ids);
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"]);
294 $num_updated = $this->dbh->affected_rows($result);
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)");
300 while ($line = $this->dbh->fetch_assoc($result)) {
301 ccache_update($line["feed_id"], $_SESSION["uid"]);
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);
311 $p = new Publisher(PUBSUBHUBBUB_HUB);
312 $pubsub_result = $p->publish_update($rss_link);
316 $this->wrap(self::STATUS_OK, array("status" => "OK",
317 "updated" => $num_updated));
320 $this->wrap(self::STATUS_ERR, array("error" => 'INCORRECT_USAGE'));
325 function getArticle() {
327 $article_id = join(",", array_filter(explode(",", $this->dbh->escape_string($_REQUEST["article_id"])), is_numeric));
331 $query = "SELECT id,title,link,content,feed_id,comments,int_id,
332 marked,unread,published,score,note,lang,
333 ".SUBSTRING_FOR_DATE."(updated,1,16) as updated,
334 author,(SELECT title FROM ttrss_feeds WHERE id = feed_id) AS feed_title
335 FROM ttrss_entries,ttrss_user_entries
336 WHERE id IN ($article_id) AND ref_id = id AND owner_uid = " .
339 $result = $this->dbh->query($query);
343 if ($this->dbh->num_rows($result) != 0) {
345 while ($line = $this->dbh->fetch_assoc($result)) {
347 $attachments = get_article_enclosures($line['id']);
351 "title" => $line["title"],
352 "link" => $line["link"],
353 "labels" => get_article_labels($line['id']),
354 "unread" => sql_bool_to_bool($line["unread"]),
355 "marked" => sql_bool_to_bool($line["marked"]),
356 "published" => sql_bool_to_bool($line["published"]),
357 "comments" => $line["comments"],
358 "author" => $line["author"],
359 "updated" => (int) strtotime($line["updated"]),
360 "content" => $line["content"],
361 "feed_id" => $line["feed_id"],
362 "attachments" => $attachments,
363 "score" => (int)$line["score"],
364 "feed_title" => $line["feed_title"],
365 "note" => $line["note"],
366 "lang" => $line["lang"]
369 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_RENDER_ARTICLE_API) as $p) {
370 $article = $p->hook_render_article_api(array("article" => $article));
374 array_push($articles, $article);
379 $this->wrap(self::STATUS_OK, $articles);
381 $this->wrap(self::STATUS_ERR, array("error" => 'INCORRECT_USAGE'));
385 function getConfig() {
387 "icons_dir" => ICONS_DIR,
388 "icons_url" => ICONS_URL);
390 $config["daemon_is_running"] = file_is_locked("update_daemon.lock");
392 $result = $this->dbh->query("SELECT COUNT(*) AS cf FROM
393 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
395 $num_feeds = $this->dbh->fetch_result($result, 0, "cf");
397 $config["num_feeds"] = (int)$num_feeds;
399 $this->wrap(self::STATUS_OK, $config);
402 function updateFeed() {
403 require_once "include/rssfuncs.php";
405 $feed_id = (int) $this->dbh->escape_string($_REQUEST["feed_id"]);
407 update_rss_feed($feed_id, true);
409 $this->wrap(self::STATUS_OK, array("status" => "OK"));
412 function catchupFeed() {
413 $feed_id = $this->dbh->escape_string($_REQUEST["feed_id"]);
414 $is_cat = $this->dbh->escape_string($_REQUEST["is_cat"]);
416 catchup_feed($feed_id, $is_cat);
418 $this->wrap(self::STATUS_OK, array("status" => "OK"));
422 $pref_name = $this->dbh->escape_string($_REQUEST["pref_name"]);
424 $this->wrap(self::STATUS_OK, array("value" => get_pref($pref_name)));
427 function getLabels() {
428 //$article_ids = array_filter(explode(",", $this->dbh->escape_string($_REQUEST["article_ids"])), is_numeric);
430 $article_id = (int)$_REQUEST['article_id'];
434 $result = $this->dbh->query("SELECT id, caption, fg_color, bg_color
436 WHERE owner_uid = '".$_SESSION['uid']."' ORDER BY caption");
439 $article_labels = get_article_labels($article_id);
441 $article_labels = array();
443 while ($line = $this->dbh->fetch_assoc($result)) {
446 foreach ($article_labels as $al) {
447 if (feed_to_label_id($al[0]) == $line['id']) {
453 array_push($rv, array(
454 "id" => (int)label_to_feed_id($line['id']),
455 "caption" => $line['caption'],
456 "fg_color" => $line['fg_color'],
457 "bg_color" => $line['bg_color'],
458 "checked" => $checked));
461 $this->wrap(self::STATUS_OK, $rv);
464 function setArticleLabel() {
466 $article_ids = array_filter(explode(",", $this->dbh->escape_string($_REQUEST["article_ids"])), is_numeric);
467 $label_id = (int) $this->dbh->escape_string($_REQUEST['label_id']);
468 $assign = (bool) $this->dbh->escape_string($_REQUEST['assign']) == "true";
470 $label = $this->dbh->escape_string(label_find_caption(
471 feed_to_label_id($label_id), $_SESSION["uid"]));
477 foreach ($article_ids as $id) {
480 label_add_article($id, $label, $_SESSION["uid"]);
482 label_remove_article($id, $label, $_SESSION["uid"]);
489 $this->wrap(self::STATUS_OK, array("status" => "OK",
490 "updated" => $num_updated));
494 function index($method) {
495 $plugin = PluginHost::getInstance()->get_api_method(strtolower($method));
497 if ($plugin && method_exists($plugin, $method)) {
498 $reply = $plugin->$method();
500 $this->wrap($reply[0], $reply[1]);
503 $this->wrap(self::STATUS_ERR, array("error" => 'UNKNOWN_METHOD', "method" => $method));
507 function shareToPublished() {
508 $title = $this->dbh->escape_string(strip_tags($_REQUEST["title"]));
509 $url = $this->dbh->escape_string(strip_tags($_REQUEST["url"]));
510 $content = $this->dbh->escape_string(strip_tags($_REQUEST["content"]));
512 if (Article::create_published_article($title, $url, $content, "", $_SESSION["uid"])) {
513 $this->wrap(self::STATUS_OK, array("status" => 'OK'));
515 $this->wrap(self::STATUS_ERR, array("error" => 'Publishing failed'));
519 static function api_get_feeds($cat_id, $unread_only, $limit, $offset, $include_nested = false) {
525 if ($cat_id == -4 || $cat_id == -2) {
526 $counters = getLabelCounters(true);
528 foreach (array_values($counters) as $cv) {
530 $unread = $cv["counter"];
532 if ($unread || !$unread_only) {
535 "id" => (int) $cv["id"],
536 "title" => $cv["description"],
537 "unread" => $cv["counter"],
541 array_push($feeds, $row);
548 if ($cat_id == -4 || $cat_id == -1) {
549 foreach (array(-1, -2, -3, -4, -6, 0) as $i) {
550 $unread = getFeedUnread($i);
552 if ($unread || !$unread_only) {
553 $title = getFeedTitle($i);
561 array_push($feeds, $row);
569 if ($include_nested && $cat_id) {
570 $result = db_query("SELECT
571 id, title FROM ttrss_feed_categories
572 WHERE parent_cat = '$cat_id' AND owner_uid = " . $_SESSION["uid"] .
573 " ORDER BY id, title");
575 while ($line = db_fetch_assoc($result)) {
576 $unread = getFeedUnread($line["id"], true) +
577 getCategoryChildrenUnread($line["id"]);
579 if ($unread || !$unread_only) {
581 "id" => (int) $line["id"],
582 "title" => $line["title"],
586 array_push($feeds, $row);
594 $limit_qpart = "LIMIT $limit OFFSET $offset";
599 if ($cat_id == -4 || $cat_id == -3) {
600 $result = db_query("SELECT
601 id, feed_url, cat_id, title, order_id, ".
602 SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
603 FROM ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"] .
604 " ORDER BY cat_id, title " . $limit_qpart);
608 $cat_qpart = "cat_id = '$cat_id'";
610 $cat_qpart = "cat_id IS NULL";
612 $result = db_query("SELECT
613 id, feed_url, cat_id, title, order_id, ".
614 SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
615 FROM ttrss_feeds WHERE
616 $cat_qpart AND owner_uid = " . $_SESSION["uid"] .
617 " ORDER BY cat_id, title " . $limit_qpart);
620 while ($line = db_fetch_assoc($result)) {
622 $unread = getFeedUnread($line["id"]);
624 $has_icon = feed_has_icon($line['id']);
626 if ($unread || !$unread_only) {
629 "feed_url" => $line["feed_url"],
630 "title" => $line["title"],
631 "id" => (int)$line["id"],
632 "unread" => (int)$unread,
633 "has_icon" => $has_icon,
634 "cat_id" => (int)$line["cat_id"],
635 "last_updated" => (int) strtotime($line["last_updated"]),
636 "order_id" => (int) $line["order_id"],
639 array_push($feeds, $row);
646 static function api_get_headlines($feed_id, $limit, $offset,
647 $filter, $is_cat, $show_excerpt, $show_content, $view_mode, $order,
648 $include_attachments, $since_id,
649 $search = "", $include_nested = false, $sanitize_content = true,
650 $force_update = false, $excerpt_length = 100, $check_first_id = false, $skip_first_id_check = false) {
652 if ($force_update && $feed_id > 0 && is_numeric($feed_id)) {
653 // Update the feed if required with some basic flood control
656 "SELECT cache_images,".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
657 FROM ttrss_feeds WHERE id = '$feed_id'");
659 if (db_num_rows($result) != 0) {
660 $last_updated = strtotime(db_fetch_result($result, 0, "last_updated"));
661 $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
663 if (!$cache_images && time() - $last_updated > 120) {
664 include "rssfuncs.php";
665 update_rss_feed($feed_id, true, true);
667 db_query("UPDATE ttrss_feeds SET last_updated = '1970-01-01', last_update_started = '1970-01-01'
668 WHERE id = '$feed_id'");
673 /*$qfh_ret = queryFeedHeadlines($feed_id, $limit,
674 $view_mode, $is_cat, $search, false,
675 $order, $offset, 0, false, $since_id, $include_nested);*/
677 //function queryFeedHeadlines($feed, $limit,
678 // $view_mode, $cat_view, $search, $search_mode,
679 // $override_order = false, $offset = 0, $owner_uid = 0, $filter = false, $since_id = 0, $include_children = false,
680 // $ignore_vfeed_group = false, $override_strategy = false, $override_vfeed = false, $start_ts = false, $check_top_id = false) {
685 "view_mode" => $view_mode,
686 "cat_view" => $is_cat,
688 "override_order" => $order,
690 "since_id" => $since_id,
691 "include_children" => $include_nested,
692 "check_first_id" => $check_first_id,
693 "skip_first_id_check" => $skip_first_id_check
696 $qfh_ret = queryFeedHeadlines($params);
698 $result = $qfh_ret[0];
699 $feed_title = $qfh_ret[1];
700 $first_id = $qfh_ret[6];
702 $headlines = array();
704 $headlines_header = array(
706 'first_id' => $first_id,
707 'is_cat' => $is_cat);
709 if (!is_numeric($result)) {
710 while ($line = db_fetch_assoc($result)) {
711 $line["content_preview"] = truncate_string(strip_tags($line["content"]), $excerpt_length);
712 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
713 $line = $p->hook_query_headlines($line, $excerpt_length, true);
716 $is_updated = ($line["last_read"] == "" &&
717 ($line["unread"] != "t" && $line["unread"] != "1"));
719 $tags = explode(",", $line["tag_cache"]);
721 $label_cache = $line["label_cache"];
725 $label_cache = json_decode($label_cache, true);
728 if ($label_cache["no-labels"] == 1)
731 $labels = $label_cache;
735 if (!is_array($labels)) $labels = get_article_labels($line["id"]);
737 //if (!$tags) $tags = get_article_tags($line["id"]);
738 //if (!$labels) $labels = get_article_labels($line["id"]);
740 $headline_row = array(
741 "id" => (int)$line["id"],
742 "unread" => sql_bool_to_bool($line["unread"]),
743 "marked" => sql_bool_to_bool($line["marked"]),
744 "published" => sql_bool_to_bool($line["published"]),
745 "updated" => (int)strtotime($line["updated"]),
746 "is_updated" => $is_updated,
747 "title" => $line["title"],
748 "link" => $line["link"],
749 "feed_id" => $line["feed_id"],
753 if ($include_attachments)
754 $headline_row['attachments'] = get_article_enclosures(
758 $headline_row["excerpt"] = $line["content_preview"];
762 if ($sanitize_content) {
763 $headline_row["content"] = sanitize(
765 sql_bool_to_bool($line['hide_images']),
766 false, $line["site_url"], false, $line["id"]);
768 $headline_row["content"] = $line["content"];
772 // unify label output to ease parsing
773 if ($labels["no-labels"] == 1) $labels = array();
775 $headline_row["labels"] = $labels;
777 $headline_row["feed_title"] = $line["feed_title"] ? $line["feed_title"] :
780 $headline_row["comments_count"] = (int)$line["num_comments"];
781 $headline_row["comments_link"] = $line["comments"];
783 $headline_row["always_display_attachments"] = sql_bool_to_bool($line["always_display_enclosures"]);
785 $headline_row["author"] = $line["author"];
787 $headline_row["score"] = (int)$line["score"];
788 $headline_row["note"] = $line["note"];
789 $headline_row["lang"] = $line["lang"];
791 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_RENDER_ARTICLE_API) as $p) {
792 $headline_row = $p->hook_render_article_api(array("headline" => $headline_row));
795 array_push($headlines, $headline_row);
797 } else if (is_numeric($result) && $result == -1) {
798 $headlines_header['first_id_changed'] = true;
801 return array($headlines, $headlines_header);
804 function unsubscribeFeed() {
805 $feed_id = (int) $this->dbh->escape_string($_REQUEST["feed_id"]);
807 $result = $this->dbh->query("SELECT id FROM ttrss_feeds WHERE
808 id = '$feed_id' AND owner_uid = ".$_SESSION["uid"]);
810 if ($this->dbh->num_rows($result) != 0) {
811 Pref_Feeds::remove_feed($feed_id, $_SESSION["uid"]);
812 $this->wrap(self::STATUS_OK, array("status" => "OK"));
814 $this->wrap(self::STATUS_ERR, array("error" => "FEED_NOT_FOUND"));
818 function subscribeToFeed() {
819 $feed_url = $this->dbh->escape_string($_REQUEST["feed_url"]);
820 $category_id = (int) $this->dbh->escape_string($_REQUEST["category_id"]);
821 $login = $this->dbh->escape_string($_REQUEST["login"]);
822 $password = $this->dbh->escape_string($_REQUEST["password"]);
825 $rc = subscribe_to_feed($feed_url, $category_id, $login, $password);
827 $this->wrap(self::STATUS_OK, array("status" => $rc));
829 $this->wrap(self::STATUS_ERR, array("error" => 'INCORRECT_USAGE'));
833 function getFeedTree() {
834 $include_empty = sql_bool_to_bool($_REQUEST['include_empty']);
836 $pf = new Pref_Feeds($_REQUEST);
838 $_REQUEST['mode'] = 2;
839 $_REQUEST['force_show_empty'] = $include_empty;
842 $data = $pf->makefeedtree();
843 $this->wrap(self::STATUS_OK, array("categories" => $data));
845 $this->wrap(self::STATUS_ERR, array("error" =>
846 'UNABLE_TO_INSTANTIATE_OBJECT'));
851 // only works for labels or uncategorized for the time being
852 private function isCategoryEmpty($id) {
855 $result = $this->dbh->query("SELECT COUNT(*) AS count FROM ttrss_labels2
856 WHERE owner_uid = " . $_SESSION["uid"]);
858 return $this->dbh->fetch_result($result, 0, "count") == 0;
860 } else if ($id == 0) {
861 $result = $this->dbh->query("SELECT COUNT(*) AS count FROM ttrss_feeds
862 WHERE cat_id IS NULL AND owner_uid = " . $_SESSION["uid"]);
864 return $this->dbh->fetch_result($result, 0, "count") == 0;