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