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