]> git.wh0rd.org - tt-rss.git/blame - classes/api.php
allow NO_CURL to disable several CURL-related checks in plugins
[tt-rss.git] / classes / api.php
CommitLineData
de8260cb
AD
1<?php
2
3class API extends Handler {
4
491f69c7 5 const API_LEVEL = 12;
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
a2108ee9 80 user_error("Failed login attempt for $login from {$_SERVER['REMOTE_ADDR']}", E_USER_WARNING);
6f7798b6 81 $this->wrap(self::STATUS_ERR, array("error" => "LOGIN_ERROR"));
de8260cb
AD
82 }
83 } else {
6f7798b6 84 $this->wrap(self::STATUS_ERR, array("error" => "API_DISABLED"));
de8260cb
AD
85 }
86
87 }
88
89 function logout() {
90 logout_user();
6f7798b6 91 $this->wrap(self::STATUS_OK, array("status" => "OK"));
de8260cb
AD
92 }
93
94 function isLoggedIn() {
6f7798b6 95 $this->wrap(self::STATUS_OK, array("status" => $_SESSION["uid"] != ''));
de8260cb
AD
96 }
97
98 function getUnread() {
d9c85e0f
AD
99 $feed_id = $this->dbh->escape_string($_REQUEST["feed_id"]);
100 $is_cat = $this->dbh->escape_string($_REQUEST["is_cat"]);
de8260cb
AD
101
102 if ($feed_id) {
6f7798b6 103 $this->wrap(self::STATUS_OK, array("unread" => getFeedUnread($feed_id, $is_cat)));
de8260cb 104 } else {
6f7798b6 105 $this->wrap(self::STATUS_OK, array("unread" => getGlobalUnread()));
de8260cb
AD
106 }
107 }
108
109 /* Method added for ttrss-reader for Android */
110 function getCounters() {
6f7798b6 111 $this->wrap(self::STATUS_OK, getAllCounters());
de8260cb
AD
112 }
113
114 function getFeeds() {
d9c85e0f 115 $cat_id = $this->dbh->escape_string($_REQUEST["cat_id"]);
9955a134 116 $unread_only = sql_bool_to_bool($_REQUEST["unread_only"]);
d9c85e0f
AD
117 $limit = (int) $this->dbh->escape_string($_REQUEST["limit"]);
118 $offset = (int) $this->dbh->escape_string($_REQUEST["offset"]);
9955a134 119 $include_nested = sql_bool_to_bool($_REQUEST["include_nested"]);
de8260cb 120
a42c55f0 121 $feeds = $this->api_get_feeds($cat_id, $unread_only, $limit, $offset, $include_nested);
de8260cb 122
6f7798b6 123 $this->wrap(self::STATUS_OK, $feeds);
de8260cb
AD
124 }
125
126 function getCategories() {
9955a134
AD
127 $unread_only = sql_bool_to_bool($_REQUEST["unread_only"]);
128 $enable_nested = sql_bool_to_bool($_REQUEST["enable_nested"]);
b3575bd8 129 $include_empty = sql_bool_to_bool($_REQUEST['include_empty']);
de8260cb
AD
130
131 // TODO do not return empty categories, return Uncategorized and standard virtual cats
132
48646336
AD
133 if ($enable_nested)
134 $nested_qpart = "parent_cat IS NULL";
135 else
136 $nested_qpart = "true";
137
d9c85e0f 138 $result = $this->dbh->query("SELECT
d49dfa38
AD
139 id, title, order_id, (SELECT COUNT(id) FROM
140 ttrss_feeds WHERE
7be3fcd5
AD
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
d49dfa38 145 FROM ttrss_feed_categories
48646336 146 WHERE $nested_qpart AND owner_uid = " .
de8260cb
AD
147 $_SESSION["uid"]);
148
149 $cats = array();
150
d9c85e0f 151 while ($line = $this->dbh->fetch_assoc($result)) {
66ca7c30 152 if ($include_empty || $line["num_feeds"] > 0 || $line["num_cats"] > 0) {
a42c55f0 153 $unread = getFeedUnread($line["id"], true);
d49dfa38
AD
154
155 if ($enable_nested)
a42c55f0 156 $unread += getCategoryChildrenUnread($line["id"]);
d49dfa38
AD
157
158 if ($unread || !$unread_only) {
159 array_push($cats, array("id" => $line["id"],
160 "title" => $line["title"],
161 "unread" => $unread,
162 "order_id" => (int) $line["order_id"],
163 ));
164 }
de8260cb
AD
165 }
166 }
167
168 foreach (array(-2,-1,0) as $cat_id) {
c0a08063 169 if ($include_empty || !$this->isCategoryEmpty($cat_id)) {
a42c55f0 170 $unread = getFeedUnread($cat_id, true);
de8260cb 171
c0a08063
AD
172 if ($unread || !$unread_only) {
173 array_push($cats, array("id" => $cat_id,
a42c55f0 174 "title" => getCategoryTitle($cat_id),
c0a08063
AD
175 "unread" => $unread));
176 }
de8260cb
AD
177 }
178 }
179
6f7798b6 180 $this->wrap(self::STATUS_OK, $cats);
de8260cb
AD
181 }
182
183 function getHeadlines() {
d9c85e0f 184 $feed_id = $this->dbh->escape_string($_REQUEST["feed_id"]);
8aa3becc 185 if ($feed_id != "") {
de8260cb 186
96ac72bc
AD
187 if (is_numeric($feed_id)) $feed_id = (int) $feed_id;
188
d9c85e0f 189 $limit = (int)$this->dbh->escape_string($_REQUEST["limit"]);
1a740cf6 190
6421b429 191 if (!$limit || $limit >= 200) $limit = 200;
1a740cf6 192
d9c85e0f
AD
193 $offset = (int)$this->dbh->escape_string($_REQUEST["skip"]);
194 $filter = $this->dbh->escape_string($_REQUEST["filter"]);
9955a134
AD
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"]);
de8260cb 198 /* all_articles, unread, adaptive, marked, updated */
d9c85e0f 199 $view_mode = $this->dbh->escape_string($_REQUEST["view_mode"]);
9955a134 200 $include_attachments = sql_bool_to_bool($_REQUEST["include_attachments"]);
d9c85e0f 201 $since_id = (int)$this->dbh->escape_string($_REQUEST["since_id"]);
9955a134 202 $include_nested = sql_bool_to_bool($_REQUEST["include_nested"]);
bd3c6723
AD
203 $sanitize_content = !isset($_REQUEST["sanitize"]) ||
204 sql_bool_to_bool($_REQUEST["sanitize"]);
4baa1afa 205 $force_update = sql_bool_to_bool($_REQUEST["force_update"]);
9997b38e 206 $has_sandbox = sql_bool_to_bool($_REQUEST["has_sandbox"]);
3194a70a 207 $excerpt_length = (int)$this->dbh->escape_string($_REQUEST["excerpt_length"]);
48fefe2f 208 $check_first_id = (int)$this->dbh->escape_string($_REQUEST["check_first_id"]);
5c784e70 209 $include_header = sql_bool_to_bool($_REQUEST["include_header"]);
9997b38e
AD
210
211 $_SESSION['hasSandbox'] = $has_sandbox;
ffd07864 212
0bbd1414 213 $override_order = false;
214 switch ($_REQUEST["order_by"]) {
273c33e5
AD
215 case "title":
216 $override_order = "ttrss_entries.title";
217 break;
0bbd1414 218 case "date_reverse":
e9687f67 219 $override_order = "score DESC, date_entered, updated";
0bbd1414 220 break;
221 case "feed_dates":
222 $override_order = "updated DESC";
223 break;
224 }
ffd07864 225
3e4af5b0
AD
226 /* do not rely on params below */
227
d9c85e0f 228 $search = $this->dbh->escape_string($_REQUEST["search"]);
3e4af5b0 229
5c784e70 230 list($headlines, $headlines_header) = $this->api_get_headlines($feed_id, $limit, $offset,
0bbd1414 231 $filter, $is_cat, $show_excerpt, $show_content, $view_mode, $override_order,
9090b874 232 $include_attachments, $since_id, $search,
48fefe2f 233 $include_nested, $sanitize_content, $force_update, $excerpt_length, $check_first_id);
de8260cb 234
5c784e70
AD
235 if ($include_header) {
236 $this->wrap(self::STATUS_OK, array($headlines_header, $headlines));
237 } else {
238 $this->wrap(self::STATUS_OK, $headlines);
239 }
de8260cb 240 } else {
6f7798b6 241 $this->wrap(self::STATUS_ERR, array("error" => 'INCORRECT_USAGE'));
de8260cb
AD
242 }
243 }
244
245 function updateArticle() {
d9c85e0f
AD
246 $article_ids = array_filter(explode(",", $this->dbh->escape_string($_REQUEST["article_ids"])), is_numeric);
247 $mode = (int) $this->dbh->escape_string($_REQUEST["mode"]);
248 $data = $this->dbh->escape_string($_REQUEST["data"]);
249 $field_raw = (int)$this->dbh->escape_string($_REQUEST["field"]);
de8260cb
AD
250
251 $field = "";
252 $set_to = "";
253
254 switch ($field_raw) {
255 case 0:
256 $field = "marked";
7873d588 257 $additional_fields = ",last_marked = NOW()";
de8260cb
AD
258 break;
259 case 1:
260 $field = "published";
7873d588 261 $additional_fields = ",last_published = NOW()";
de8260cb
AD
262 break;
263 case 2:
264 $field = "unread";
7873d588 265 $additional_fields = ",last_read = NOW()";
de8260cb
AD
266 break;
267 case 3:
268 $field = "note";
269 };
270
271 switch ($mode) {
272 case 1:
273 $set_to = "true";
274 break;
275 case 0:
276 $set_to = "false";
277 break;
278 case 2:
279 $set_to = "NOT $field";
280 break;
281 }
282
283 if ($field == "note") $set_to = "'$data'";
284
285 if ($field && $set_to && count($article_ids) > 0) {
286
287 $article_ids = join(", ", $article_ids);
288
d9c85e0f 289 $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 290
d9c85e0f 291 $num_updated = $this->dbh->affected_rows($result);
de8260cb
AD
292
293 if ($num_updated > 0 && $field == "unread") {
d9c85e0f 294 $result = $this->dbh->query("SELECT DISTINCT feed_id FROM ttrss_user_entries
de8260cb
AD
295 WHERE ref_id IN ($article_ids)");
296
d9c85e0f 297 while ($line = $this->dbh->fetch_assoc($result)) {
a42c55f0 298 ccache_update($line["feed_id"], $_SESSION["uid"]);
de8260cb
AD
299 }
300 }
301
7873d588
AD
302 if ($num_updated > 0 && $field == "published") {
303 if (PUBSUBHUBBUB_HUB) {
304 $rss_link = get_self_url_prefix() .
305 "/public.php?op=rss&id=-2&key=" .
a42c55f0 306 get_feed_access_key(-2, false);
7873d588
AD
307
308 $p = new Publisher(PUBSUBHUBBUB_HUB);
309 $pubsub_result = $p->publish_update($rss_link);
310 }
311 }
312
6f7798b6 313 $this->wrap(self::STATUS_OK, array("status" => "OK",
de8260cb
AD
314 "updated" => $num_updated));
315
316 } else {
6f7798b6 317 $this->wrap(self::STATUS_ERR, array("error" => 'INCORRECT_USAGE'));
de8260cb
AD
318 }
319
320 }
321
322 function getArticle() {
323
d9c85e0f 324 $article_id = join(",", array_filter(explode(",", $this->dbh->escape_string($_REQUEST["article_id"])), is_numeric));
de8260cb 325
6f81395d 326 if ($article_id) {
de8260cb 327
c052e25a 328 $query = "SELECT id,title,link,content,feed_id,comments,int_id,
429ff9af 329 marked,unread,published,score,note,lang,
6f81395d
AD
330 ".SUBSTRING_FOR_DATE."(updated,1,16) as updated,
331 author,(SELECT title FROM ttrss_feeds WHERE id = feed_id) AS feed_title
332 FROM ttrss_entries,ttrss_user_entries
333 WHERE id IN ($article_id) AND ref_id = id AND owner_uid = " .
334 $_SESSION["uid"] ;
de8260cb 335
6f81395d 336 $result = $this->dbh->query($query);
de8260cb 337
6f81395d 338 $articles = array();
de8260cb 339
6f81395d 340 if ($this->dbh->num_rows($result) != 0) {
0db61af8 341
6f81395d 342 while ($line = $this->dbh->fetch_assoc($result)) {
0db61af8 343
6f81395d 344 $attachments = get_article_enclosures($line['id']);
de8260cb 345
6f81395d
AD
346 $article = array(
347 "id" => $line["id"],
348 "title" => $line["title"],
349 "link" => $line["link"],
350 "labels" => get_article_labels($line['id']),
351 "unread" => sql_bool_to_bool($line["unread"]),
352 "marked" => sql_bool_to_bool($line["marked"]),
353 "published" => sql_bool_to_bool($line["published"]),
354 "comments" => $line["comments"],
355 "author" => $line["author"],
356 "updated" => (int) strtotime($line["updated"]),
c052e25a 357 "content" => $line["content"],
6f81395d
AD
358 "feed_id" => $line["feed_id"],
359 "attachments" => $attachments,
360 "score" => (int)$line["score"],
21bb3c06 361 "feed_title" => $line["feed_title"],
429ff9af
AD
362 "note" => $line["note"],
363 "lang" => $line["lang"]
6f81395d
AD
364 );
365
366 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_RENDER_ARTICLE_API) as $p) {
367 $article = $p->hook_render_article_api(array("article" => $article));
368 }
369
370
371 array_push($articles, $article);
de8260cb 372
6f81395d
AD
373 }
374 }
de8260cb 375
6f81395d
AD
376 $this->wrap(self::STATUS_OK, $articles);
377 } else {
378 $this->wrap(self::STATUS_ERR, array("error" => 'INCORRECT_USAGE'));
379 }
de8260cb
AD
380 }
381
382 function getConfig() {
383 $config = array(
384 "icons_dir" => ICONS_DIR,
385 "icons_url" => ICONS_URL);
386
387 $config["daemon_is_running"] = file_is_locked("update_daemon.lock");
388
d9c85e0f 389 $result = $this->dbh->query("SELECT COUNT(*) AS cf FROM
de8260cb
AD
390 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
391
d9c85e0f 392 $num_feeds = $this->dbh->fetch_result($result, 0, "cf");
de8260cb
AD
393
394 $config["num_feeds"] = (int)$num_feeds;
395
6f7798b6 396 $this->wrap(self::STATUS_OK, $config);
de8260cb
AD
397 }
398
399 function updateFeed() {
c1f6e5f8
AD
400 require_once "include/rssfuncs.php";
401
d9c85e0f 402 $feed_id = (int) $this->dbh->escape_string($_REQUEST["feed_id"]);
de8260cb 403
a42c55f0 404 update_rss_feed($feed_id, true);
de8260cb 405
6f7798b6 406 $this->wrap(self::STATUS_OK, array("status" => "OK"));
de8260cb
AD
407 }
408
409 function catchupFeed() {
d9c85e0f
AD
410 $feed_id = $this->dbh->escape_string($_REQUEST["feed_id"]);
411 $is_cat = $this->dbh->escape_string($_REQUEST["is_cat"]);
de8260cb 412
a42c55f0 413 catchup_feed($feed_id, $is_cat);
de8260cb 414
6f7798b6 415 $this->wrap(self::STATUS_OK, array("status" => "OK"));
de8260cb
AD
416 }
417
418 function getPref() {
d9c85e0f 419 $pref_name = $this->dbh->escape_string($_REQUEST["pref_name"]);
de8260cb 420
6f7798b6 421 $this->wrap(self::STATUS_OK, array("value" => get_pref($pref_name)));
de8260cb
AD
422 }
423
ea1c2903 424 function getLabels() {
d9c85e0f 425 //$article_ids = array_filter(explode(",", $this->dbh->escape_string($_REQUEST["article_ids"])), is_numeric);
ea1c2903
AD
426
427 $article_id = (int)$_REQUEST['article_id'];
428
429 $rv = array();
430
d9c85e0f 431 $result = $this->dbh->query("SELECT id, caption, fg_color, bg_color
ea1c2903
AD
432 FROM ttrss_labels2
433 WHERE owner_uid = '".$_SESSION['uid']."' ORDER BY caption");
434
435 if ($article_id)
a42c55f0 436 $article_labels = get_article_labels($article_id);
ea1c2903
AD
437 else
438 $article_labels = array();
439
d9c85e0f 440 while ($line = $this->dbh->fetch_assoc($result)) {
ea1c2903
AD
441
442 $checked = false;
443 foreach ($article_labels as $al) {
25237aea 444 if (feed_to_label_id($al[0]) == $line['id']) {
ea1c2903
AD
445 $checked = true;
446 break;
447 }
448 }
449
450 array_push($rv, array(
891d033c 451 "id" => (int)label_to_feed_id($line['id']),
ea1c2903
AD
452 "caption" => $line['caption'],
453 "fg_color" => $line['fg_color'],
454 "bg_color" => $line['bg_color'],
455 "checked" => $checked));
456 }
457
6f7798b6 458 $this->wrap(self::STATUS_OK, $rv);
ea1c2903
AD
459 }
460
396bfdf9
AD
461 function setArticleLabel() {
462
d9c85e0f
AD
463 $article_ids = array_filter(explode(",", $this->dbh->escape_string($_REQUEST["article_ids"])), is_numeric);
464 $label_id = (int) $this->dbh->escape_string($_REQUEST['label_id']);
465 $assign = (bool) $this->dbh->escape_string($_REQUEST['assign']) == "true";
396bfdf9 466
d9c85e0f 467 $label = $this->dbh->escape_string(label_find_caption(
788cf0a1 468 feed_to_label_id($label_id), $_SESSION["uid"]));
396bfdf9
AD
469
470 $num_updated = 0;
471
472 if ($label) {
473
474 foreach ($article_ids as $id) {
475
476 if ($assign)
a42c55f0 477 label_add_article($id, $label, $_SESSION["uid"]);
396bfdf9 478 else
a42c55f0 479 label_remove_article($id, $label, $_SESSION["uid"]);
396bfdf9
AD
480
481 ++$num_updated;
482
483 }
484 }
485
6f7798b6 486 $this->wrap(self::STATUS_OK, array("status" => "OK",
396bfdf9
AD
487 "updated" => $num_updated));
488
489 }
490
79f9bef7 491 function index($method) {
1ffe3391 492 $plugin = PluginHost::getInstance()->get_api_method(strtolower($method));
79f9bef7
AD
493
494 if ($plugin && method_exists($plugin, $method)) {
495 $reply = $plugin->$method();
496
6f7798b6 497 $this->wrap($reply[0], $reply[1]);
79f9bef7
AD
498
499 } else {
6f7798b6 500 $this->wrap(self::STATUS_ERR, array("error" => 'UNKNOWN_METHOD', "method" => $method));
79f9bef7 501 }
de8260cb
AD
502 }
503
8361e724 504 function shareToPublished() {
d9c85e0f
AD
505 $title = $this->dbh->escape_string(strip_tags($_REQUEST["title"]));
506 $url = $this->dbh->escape_string(strip_tags($_REQUEST["url"]));
507 $content = $this->dbh->escape_string(strip_tags($_REQUEST["content"]));
8361e724 508
a42c55f0 509 if (Article::create_published_article($title, $url, $content, "", $_SESSION["uid"])) {
6f7798b6 510 $this->wrap(self::STATUS_OK, array("status" => 'OK'));
8361e724 511 } else {
6f7798b6 512 $this->wrap(self::STATUS_ERR, array("error" => 'Publishing failed'));
8361e724
AD
513 }
514 }
04f60eb7 515
a42c55f0 516 static function api_get_feeds($cat_id, $unread_only, $limit, $offset, $include_nested = false) {
04f60eb7
AD
517
518 $feeds = array();
519
520 /* Labels */
521
522 if ($cat_id == -4 || $cat_id == -2) {
a42c55f0 523 $counters = getLabelCounters(true);
04f60eb7
AD
524
525 foreach (array_values($counters) as $cv) {
526
527 $unread = $cv["counter"];
528
529 if ($unread || !$unread_only) {
530
531 $row = array(
1d3cbe31 532 "id" => (int) $cv["id"],
04f60eb7
AD
533 "title" => $cv["description"],
534 "unread" => $cv["counter"],
535 "cat_id" => -2,
536 );
537
538 array_push($feeds, $row);
539 }
540 }
541 }
542
543 /* Virtual feeds */
544
545 if ($cat_id == -4 || $cat_id == -1) {
546 foreach (array(-1, -2, -3, -4, -6, 0) as $i) {
a42c55f0 547 $unread = getFeedUnread($i);
04f60eb7
AD
548
549 if ($unread || !$unread_only) {
a42c55f0 550 $title = getFeedTitle($i);
04f60eb7
AD
551
552 $row = array(
553 "id" => $i,
554 "title" => $title,
555 "unread" => $unread,
556 "cat_id" => -1,
557 );
558 array_push($feeds, $row);
559 }
560
561 }
562 }
563
564 /* Child cats */
565
566 if ($include_nested && $cat_id) {
a42c55f0 567 $result = db_query("SELECT
04f60eb7
AD
568 id, title FROM ttrss_feed_categories
569 WHERE parent_cat = '$cat_id' AND owner_uid = " . $_SESSION["uid"] .
570 " ORDER BY id, title");
571
572 while ($line = db_fetch_assoc($result)) {
a42c55f0
AD
573 $unread = getFeedUnread($line["id"], true) +
574 getCategoryChildrenUnread($line["id"]);
04f60eb7
AD
575
576 if ($unread || !$unread_only) {
577 $row = array(
1d3cbe31 578 "id" => (int) $line["id"],
04f60eb7
AD
579 "title" => $line["title"],
580 "unread" => $unread,
581 "is_cat" => true,
582 );
583 array_push($feeds, $row);
584 }
585 }
586 }
587
588 /* Real feeds */
589
590 if ($limit) {
591 $limit_qpart = "LIMIT $limit OFFSET $offset";
592 } else {
593 $limit_qpart = "";
594 }
595
596 if ($cat_id == -4 || $cat_id == -3) {
a42c55f0 597 $result = db_query("SELECT
04f60eb7
AD
598 id, feed_url, cat_id, title, order_id, ".
599 SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
600 FROM ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"] .
601 " ORDER BY cat_id, title " . $limit_qpart);
602 } else {
603
604 if ($cat_id)
605 $cat_qpart = "cat_id = '$cat_id'";
606 else
607 $cat_qpart = "cat_id IS NULL";
608
a42c55f0 609 $result = db_query("SELECT
04f60eb7
AD
610 id, feed_url, cat_id, title, order_id, ".
611 SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
612 FROM ttrss_feeds WHERE
613 $cat_qpart AND owner_uid = " . $_SESSION["uid"] .
614 " ORDER BY cat_id, title " . $limit_qpart);
615 }
616
617 while ($line = db_fetch_assoc($result)) {
618
a42c55f0 619 $unread = getFeedUnread($line["id"]);
04f60eb7
AD
620
621 $has_icon = feed_has_icon($line['id']);
622
623 if ($unread || !$unread_only) {
624
625 $row = array(
626 "feed_url" => $line["feed_url"],
627 "title" => $line["title"],
628 "id" => (int)$line["id"],
629 "unread" => (int)$unread,
630 "has_icon" => $has_icon,
631 "cat_id" => (int)$line["cat_id"],
ef3da31c 632 "last_updated" => (int) strtotime($line["last_updated"]),
04f60eb7
AD
633 "order_id" => (int) $line["order_id"],
634 );
635
636 array_push($feeds, $row);
637 }
638 }
639
640 return $feeds;
641 }
642
a42c55f0 643 static function api_get_headlines($feed_id, $limit, $offset,
04f60eb7
AD
644 $filter, $is_cat, $show_excerpt, $show_content, $view_mode, $order,
645 $include_attachments, $since_id,
5c784e70 646 $search = "", $include_nested = false, $sanitize_content = true,
48fefe2f 647 $force_update = false, $excerpt_length = 100, $check_first_id = false) {
4baa1afa
AD
648
649 if ($force_update && $feed_id > 0 && is_numeric($feed_id)) {
650 // Update the feed if required with some basic flood control
651
652 $result = db_query(
653 "SELECT cache_images,".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
654 FROM ttrss_feeds WHERE id = '$feed_id'");
655
656 if (db_num_rows($result) != 0) {
657 $last_updated = strtotime(db_fetch_result($result, 0, "last_updated"));
658 $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
659
660 if (!$cache_images && time() - $last_updated > 120) {
661 include "rssfuncs.php";
662 update_rss_feed($feed_id, true, true);
663 } else {
664 db_query("UPDATE ttrss_feeds SET last_updated = '1970-01-01', last_update_started = '1970-01-01'
665 WHERE id = '$feed_id'");
666 }
667 }
668 }
04f60eb7 669
f5a0fb8b 670 /*$qfh_ret = queryFeedHeadlines($feed_id, $limit,
9090b874 671 $view_mode, $is_cat, $search, false,
f5a0fb8b
AD
672 $order, $offset, 0, false, $since_id, $include_nested);*/
673
674 //function queryFeedHeadlines($feed, $limit,
675 // $view_mode, $cat_view, $search, $search_mode,
676 // $override_order = false, $offset = 0, $owner_uid = 0, $filter = false, $since_id = 0, $include_children = false,
677 // $ignore_vfeed_group = false, $override_strategy = false, $override_vfeed = false, $start_ts = false, $check_top_id = false) {
678
679 $params = array(
680 "feed" => $feed_id,
681 "limit" => $limit,
682 "view_mode" => $view_mode,
683 "cat_view" => $is_cat,
684 "search" => $search,
685 "override_order" => $order,
686 "offset" => $offset,
687 "since_id" => $since_id,
688 "include_children" => $include_nested,
94b8ce6c 689 "check_first_id" => $check_first_id
f5a0fb8b
AD
690 );
691
692 $qfh_ret = queryFeedHeadlines($params);
693
34440201 694 $result = $qfh_ret[0];
04f60eb7 695 $feed_title = $qfh_ret[1];
48fefe2f 696 $first_id = $qfh_ret[6];
04f60eb7
AD
697
698 $headlines = array();
b0ce3d33
AD
699
700 $headlines_header = array(
701 'id' => $feed_id,
48fefe2f 702 'first_id' => $first_id,
b0ce3d33 703 'is_cat' => $is_cat);
4f2a2ca9 704
ec57104d 705 if (!is_numeric($result)) {
34440201
AD
706 while ($line = db_fetch_assoc($result)) {
707 $line["content_preview"] = truncate_string(strip_tags($line["content"]), $excerpt_length);
708 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
709 $line = $p->hook_query_headlines($line, $excerpt_length, true);
710 }
04f60eb7 711
34440201
AD
712 $is_updated = ($line["last_read"] == "" &&
713 ($line["unread"] != "t" && $line["unread"] != "1"));
f71a669b 714
34440201 715 $tags = explode(",", $line["tag_cache"]);
f71a669b 716
34440201
AD
717 $label_cache = $line["label_cache"];
718 $labels = false;
f71a669b
AD
719
720 if ($label_cache) {
34440201
AD
721 $label_cache = json_decode($label_cache, true);
722
723 if ($label_cache) {
724 if ($label_cache["no-labels"] == 1)
725 $labels = array();
726 else
727 $labels = $label_cache;
728 }
f71a669b 729 }
f71a669b 730
34440201 731 if (!is_array($labels)) $labels = get_article_labels($line["id"]);
04f60eb7 732
34440201
AD
733 //if (!$tags) $tags = get_article_tags($line["id"]);
734 //if (!$labels) $labels = get_article_labels($line["id"]);
04f60eb7 735
34440201 736 $headline_row = array(
04f60eb7
AD
737 "id" => (int)$line["id"],
738 "unread" => sql_bool_to_bool($line["unread"]),
739 "marked" => sql_bool_to_bool($line["marked"]),
740 "published" => sql_bool_to_bool($line["published"]),
34440201 741 "updated" => (int)strtotime($line["updated"]),
04f60eb7
AD
742 "is_updated" => $is_updated,
743 "title" => $line["title"],
744 "link" => $line["link"],
745 "feed_id" => $line["feed_id"],
746 "tags" => $tags,
747 );
748
34440201
AD
749 if ($include_attachments)
750 $headline_row['attachments'] = get_article_enclosures(
751 $line['id']);
04f60eb7 752
34440201
AD
753 if ($show_excerpt)
754 $headline_row["excerpt"] = $line["content_preview"];
04f60eb7 755
34440201 756 if ($show_content) {
04f60eb7 757
34440201
AD
758 if ($sanitize_content) {
759 $headline_row["content"] = sanitize(
760 $line["content"],
761 sql_bool_to_bool($line['hide_images']),
762 false, $line["site_url"], false, $line["id"]);
763 } else {
764 $headline_row["content"] = $line["content"];
765 }
04f60eb7 766 }
04f60eb7 767
34440201
AD
768 // unify label output to ease parsing
769 if ($labels["no-labels"] == 1) $labels = array();
04f60eb7 770
34440201 771 $headline_row["labels"] = $labels;
04f60eb7 772
34440201
AD
773 $headline_row["feed_title"] = $line["feed_title"] ? $line["feed_title"] :
774 $feed_title;
04f60eb7 775
34440201
AD
776 $headline_row["comments_count"] = (int)$line["num_comments"];
777 $headline_row["comments_link"] = $line["comments"];
04f60eb7 778
34440201 779 $headline_row["always_display_attachments"] = sql_bool_to_bool($line["always_display_enclosures"]);
04f60eb7 780
34440201 781 $headline_row["author"] = $line["author"];
4f2a2ca9 782
34440201
AD
783 $headline_row["score"] = (int)$line["score"];
784 $headline_row["note"] = $line["note"];
785 $headline_row["lang"] = $line["lang"];
583dbc56 786
34440201
AD
787 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_RENDER_ARTICLE_API) as $p) {
788 $headline_row = $p->hook_render_article_api(array("headline" => $headline_row));
789 }
b6604c96 790
34440201
AD
791 array_push($headlines, $headline_row);
792 }
5c784e70 793 } else if (is_numeric($result) && $result == -1) {
48fefe2f 794 $headlines_header['first_id_changed'] = true;
04f60eb7
AD
795 }
796
5c784e70 797 return array($headlines, $headlines_header);
04f60eb7
AD
798 }
799
efc6553d 800 function unsubscribeFeed() {
d9c85e0f 801 $feed_id = (int) $this->dbh->escape_string($_REQUEST["feed_id"]);
efc6553d 802
d9c85e0f 803 $result = $this->dbh->query("SELECT id FROM ttrss_feeds WHERE
efc6553d
AD
804 id = '$feed_id' AND owner_uid = ".$_SESSION["uid"]);
805
d9c85e0f 806 if ($this->dbh->num_rows($result) != 0) {
a42c55f0 807 Pref_Feeds::remove_feed($feed_id, $_SESSION["uid"]);
6f7798b6 808 $this->wrap(self::STATUS_OK, array("status" => "OK"));
efc6553d 809 } else {
6f7798b6 810 $this->wrap(self::STATUS_ERR, array("error" => "FEED_NOT_FOUND"));
efc6553d
AD
811 }
812 }
813
814 function subscribeToFeed() {
d9c85e0f
AD
815 $feed_url = $this->dbh->escape_string($_REQUEST["feed_url"]);
816 $category_id = (int) $this->dbh->escape_string($_REQUEST["category_id"]);
817 $login = $this->dbh->escape_string($_REQUEST["login"]);
818 $password = $this->dbh->escape_string($_REQUEST["password"]);
efc6553d
AD
819
820 if ($feed_url) {
6f7798b6 821 $rc = subscribe_to_feed($feed_url, $category_id, $login, $password);
efc6553d 822
6f7798b6 823 $this->wrap(self::STATUS_OK, array("status" => $rc));
efc6553d 824 } else {
6f7798b6 825 $this->wrap(self::STATUS_ERR, array("error" => 'INCORRECT_USAGE'));
efc6553d
AD
826 }
827 }
828
0bb5833b 829 function getFeedTree() {
b3575bd8 830 $include_empty = sql_bool_to_bool($_REQUEST['include_empty']);
66ca7c30 831
a42c55f0 832 $pf = new Pref_Feeds($_REQUEST);
0bb5833b
AD
833
834 $_REQUEST['mode'] = 2;
66ca7c30 835 $_REQUEST['force_show_empty'] = $include_empty;
0bb5833b
AD
836
837 if ($pf){
838 $data = $pf->makefeedtree();
6f7798b6 839 $this->wrap(self::STATUS_OK, array("categories" => $data));
0bb5833b 840 } else {
6f7798b6 841 $this->wrap(self::STATUS_ERR, array("error" =>
0bb5833b
AD
842 'UNABLE_TO_INSTANTIATE_OBJECT'));
843 }
844
845 }
c0a08063 846
dc5a8a21 847 // only works for labels or uncategorized for the time being
c0a08063
AD
848 private function isCategoryEmpty($id) {
849
850 if ($id == -2) {
d9c85e0f 851 $result = $this->dbh->query("SELECT COUNT(*) AS count FROM ttrss_labels2
c0a08063
AD
852 WHERE owner_uid = " . $_SESSION["uid"]);
853
d9c85e0f 854 return $this->dbh->fetch_result($result, 0, "count") == 0;
c0a08063 855
dc5a8a21 856 } else if ($id == 0) {
d9c85e0f 857 $result = $this->dbh->query("SELECT COUNT(*) AS count FROM ttrss_feeds
dc5a8a21
AD
858 WHERE cat_id IS NULL AND owner_uid = " . $_SESSION["uid"]);
859
d9c85e0f 860 return $this->dbh->fetch_result($result, 0, "count") == 0;
dc5a8a21 861
c0a08063
AD
862 }
863
864 return false;
865 }
866
867
de8260cb
AD
868}
869
870?>