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