api: add getUnread

This commit is contained in:
Andrew Dolgov 2009-12-16 13:07:02 +03:00
parent 730c97c7f3
commit 03e5f9eb02
1 changed files with 10 additions and 0 deletions

View File

@ -73,6 +73,16 @@
case "isLoggedIn":
print json_encode(array("status" => $_SESSION["uid"] != ''));
break;
case "getUnread":
$feed_id = db_escape_string($_REQUEST["feed_id"]);
$is_cat = db_escape_string($_REQUEST["is_cat"]);
if ($feed_id) {
print json_encode(array("unread" => getFeedUnread($link, $feed_id, $is_cat)));
} else {
print json_encode(array("unread" => getGlobalUnread($link)));
}
break;
case "getFeeds":
$cat_id = db_escape_string($_REQUEST["cat_id"]);
$unread_only = (bool)db_escape_string($_REQUEST["unread_only"]);