(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         struct feed **tmp;
42
43         tmp = ws_update_feeds(data);
44         feeds_free(data);
45         data = tmp;
46
47         return data;
48 }
49
50 struct headline **ttrss_feed_get_headlines(struct feed *f)
51 {
52         if (!f->headlines)
53                 ws_update_headlines(f);
54
55         return f->headlines;
56 }
57
58 void ttrss_set_article_unread(int id, int unread)
59 {
60         struct json_object *rp, *rq;
61
62         printf("ttrss_set_article_unread %d %d\n", id, unread);
63
64         rq = ws_request_new("updateArticle");
65         json_object_object_add(rq, "article_ids", json_object_new_int(id));
66         json_object_object_add(rq, "field", json_object_new_int(2));
67         json_object_object_add(rq, "mode", json_object_new_int(unread));
68
69         rp = ws_execute(rq);
70
71         json_object_put(rq);
72         json_object_put(rp);
73 }
74
75 void ttrss_set_config(const char *url, const char *user, const char *pwd)
76 {
77         feeds_free(data);
78         data = NULL;
79         ws_init(url, user, pwd);
80 }