(no commit message)
[prss.git] / src / ttrss.c
1 /*
2  * Copyright (C) 2010-2013 jeanfi@gmail.com
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA
18  */
19
20 #include <stdio.h>
21 #include <string.h>
22
23 #include <json/json.h>
24
25 #include "http.h"
26 #include "ttrss_ws.h"
27 #include "url.h"
28
29 static struct feed **data;
30
31 const char *ttrss_get_headline_content(struct headline *h)
32 {
33         if (!h->content)
34                 h->content = ws_get_article_content(h->id);
35
36         return h->content;
37 }
38
39 struct feed **ttrss_get_feeds()
40 {
41         data = ws_update_feeds(data);
42
43         return data;
44 }
45
46 struct headline **ttrss_feed_get_headlines(struct feed *f)
47 {
48         if (!f->headlines)
49                 ws_update_headlines(f);
50
51         return f->headlines;
52 }
53
54 void ttrss_set_article_unread(int id, int unread)
55 {       
56         struct json_object *rp, *rq;
57
58         printf("ttrss_set_article_unread %d %d\n", id, unread);
59
60         rq = ws_request_new("updateArticle");
61         json_object_object_add(rq, "article_ids", json_object_new_int(id));
62         json_object_object_add(rq, "field", json_object_new_int(2));
63         json_object_object_add(rq, "mode", json_object_new_int(unread));
64
65         rp = ws_execute(rq);
66
67         json_object_put(rq);
68         json_object_put(rp);
69 }
70
71 void ttrss_set_config(const char *url, const char *user, const char *pwd)
72 {
73         feeds_free(data);
74         data = NULL;
75         ws_init(url, user, pwd);
76 }
77
78 struct feed *ttrss_get_feed(int id)
79 {
80         return feeds_get_feed(data, id);
81 }
82
83 struct headline *ttrss_get_headline(int id)
84 {
85         return feeds_get_headline(data, id);
86 }