3 class API extends Handler {
12 function before($method) {
13 if (parent::before($method)) {
14 header("Content-Type: text/plain");
16 if (!$_SESSION["uid"] && $method != "login" && $method != "isloggedin") {
17 print $this->wrap(self::STATUS_ERR, array("error" => 'NOT_LOGGED_IN'));
21 if ($_SESSION["uid"] && $method != "logout" && !get_pref($this->link, 'ENABLE_API_ACCESS')) {
22 print $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 print $this->wrap(self::STATUS_OK, $rv);
44 function getApiLevel() {
45 $rv = array("level" => self::API_LEVEL);
46 print $this->wrap(self::STATUS_OK, $rv);
50 $login = db_escape_string($_REQUEST["user"]);
51 $password = $_REQUEST["password"];
52 $password_base64 = base64_decode($_REQUEST["password"]);
54 if (SINGLE_USER_MODE) $login = "admin";
56 $result = db_query($this->link, "SELECT id FROM ttrss_users WHERE login = '$login'");
58 if (db_num_rows($result) != 0) {
59 $uid = db_fetch_result($result, 0, "id");
65 print $this->wrap(self::STATUS_ERR, array("error" => "LOGIN_ERROR"));
69 if (get_pref($this->link, "ENABLE_API_ACCESS", $uid)) {
70 if (authenticate_user($this->link, $login, $password)) { // try login with normal password
71 print $this->wrap(self::STATUS_OK, array("session_id" => session_id()));
72 } else if (authenticate_user($this->link, $login, $password_base64)) { // else try with base64_decoded password
73 print $this->wrap(self::STATUS_OK, array("session_id" => session_id()));
74 } else { // else we are not logged in
75 print $this->wrap(self::STATUS_ERR, array("error" => "LOGIN_ERROR"));
78 print $this->wrap(self::STATUS_ERR, array("error" => "API_DISABLED"));
85 print $this->wrap(self::STATUS_OK, array("status" => "OK"));
88 function isLoggedIn() {
89 print $this->wrap(self::STATUS_OK, array("status" => $_SESSION["uid"] != ''));
92 function getUnread() {
93 $feed_id = db_escape_string($_REQUEST["feed_id"]);
94 $is_cat = db_escape_string($_REQUEST["is_cat"]);
97 print $this->wrap(self::STATUS_OK, array("unread" => getFeedUnread($this->link, $feed_id, $is_cat)));
99 print $this->wrap(self::STATUS_OK, array("unread" => getGlobalUnread($this->link)));
103 /* Method added for ttrss-reader for Android */
104 function getCounters() {
106 /* flct (flc is the default) FIXME: document */
107 $output_mode = db_escape_string($_REQUEST["output_mode"]);
109 print $this->wrap(self::STATUS_OK, getAllCounters($this->link, $output_mode));
112 function getFeeds() {
113 $cat_id = db_escape_string($_REQUEST["cat_id"]);
114 $unread_only = (bool)db_escape_string($_REQUEST["unread_only"]);
115 $limit = (int) db_escape_string($_REQUEST["limit"]);
116 $offset = (int) db_escape_string($_REQUEST["offset"]);
117 $include_nested = (bool)db_escape_string($_REQUEST["include_nested"]);
119 $feeds = api_get_feeds($this->link, $cat_id, $unread_only, $limit, $offset, $include_nested);
121 print $this->wrap(self::STATUS_OK, $feeds);
124 function getCategories() {
125 $unread_only = (bool)db_escape_string($_REQUEST["unread_only"]);
126 $enable_nested = (bool)db_escape_string($_REQUEST["enable_nested"]);
128 // TODO do not return empty categories, return Uncategorized and standard virtual cats
131 $nested_qpart = "parent_cat IS NULL";
133 $nested_qpart = "true";
135 $result = db_query($this->link, "SELECT
136 id, title, order_id FROM ttrss_feed_categories
137 WHERE $nested_qpart AND owner_uid = " .
142 while ($line = db_fetch_assoc($result)) {
143 $unread = getFeedUnread($this->link, $line["id"], true);
146 $unread += getCategoryChildrenUnread($this->link, $line["id"]);
148 if ($unread || !$unread_only) {
149 array_push($cats, array("id" => $line["id"],
150 "title" => $line["title"],
152 "order_id" => (int) $line["order_id"],
157 foreach (array(-2,-1,0) as $cat_id) {
158 $unread = getFeedUnread($this->link, $cat_id, true);
160 if ($unread || !$unread_only) {
161 array_push($cats, array("id" => $cat_id,
162 "title" => getCategoryTitle($this->link, $cat_id),
163 "unread" => $unread));
167 print $this->wrap(self::STATUS_OK, $cats);
170 function getHeadlines() {
171 $feed_id = db_escape_string($_REQUEST["feed_id"]);
172 if ($feed_id != "") {
174 $limit = (int)db_escape_string($_REQUEST["limit"]);
176 if (!$limit || $limit >= 60) $limit = 60;
178 $offset = (int)db_escape_string($_REQUEST["skip"]);
179 $filter = db_escape_string($_REQUEST["filter"]);
180 $is_cat = (bool)db_escape_string($_REQUEST["is_cat"]);
181 $show_excerpt = (bool)db_escape_string($_REQUEST["show_excerpt"]);
182 $show_content = (bool)db_escape_string($_REQUEST["show_content"]);
183 /* all_articles, unread, adaptive, marked, updated */
184 $view_mode = db_escape_string($_REQUEST["view_mode"]);
185 $include_attachments = (bool)db_escape_string($_REQUEST["include_attachments"]);
186 $since_id = (int)db_escape_string($_REQUEST["since_id"]);
187 $include_nested = (bool)db_escape_string($_REQUEST["include_nested"]);
189 /* do not rely on params below */
191 $search = db_escape_string($_REQUEST["search"]);
192 $search_mode = db_escape_string($_REQUEST["search_mode"]);
193 $match_on = db_escape_string($_REQUEST["match_on"]);
195 $headlines = api_get_headlines($this->link, $feed_id, $limit, $offset,
196 $filter, $is_cat, $show_excerpt, $show_content, $view_mode, false,
197 $include_attachments, $since_id, $search, $search_mode, $match_on,
200 print $this->wrap(self::STATUS_OK, $headlines);
202 print $this->wrap(self::STATUS_ERR, array("error" => 'INCORRECT_USAGE'));
206 function updateArticle() {
207 $article_ids = array_filter(explode(",", db_escape_string($_REQUEST["article_ids"])), is_numeric);
208 $mode = (int) db_escape_string($_REQUEST["mode"]);
209 $data = db_escape_string($_REQUEST["data"]);
210 $field_raw = (int)db_escape_string($_REQUEST["field"]);
215 switch ($field_raw) {
220 $field = "published";
237 $set_to = "NOT $field";
241 if ($field == "note") $set_to = "'$data'";
243 if ($field && $set_to && count($article_ids) > 0) {
245 $article_ids = join(", ", $article_ids);
247 if ($field == "unread") {
248 $result = db_query($this->link, "UPDATE ttrss_user_entries SET $field = $set_to,
250 WHERE ref_id IN ($article_ids) AND owner_uid = " . $_SESSION["uid"]);
252 $result = db_query($this->link, "UPDATE ttrss_user_entries SET $field = $set_to
253 WHERE ref_id IN ($article_ids) AND owner_uid = " . $_SESSION["uid"]);
256 $num_updated = db_affected_rows($this->link, $result);
258 if ($num_updated > 0 && $field == "unread") {
259 $result = db_query($this->link, "SELECT DISTINCT feed_id FROM ttrss_user_entries
260 WHERE ref_id IN ($article_ids)");
262 while ($line = db_fetch_assoc($result)) {
263 ccache_update($this->link, $line["feed_id"], $_SESSION["uid"]);
267 print $this->wrap(self::STATUS_OK, array("status" => "OK",
268 "updated" => $num_updated));
271 print $this->wrap(self::STATUS_ERR, array("error" => 'INCORRECT_USAGE'));
276 function getArticle() {
278 $article_id = join(",", array_filter(explode(",", db_escape_string($_REQUEST["article_id"])), is_numeric));
280 $query = "SELECT id,title,link,content,feed_id,comments,int_id,
281 marked,unread,published,
282 ".SUBSTRING_FOR_DATE."(updated,1,16) as updated,
284 FROM ttrss_entries,ttrss_user_entries
285 WHERE id IN ($article_id) AND ref_id = id AND owner_uid = " .
288 $result = db_query($this->link, $query);
292 if (db_num_rows($result) != 0) {
294 while ($line = db_fetch_assoc($result)) {
296 $attachments = get_article_enclosures($this->link, $line['id']);
300 "title" => $line["title"],
301 "link" => $line["link"],
302 "labels" => get_article_labels($this->link, $line['id']),
303 "unread" => sql_bool_to_bool($line["unread"]),
304 "marked" => sql_bool_to_bool($line["marked"]),
305 "published" => sql_bool_to_bool($line["published"]),
306 "comments" => $line["comments"],
307 "author" => $line["author"],
308 "updated" => strtotime($line["updated"]),
309 "content" => $line["content"],
310 "feed_id" => $line["feed_id"],
311 "attachments" => $attachments
314 array_push($articles, $article);
319 print $this->wrap(self::STATUS_OK, $articles);
323 function getConfig() {
325 "icons_dir" => ICONS_DIR,
326 "icons_url" => ICONS_URL);
328 $config["daemon_is_running"] = file_is_locked("update_daemon.lock");
330 $result = db_query($this->link, "SELECT COUNT(*) AS cf FROM
331 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
333 $num_feeds = db_fetch_result($result, 0, "cf");
335 $config["num_feeds"] = (int)$num_feeds;
337 print $this->wrap(self::STATUS_OK, $config);
340 function updateFeed() {
341 $feed_id = db_escape_string($_REQUEST["feed_id"]);
343 update_rss_feed($this->link, $feed_id, true);
345 print $this->wrap(self::STATUS_OK, array("status" => "OK"));
348 function catchupFeed() {
349 $feed_id = db_escape_string($_REQUEST["feed_id"]);
350 $is_cat = db_escape_string($_REQUEST["is_cat"]);
352 catchup_feed($this->link, $feed_id, $is_cat);
354 print $this->wrap(self::STATUS_OK, array("status" => "OK"));
358 $pref_name = db_escape_string($_REQUEST["pref_name"]);
360 print $this->wrap(self::STATUS_OK, array("value" => get_pref($this->link, $pref_name)));
363 function getLabels() {
364 //$article_ids = array_filter(explode(",", db_escape_string($_REQUEST["article_ids"])), is_numeric);
366 $article_id = (int)$_REQUEST['article_id'];
370 $result = db_query($this->link, "SELECT id, caption, fg_color, bg_color
372 WHERE owner_uid = '".$_SESSION['uid']."' ORDER BY caption");
375 $article_labels = get_article_labels($this->link, $article_id);
377 $article_labels = array();
379 while ($line = db_fetch_assoc($result)) {
382 foreach ($article_labels as $al) {
383 if ($al[0] == $line['id']) {
389 array_push($rv, array(
390 "id" => (int)$line['id'],
391 "caption" => $line['caption'],
392 "fg_color" => $line['fg_color'],
393 "bg_color" => $line['bg_color'],
394 "checked" => $checked));
397 print $this->wrap(self::STATUS_OK, $rv);
400 function setArticleLabel() {
402 $article_ids = array_filter(explode(",", db_escape_string($_REQUEST["article_ids"])), is_numeric);
403 $label_id = (int) db_escape_string($_REQUEST['label_id']);
404 $assign = (bool) db_escape_string($_REQUEST['assign']) == "true";
406 $label = db_escape_string(label_find_caption($this->link,
407 $label_id, $_SESSION["uid"]));
413 foreach ($article_ids as $id) {
416 label_add_article($this->link, $id, $label, $_SESSION["uid"]);
418 label_remove_article($this->link, $id, $label, $_SESSION["uid"]);
425 print $this->wrap(self::STATUS_OK, array("status" => "OK",
426 "updated" => $num_updated));
431 print $this->wrap(self::STATUS_ERR, array("error" => 'UNKNOWN_METHOD'));
434 function shareToPublished() {
435 $title = db_escape_string(strip_tags($_REQUEST["title"]));
436 $url = db_escape_string(strip_tags($_REQUEST["url"]));
437 $content = db_escape_string(strip_tags($_REQUEST["content"]));
439 if (create_published_article($this->link, $title, $url, $content, $_SESSION["uid"])) {
440 print $this->wrap(self::STATUS_OK, array("status" => 'OK'));
442 print $this->wrap(self::STATUS_ERR, array("error" => 'Publishing failed'));