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