]> git.wh0rd.org - tt-rss.git/blame - classes/api.php
main toolbar: set overflow to hidden
[tt-rss.git] / classes / api.php
CommitLineData
de8260cb 1<?php
de8260cb
AD
2class API extends Handler {
3
f1b3b3f3 4 const API_LEVEL = 14;
de8260cb
AD
5
6 const STATUS_OK = 0;
7 const STATUS_ERR = 1;
8
9 private $seq;
10
11 function before($method) {
12 if (parent::before($method)) {
12f31782 13 header("Content-Type: text/json");
de8260cb
AD
14
15 if (!$_SESSION["uid"] && $method != "login" && $method != "isloggedin") {
6f7798b6 16 $this->wrap(self::STATUS_ERR, array("error" => 'NOT_LOGGED_IN'));
de8260cb
AD
17 return false;
18 }
19
a42c55f0 20 if ($_SESSION["uid"] && $method != "logout" && !get_pref('ENABLE_API_ACCESS')) {
6f7798b6 21 $this->wrap(self::STATUS_ERR, array("error" => 'API_DISABLED'));
de8260cb
AD
22 return false;
23 }
24
25 $this->seq = (int) $_REQUEST['seq'];
26
de8260cb
AD
27 return true;
28 }
29 return false;
30 }
31
32 function wrap($status, $reply) {
33 print json_encode(array("seq" => $this->seq,
34 "status" => $status,
35 "content" => $reply));
36 }
37
38 function getVersion() {
39 $rv = array("version" => VERSION);
6f7798b6 40 $this->wrap(self::STATUS_OK, $rv);
de8260cb
AD
41 }
42
43 function getApiLevel() {
a3b5394a 44 $rv = array("level" => self::API_LEVEL);
6f7798b6 45 $this->wrap(self::STATUS_OK, $rv);
de8260cb
AD
46 }
47
48 function login() {
79bb5589 49 @session_destroy();
5160620c
AD
50 @session_start();
51
d9c85e0f 52 $login = $this->dbh->escape_string($_REQUEST["user"]);
de8260cb
AD
53 $password = $_REQUEST["password"];
54 $password_base64 = base64_decode($_REQUEST["password"]);
55
56 if (SINGLE_USER_MODE) $login = "admin";
57
d9c85e0f 58 $result = $this->dbh->query("SELECT id FROM ttrss_users WHERE login = '$login'");
de8260cb 59
d9c85e0f
AD
60 if ($this->dbh->num_rows($result) != 0) {
61 $uid = $this->dbh->fetch_result($result, 0, "id");
de8260cb
AD
62 } else {
63 $uid = 0;
64 }
65
66 if (!$uid) {
6f7798b6 67 $this->wrap(self::STATUS_ERR, array("error" => "LOGIN_ERROR"));
de8260cb
AD
68 return;
69 }
70
a42c55f0
AD
71 if (get_pref("ENABLE_API_ACCESS", $uid)) {
72 if (authenticate_user($login, $password)) { // try login with normal password
6f7798b6 73 $this->wrap(self::STATUS_OK, array("session_id" => session_id(),
5ba4ebc6 74 "api_level" => self::API_LEVEL));
a42c55f0 75 } else if (authenticate_user($login, $password_base64)) { // else try with base64_decoded password
6f7798b6 76 $this->wrap(self::STATUS_OK, array("session_id" => session_id(),
5ba4ebc6 77 "api_level" => self::API_LEVEL));
de8260cb 78 } else { // else we are not logged in
a2108ee9 79 user_error("Failed login attempt for $login from {$_SERVER['REMOTE_ADDR']}", E_USER_WARNING);
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 {
a230bf88 104 $this->wrap(self::STATUS_OK, array("unread" => Feeds::getGlobalUnread()));
de8260cb
AD
105 }
106 }
107
108 /* Method added for ttrss-reader for Android */
109 function getCounters() {
65af3b2c 110 $this->wrap(self::STATUS_OK, Counters::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)
86a8351c 155 $unread += Feeds::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,
a230bf88 173 "title" => Feeds::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
96ac72bc
AD
186 if (is_numeric($feed_id)) $feed_id = (int) $feed_id;
187
d9c85e0f 188 $limit = (int)$this->dbh->escape_string($_REQUEST["limit"]);
1a740cf6 189
6421b429 190 if (!$limit || $limit >= 200) $limit = 200;
1a740cf6 191
d9c85e0f
AD
192 $offset = (int)$this->dbh->escape_string($_REQUEST["skip"]);
193 $filter = $this->dbh->escape_string($_REQUEST["filter"]);
9955a134
AD
194 $is_cat = sql_bool_to_bool($_REQUEST["is_cat"]);
195 $show_excerpt = sql_bool_to_bool($_REQUEST["show_excerpt"]);
196 $show_content = sql_bool_to_bool($_REQUEST["show_content"]);
de8260cb 197 /* all_articles, unread, adaptive, marked, updated */
d9c85e0f 198 $view_mode = $this->dbh->escape_string($_REQUEST["view_mode"]);
9955a134 199 $include_attachments = sql_bool_to_bool($_REQUEST["include_attachments"]);
d9c85e0f 200 $since_id = (int)$this->dbh->escape_string($_REQUEST["since_id"]);
9955a134 201 $include_nested = sql_bool_to_bool($_REQUEST["include_nested"]);
bd3c6723
AD
202 $sanitize_content = !isset($_REQUEST["sanitize"]) ||
203 sql_bool_to_bool($_REQUEST["sanitize"]);
4baa1afa 204 $force_update = sql_bool_to_bool($_REQUEST["force_update"]);
9997b38e 205 $has_sandbox = sql_bool_to_bool($_REQUEST["has_sandbox"]);
3194a70a 206 $excerpt_length = (int)$this->dbh->escape_string($_REQUEST["excerpt_length"]);
48fefe2f 207 $check_first_id = (int)$this->dbh->escape_string($_REQUEST["check_first_id"]);
5c784e70 208 $include_header = sql_bool_to_bool($_REQUEST["include_header"]);
9997b38e
AD
209
210 $_SESSION['hasSandbox'] = $has_sandbox;
ffd07864 211
19e47ad6
AD
212 $skip_first_id_check = false;
213
0bbd1414 214 $override_order = false;
215 switch ($_REQUEST["order_by"]) {
273c33e5
AD
216 case "title":
217 $override_order = "ttrss_entries.title";
218 break;
0bbd1414 219 case "date_reverse":
e9687f67 220 $override_order = "score DESC, date_entered, updated";
19e47ad6 221 $skip_first_id_check = true;
0bbd1414 222 break;
223 case "feed_dates":
224 $override_order = "updated DESC";
225 break;
226 }
ffd07864 227
3e4af5b0
AD
228 /* do not rely on params below */
229
d9c85e0f 230 $search = $this->dbh->escape_string($_REQUEST["search"]);
3e4af5b0 231
5c784e70 232 list($headlines, $headlines_header) = $this->api_get_headlines($feed_id, $limit, $offset,
0bbd1414 233 $filter, $is_cat, $show_excerpt, $show_content, $view_mode, $override_order,
9090b874 234 $include_attachments, $since_id, $search,
19e47ad6 235 $include_nested, $sanitize_content, $force_update, $excerpt_length, $check_first_id, $skip_first_id_check);
de8260cb 236
5c784e70
AD
237 if ($include_header) {
238 $this->wrap(self::STATUS_OK, array($headlines_header, $headlines));
239 } else {
240 $this->wrap(self::STATUS_OK, $headlines);
241 }
de8260cb 242 } else {
6f7798b6 243 $this->wrap(self::STATUS_ERR, array("error" => 'INCORRECT_USAGE'));
de8260cb
AD
244 }
245 }
246
247 function updateArticle() {
d9c85e0f
AD
248 $article_ids = array_filter(explode(",", $this->dbh->escape_string($_REQUEST["article_ids"])), is_numeric);
249 $mode = (int) $this->dbh->escape_string($_REQUEST["mode"]);
250 $data = $this->dbh->escape_string($_REQUEST["data"]);
251 $field_raw = (int)$this->dbh->escape_string($_REQUEST["field"]);
de8260cb
AD
252
253 $field = "";
254 $set_to = "";
255
256 switch ($field_raw) {
257 case 0:
258 $field = "marked";
7873d588 259 $additional_fields = ",last_marked = NOW()";
de8260cb
AD
260 break;
261 case 1:
262 $field = "published";
7873d588 263 $additional_fields = ",last_published = NOW()";
de8260cb
AD
264 break;
265 case 2:
266 $field = "unread";
7873d588 267 $additional_fields = ",last_read = NOW()";
de8260cb
AD
268 break;
269 case 3:
270 $field = "note";
271 };
272
273 switch ($mode) {
274 case 1:
275 $set_to = "true";
276 break;
277 case 0:
278 $set_to = "false";
279 break;
280 case 2:
281 $set_to = "NOT $field";
282 break;
283 }
284
285 if ($field == "note") $set_to = "'$data'";
286
287 if ($field && $set_to && count($article_ids) > 0) {
288
289 $article_ids = join(", ", $article_ids);
290
d9c85e0f 291 $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 292
d9c85e0f 293 $num_updated = $this->dbh->affected_rows($result);
de8260cb
AD
294
295 if ($num_updated > 0 && $field == "unread") {
d9c85e0f 296 $result = $this->dbh->query("SELECT DISTINCT feed_id FROM ttrss_user_entries
de8260cb
AD
297 WHERE ref_id IN ($article_ids)");
298
d9c85e0f 299 while ($line = $this->dbh->fetch_assoc($result)) {
2ed0d6c4 300 CCache::update($line["feed_id"], $_SESSION["uid"]);
de8260cb
AD
301 }
302 }
303
6f7798b6 304 $this->wrap(self::STATUS_OK, array("status" => "OK",
de8260cb
AD
305 "updated" => $num_updated));
306
307 } else {
6f7798b6 308 $this->wrap(self::STATUS_ERR, array("error" => 'INCORRECT_USAGE'));
de8260cb
AD
309 }
310
311 }
312
313 function getArticle() {
314
d9c85e0f 315 $article_id = join(",", array_filter(explode(",", $this->dbh->escape_string($_REQUEST["article_id"])), is_numeric));
73c77ab0
J
316 $sanitize_content = !isset($_REQUEST["sanitize"]) ||
317 sql_bool_to_bool($_REQUEST["sanitize"]);
de8260cb 318
6f81395d 319 if ($article_id) {
de8260cb 320
18186149 321 $query = "SELECT id,guid,title,link,content,feed_id,comments,int_id,
429ff9af 322 marked,unread,published,score,note,lang,
6f81395d 323 ".SUBSTRING_FOR_DATE."(updated,1,16) as updated,
73c77ab0
J
324 author,(SELECT title FROM ttrss_feeds WHERE id = feed_id) AS feed_title,
325 (SELECT site_url FROM ttrss_feeds WHERE id = feed_id) AS site_url,
326 (SELECT hide_images FROM ttrss_feeds WHERE id = feed_id) AS hide_images
6f81395d
AD
327 FROM ttrss_entries,ttrss_user_entries
328 WHERE id IN ($article_id) AND ref_id = id AND owner_uid = " .
329 $_SESSION["uid"] ;
de8260cb 330
6f81395d 331 $result = $this->dbh->query($query);
de8260cb 332
6f81395d 333 $articles = array();
de8260cb 334
6f81395d 335 if ($this->dbh->num_rows($result) != 0) {
0db61af8 336
6f81395d 337 while ($line = $this->dbh->fetch_assoc($result)) {
0db61af8 338
7e5f8d9f 339 $attachments = Article::get_article_enclosures($line['id']);
de8260cb 340
6f81395d
AD
341 $article = array(
342 "id" => $line["id"],
18186149 343 "guid" => $line["guid"],
6f81395d
AD
344 "title" => $line["title"],
345 "link" => $line["link"],
4a0da0e5 346 "labels" => Article::get_article_labels($line['id']),
6f81395d
AD
347 "unread" => sql_bool_to_bool($line["unread"]),
348 "marked" => sql_bool_to_bool($line["marked"]),
349 "published" => sql_bool_to_bool($line["published"]),
350 "comments" => $line["comments"],
351 "author" => $line["author"],
352 "updated" => (int) strtotime($line["updated"]),
6f81395d
AD
353 "feed_id" => $line["feed_id"],
354 "attachments" => $attachments,
355 "score" => (int)$line["score"],
21bb3c06 356 "feed_title" => $line["feed_title"],
429ff9af
AD
357 "note" => $line["note"],
358 "lang" => $line["lang"]
6f81395d
AD
359 );
360
73c77ab0
J
361 if ($sanitize_content) {
362 $article["content"] = sanitize(
363 $line["content"],
364 sql_bool_to_bool($line['hide_images']),
365 false, $line["site_url"], false, $line["id"]);
366 } else {
367 $article["content"] = $line["content"];
368 }
369
6f81395d
AD
370 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_RENDER_ARTICLE_API) as $p) {
371 $article = $p->hook_render_article_api(array("article" => $article));
372 }
373
374
375 array_push($articles, $article);
de8260cb 376
6f81395d
AD
377 }
378 }
de8260cb 379
6f81395d
AD
380 $this->wrap(self::STATUS_OK, $articles);
381 } else {
382 $this->wrap(self::STATUS_ERR, array("error" => 'INCORRECT_USAGE'));
383 }
de8260cb
AD
384 }
385
386 function getConfig() {
387 $config = array(
388 "icons_dir" => ICONS_DIR,
389 "icons_url" => ICONS_URL);
390
391 $config["daemon_is_running"] = file_is_locked("update_daemon.lock");
392
d9c85e0f 393 $result = $this->dbh->query("SELECT COUNT(*) AS cf FROM
de8260cb
AD
394 ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
395
d9c85e0f 396 $num_feeds = $this->dbh->fetch_result($result, 0, "cf");
de8260cb
AD
397
398 $config["num_feeds"] = (int)$num_feeds;
399
6f7798b6 400 $this->wrap(self::STATUS_OK, $config);
de8260cb
AD
401 }
402
403 function updateFeed() {
d9c85e0f 404 $feed_id = (int) $this->dbh->escape_string($_REQUEST["feed_id"]);
de8260cb 405
29c92d7b 406 if (!ini_get("open_basedir")) {
e6c886bf 407 RSSUtils::update_rss_feed($feed_id);
29c92d7b 408 }
de8260cb 409
6f7798b6 410 $this->wrap(self::STATUS_OK, array("status" => "OK"));
de8260cb
AD
411 }
412
413 function catchupFeed() {
d9c85e0f
AD
414 $feed_id = $this->dbh->escape_string($_REQUEST["feed_id"]);
415 $is_cat = $this->dbh->escape_string($_REQUEST["is_cat"]);
de8260cb 416
86a8351c 417 Feeds::catchup_feed($feed_id, $is_cat);
de8260cb 418
6f7798b6 419 $this->wrap(self::STATUS_OK, array("status" => "OK"));
de8260cb
AD
420 }
421
422 function getPref() {
d9c85e0f 423 $pref_name = $this->dbh->escape_string($_REQUEST["pref_name"]);
de8260cb 424
6f7798b6 425 $this->wrap(self::STATUS_OK, array("value" => get_pref($pref_name)));
de8260cb
AD
426 }
427
ea1c2903 428 function getLabels() {
d9c85e0f 429 //$article_ids = array_filter(explode(",", $this->dbh->escape_string($_REQUEST["article_ids"])), is_numeric);
ea1c2903
AD
430
431 $article_id = (int)$_REQUEST['article_id'];
432
433 $rv = array();
434
d9c85e0f 435 $result = $this->dbh->query("SELECT id, caption, fg_color, bg_color
ea1c2903
AD
436 FROM ttrss_labels2
437 WHERE owner_uid = '".$_SESSION['uid']."' ORDER BY caption");
438
439 if ($article_id)
4a0da0e5 440 $article_labels = Article::get_article_labels($article_id);
ea1c2903
AD
441 else
442 $article_labels = array();
443
d9c85e0f 444 while ($line = $this->dbh->fetch_assoc($result)) {
ea1c2903
AD
445
446 $checked = false;
447 foreach ($article_labels as $al) {
7c9b5a3f 448 if (Labels::feed_to_label_id($al[0]) == $line['id']) {
ea1c2903
AD
449 $checked = true;
450 break;
451 }
452 }
453
454 array_push($rv, array(
7c9b5a3f 455 "id" => (int)Labels::label_to_feed_id($line['id']),
ea1c2903
AD
456 "caption" => $line['caption'],
457 "fg_color" => $line['fg_color'],
458 "bg_color" => $line['bg_color'],
459 "checked" => $checked));
460 }
461
6f7798b6 462 $this->wrap(self::STATUS_OK, $rv);
ea1c2903
AD
463 }
464
396bfdf9
AD
465 function setArticleLabel() {
466
d9c85e0f
AD
467 $article_ids = array_filter(explode(",", $this->dbh->escape_string($_REQUEST["article_ids"])), is_numeric);
468 $label_id = (int) $this->dbh->escape_string($_REQUEST['label_id']);
3517d363 469 $assign = (bool) ($this->dbh->escape_string($_REQUEST['assign']) == "true");
396bfdf9 470
7c9b5a3f
AD
471 $label = $this->dbh->escape_string(Labels::find_caption(
472 Labels::feed_to_label_id($label_id), $_SESSION["uid"]));
396bfdf9
AD
473
474 $num_updated = 0;
475
476 if ($label) {
477
478 foreach ($article_ids as $id) {
479
480 if ($assign)
7c9b5a3f 481 Labels::add_article($id, $label, $_SESSION["uid"]);
396bfdf9 482 else
7c9b5a3f 483 Labels::remove_article($id, $label, $_SESSION["uid"]);
396bfdf9
AD
484
485 ++$num_updated;
486
487 }
488 }
489
6f7798b6 490 $this->wrap(self::STATUS_OK, array("status" => "OK",
396bfdf9
AD
491 "updated" => $num_updated));
492
493 }
494
79f9bef7 495 function index($method) {
1ffe3391 496 $plugin = PluginHost::getInstance()->get_api_method(strtolower($method));
79f9bef7
AD
497
498 if ($plugin && method_exists($plugin, $method)) {
499 $reply = $plugin->$method();
500
6f7798b6 501 $this->wrap($reply[0], $reply[1]);
79f9bef7
AD
502
503 } else {
6f7798b6 504 $this->wrap(self::STATUS_ERR, array("error" => 'UNKNOWN_METHOD', "method" => $method));
79f9bef7 505 }
de8260cb
AD
506 }
507
8361e724 508 function shareToPublished() {
d9c85e0f
AD
509 $title = $this->dbh->escape_string(strip_tags($_REQUEST["title"]));
510 $url = $this->dbh->escape_string(strip_tags($_REQUEST["url"]));
511 $content = $this->dbh->escape_string(strip_tags($_REQUEST["content"]));
8361e724 512
a42c55f0 513 if (Article::create_published_article($title, $url, $content, "", $_SESSION["uid"])) {
6f7798b6 514 $this->wrap(self::STATUS_OK, array("status" => 'OK'));
8361e724 515 } else {
6f7798b6 516 $this->wrap(self::STATUS_ERR, array("error" => 'Publishing failed'));
8361e724
AD
517 }
518 }
04f60eb7 519
a42c55f0 520 static function api_get_feeds($cat_id, $unread_only, $limit, $offset, $include_nested = false) {
04f60eb7
AD
521
522 $feeds = array();
523
524 /* Labels */
525
526 if ($cat_id == -4 || $cat_id == -2) {
65af3b2c 527 $counters = Counters::getLabelCounters(true);
04f60eb7
AD
528
529 foreach (array_values($counters) as $cv) {
530
531 $unread = $cv["counter"];
532
533 if ($unread || !$unread_only) {
534
535 $row = array(
1d3cbe31 536 "id" => (int) $cv["id"],
04f60eb7
AD
537 "title" => $cv["description"],
538 "unread" => $cv["counter"],
539 "cat_id" => -2,
540 );
541
542 array_push($feeds, $row);
543 }
544 }
545 }
546
547 /* Virtual feeds */
548
549 if ($cat_id == -4 || $cat_id == -1) {
550 foreach (array(-1, -2, -3, -4, -6, 0) as $i) {
a42c55f0 551 $unread = getFeedUnread($i);
04f60eb7
AD
552
553 if ($unread || !$unread_only) {
86a8351c 554 $title = Feeds::getFeedTitle($i);
04f60eb7
AD
555
556 $row = array(
557 "id" => $i,
558 "title" => $title,
559 "unread" => $unread,
560 "cat_id" => -1,
561 );
562 array_push($feeds, $row);
563 }
564
565 }
566 }
567
568 /* Child cats */
569
570 if ($include_nested && $cat_id) {
a42c55f0 571 $result = db_query("SELECT
c053b976 572 id, title, order_id FROM ttrss_feed_categories
04f60eb7
AD
573 WHERE parent_cat = '$cat_id' AND owner_uid = " . $_SESSION["uid"] .
574 " ORDER BY id, title");
575
576 while ($line = db_fetch_assoc($result)) {
a42c55f0 577 $unread = getFeedUnread($line["id"], true) +
86a8351c 578 Feeds::getCategoryChildrenUnread($line["id"]);
04f60eb7
AD
579
580 if ($unread || !$unread_only) {
581 $row = array(
1d3cbe31 582 "id" => (int) $line["id"],
04f60eb7
AD
583 "title" => $line["title"],
584 "unread" => $unread,
585 "is_cat" => true,
c053b976 586 "order_id" => (int) $line["order_id"]
04f60eb7
AD
587 );
588 array_push($feeds, $row);
589 }
590 }
591 }
592
593 /* Real feeds */
594
595 if ($limit) {
596 $limit_qpart = "LIMIT $limit OFFSET $offset";
597 } else {
598 $limit_qpart = "";
599 }
600
601 if ($cat_id == -4 || $cat_id == -3) {
a42c55f0 602 $result = db_query("SELECT
04f60eb7
AD
603 id, feed_url, cat_id, title, order_id, ".
604 SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
605 FROM ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"] .
606 " ORDER BY cat_id, title " . $limit_qpart);
607 } else {
608
609 if ($cat_id)
610 $cat_qpart = "cat_id = '$cat_id'";
611 else
612 $cat_qpart = "cat_id IS NULL";
613
a42c55f0 614 $result = db_query("SELECT
04f60eb7
AD
615 id, feed_url, cat_id, title, order_id, ".
616 SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
617 FROM ttrss_feeds WHERE
618 $cat_qpart AND owner_uid = " . $_SESSION["uid"] .
619 " ORDER BY cat_id, title " . $limit_qpart);
620 }
621
622 while ($line = db_fetch_assoc($result)) {
623
a42c55f0 624 $unread = getFeedUnread($line["id"]);
04f60eb7
AD
625
626 $has_icon = feed_has_icon($line['id']);
627
628 if ($unread || !$unread_only) {
629
630 $row = array(
631 "feed_url" => $line["feed_url"],
632 "title" => $line["title"],
633 "id" => (int)$line["id"],
634 "unread" => (int)$unread,
635 "has_icon" => $has_icon,
636 "cat_id" => (int)$line["cat_id"],
ef3da31c 637 "last_updated" => (int) strtotime($line["last_updated"]),
04f60eb7
AD
638 "order_id" => (int) $line["order_id"],
639 );
640
641 array_push($feeds, $row);
642 }
643 }
644
645 return $feeds;
646 }
647
7b55001e
AD
648 /**
649 * @SuppressWarnings(PHPMD.UnusedFormalParameter)
650 */
a42c55f0 651 static function api_get_headlines($feed_id, $limit, $offset,
04f60eb7
AD
652 $filter, $is_cat, $show_excerpt, $show_content, $view_mode, $order,
653 $include_attachments, $since_id,
5c784e70 654 $search = "", $include_nested = false, $sanitize_content = true,
19e47ad6 655 $force_update = false, $excerpt_length = 100, $check_first_id = false, $skip_first_id_check = false) {
4baa1afa
AD
656
657 if ($force_update && $feed_id > 0 && is_numeric($feed_id)) {
658 // Update the feed if required with some basic flood control
659
660 $result = db_query(
661 "SELECT cache_images,".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
662 FROM ttrss_feeds WHERE id = '$feed_id'");
663
664 if (db_num_rows($result) != 0) {
665 $last_updated = strtotime(db_fetch_result($result, 0, "last_updated"));
666 $cache_images = sql_bool_to_bool(db_fetch_result($result, 0, "cache_images"));
667
668 if (!$cache_images && time() - $last_updated > 120) {
e6c886bf 669 RSSUtils::update_rss_feed($feed_id, true);
4baa1afa
AD
670 } else {
671 db_query("UPDATE ttrss_feeds SET last_updated = '1970-01-01', last_update_started = '1970-01-01'
672 WHERE id = '$feed_id'");
673 }
674 }
675 }
04f60eb7 676
f5a0fb8b
AD
677 $params = array(
678 "feed" => $feed_id,
679 "limit" => $limit,
680 "view_mode" => $view_mode,
681 "cat_view" => $is_cat,
682 "search" => $search,
683 "override_order" => $order,
684 "offset" => $offset,
685 "since_id" => $since_id,
686 "include_children" => $include_nested,
19e47ad6
AD
687 "check_first_id" => $check_first_id,
688 "skip_first_id_check" => $skip_first_id_check
f5a0fb8b
AD
689 );
690
aeb1abed 691 $qfh_ret = Feeds::queryFeedHeadlines($params);
f5a0fb8b 692
34440201 693 $result = $qfh_ret[0];
04f60eb7 694 $feed_title = $qfh_ret[1];
48fefe2f 695 $first_id = $qfh_ret[6];
04f60eb7
AD
696
697 $headlines = array();
b0ce3d33
AD
698
699 $headlines_header = array(
700 'id' => $feed_id,
48fefe2f 701 'first_id' => $first_id,
b0ce3d33 702 'is_cat' => $is_cat);
4f2a2ca9 703
ec57104d 704 if (!is_numeric($result)) {
34440201
AD
705 while ($line = db_fetch_assoc($result)) {
706 $line["content_preview"] = truncate_string(strip_tags($line["content"]), $excerpt_length);
707 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
708 $line = $p->hook_query_headlines($line, $excerpt_length, true);
709 }
04f60eb7 710
34440201
AD
711 $is_updated = ($line["last_read"] == "" &&
712 ($line["unread"] != "t" && $line["unread"] != "1"));
f71a669b 713
34440201 714 $tags = explode(",", $line["tag_cache"]);
f71a669b 715
34440201
AD
716 $label_cache = $line["label_cache"];
717 $labels = false;
f71a669b
AD
718
719 if ($label_cache) {
34440201
AD
720 $label_cache = json_decode($label_cache, true);
721
722 if ($label_cache) {
723 if ($label_cache["no-labels"] == 1)
724 $labels = array();
725 else
726 $labels = $label_cache;
727 }
f71a669b 728 }
f71a669b 729
4a0da0e5 730 if (!is_array($labels)) $labels = Article::get_article_labels($line["id"]);
04f60eb7 731
34440201 732 $headline_row = array(
04f60eb7 733 "id" => (int)$line["id"],
18186149 734 "guid" => $line["guid"],
04f60eb7
AD
735 "unread" => sql_bool_to_bool($line["unread"]),
736 "marked" => sql_bool_to_bool($line["marked"]),
737 "published" => sql_bool_to_bool($line["published"]),
34440201 738 "updated" => (int)strtotime($line["updated"]),
04f60eb7
AD
739 "is_updated" => $is_updated,
740 "title" => $line["title"],
741 "link" => $line["link"],
742 "feed_id" => $line["feed_id"],
743 "tags" => $tags,
744 );
745
34440201 746 if ($include_attachments)
7e5f8d9f 747 $headline_row['attachments'] = Article::get_article_enclosures(
34440201 748 $line['id']);
04f60eb7 749
34440201
AD
750 if ($show_excerpt)
751 $headline_row["excerpt"] = $line["content_preview"];
04f60eb7 752
34440201 753 if ($show_content) {
04f60eb7 754
34440201
AD
755 if ($sanitize_content) {
756 $headline_row["content"] = sanitize(
757 $line["content"],
758 sql_bool_to_bool($line['hide_images']),
759 false, $line["site_url"], false, $line["id"]);
760 } else {
761 $headline_row["content"] = $line["content"];
762 }
04f60eb7 763 }
04f60eb7 764
34440201
AD
765 // unify label output to ease parsing
766 if ($labels["no-labels"] == 1) $labels = array();
04f60eb7 767
34440201 768 $headline_row["labels"] = $labels;
04f60eb7 769
34440201
AD
770 $headline_row["feed_title"] = $line["feed_title"] ? $line["feed_title"] :
771 $feed_title;
04f60eb7 772
34440201
AD
773 $headline_row["comments_count"] = (int)$line["num_comments"];
774 $headline_row["comments_link"] = $line["comments"];
04f60eb7 775
34440201 776 $headline_row["always_display_attachments"] = sql_bool_to_bool($line["always_display_enclosures"]);
04f60eb7 777
34440201 778 $headline_row["author"] = $line["author"];
4f2a2ca9 779
34440201
AD
780 $headline_row["score"] = (int)$line["score"];
781 $headline_row["note"] = $line["note"];
782 $headline_row["lang"] = $line["lang"];
583dbc56 783
34440201
AD
784 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_RENDER_ARTICLE_API) as $p) {
785 $headline_row = $p->hook_render_article_api(array("headline" => $headline_row));
786 }
b6604c96 787
34440201
AD
788 array_push($headlines, $headline_row);
789 }
5c784e70 790 } else if (is_numeric($result) && $result == -1) {
48fefe2f 791 $headlines_header['first_id_changed'] = true;
04f60eb7
AD
792 }
793
5c784e70 794 return array($headlines, $headlines_header);
04f60eb7
AD
795 }
796
efc6553d 797 function unsubscribeFeed() {
d9c85e0f 798 $feed_id = (int) $this->dbh->escape_string($_REQUEST["feed_id"]);
efc6553d 799
d9c85e0f 800 $result = $this->dbh->query("SELECT id FROM ttrss_feeds WHERE
efc6553d
AD
801 id = '$feed_id' AND owner_uid = ".$_SESSION["uid"]);
802
d9c85e0f 803 if ($this->dbh->num_rows($result) != 0) {
a42c55f0 804 Pref_Feeds::remove_feed($feed_id, $_SESSION["uid"]);
6f7798b6 805 $this->wrap(self::STATUS_OK, array("status" => "OK"));
efc6553d 806 } else {
6f7798b6 807 $this->wrap(self::STATUS_ERR, array("error" => "FEED_NOT_FOUND"));
efc6553d
AD
808 }
809 }
810
811 function subscribeToFeed() {
d9c85e0f
AD
812 $feed_url = $this->dbh->escape_string($_REQUEST["feed_url"]);
813 $category_id = (int) $this->dbh->escape_string($_REQUEST["category_id"]);
814 $login = $this->dbh->escape_string($_REQUEST["login"]);
815 $password = $this->dbh->escape_string($_REQUEST["password"]);
efc6553d
AD
816
817 if ($feed_url) {
86a8351c 818 $rc = Feeds::subscribe_to_feed($feed_url, $category_id, $login, $password);
efc6553d 819
6f7798b6 820 $this->wrap(self::STATUS_OK, array("status" => $rc));
efc6553d 821 } else {
6f7798b6 822 $this->wrap(self::STATUS_ERR, array("error" => 'INCORRECT_USAGE'));
efc6553d
AD
823 }
824 }
825
0bb5833b 826 function getFeedTree() {
b3575bd8 827 $include_empty = sql_bool_to_bool($_REQUEST['include_empty']);
66ca7c30 828
a42c55f0 829 $pf = new Pref_Feeds($_REQUEST);
0bb5833b
AD
830
831 $_REQUEST['mode'] = 2;
66ca7c30 832 $_REQUEST['force_show_empty'] = $include_empty;
0bb5833b
AD
833
834 if ($pf){
835 $data = $pf->makefeedtree();
6f7798b6 836 $this->wrap(self::STATUS_OK, array("categories" => $data));
0bb5833b 837 } else {
6f7798b6 838 $this->wrap(self::STATUS_ERR, array("error" =>
0bb5833b
AD
839 'UNABLE_TO_INSTANTIATE_OBJECT'));
840 }
841
842 }
c0a08063 843
dc5a8a21 844 // only works for labels or uncategorized for the time being
c0a08063
AD
845 private function isCategoryEmpty($id) {
846
847 if ($id == -2) {
d9c85e0f 848 $result = $this->dbh->query("SELECT COUNT(*) AS count FROM ttrss_labels2
c0a08063
AD
849 WHERE owner_uid = " . $_SESSION["uid"]);
850
d9c85e0f 851 return $this->dbh->fetch_result($result, 0, "count") == 0;
c0a08063 852
dc5a8a21 853 } else if ($id == 0) {
d9c85e0f 854 $result = $this->dbh->query("SELECT COUNT(*) AS count FROM ttrss_feeds
dc5a8a21
AD
855 WHERE cat_id IS NULL AND owner_uid = " . $_SESSION["uid"]);
856
d9c85e0f 857 return $this->dbh->fetch_result($result, 0, "count") == 0;
dc5a8a21 858
c0a08063
AD
859 }
860
861 return false;
862 }
863
864
891df346 865}