X-Git-Url: https://git.wpitchoune.net/gitweb/?p=prss.git;a=blobdiff_plain;f=src%2Fttrss.c;h=c22cf342d133802c889770081f7b0c798dc24c71;hp=ec67cc8af703219b033557e9996fb8fc1f9276e8;hb=28bfd5f51b7a9418a0b8cc1f7749b4dff0f027f8;hpb=b71756ccc346fe32ab35ae23259bf0b3bb016d25 diff --git a/src/ttrss.c b/src/ttrss.c index ec67cc8..c22cf34 100644 --- a/src/ttrss.c +++ b/src/ttrss.c @@ -94,6 +94,41 @@ void ttrss_login(const char *url, const char *user, const char *password) json_object_put(rp); } +const char *ttrss_get_headline_content(struct headline *h) +{ + struct json_object *rp, *rq, *content, *array, *item; + + printf("get_headlines %d\n", h->id); + + if (!h->content) { + rq = create_op("getArticle"); + json_object_object_add(rq, "article_id", + json_object_new_int(h->id)); + + rp = post_json_object(session_url, rq); + + json_object_put(rq); + + array = json_object_object_get(rp, "content"); + + if (!array) + goto release; + + item = json_object_array_get_idx(array, 0); + + if (!item) + goto release; + + content = json_object_object_get(item, "content"); + + h->content = strdup(json_object_get_string(content)); + + release: + json_object_put(rp); + } + return h->content; +} + static struct headline **get_headlines(int feed_id) { struct json_object *rp, *rq, *content, *jheadline, *j; @@ -104,8 +139,6 @@ static struct headline **get_headlines(int feed_id) rq = create_op("getHeadlines"); json_object_object_add(rq, "feed_id", json_object_new_int(feed_id)); - json_object_object_add(rq, "show_excerpt", json_object_new_boolean(1)); - json_object_object_add(rq, "show_content", json_object_new_boolean(1)); rp = post_json_object(session_url, rq); @@ -121,14 +154,14 @@ static struct headline **get_headlines(int feed_id) h = malloc(sizeof(struct headline)); + j = json_object_object_get(jheadline, "id"); + h->id = json_object_get_int(j); + j = json_object_object_get(jheadline, "title"); h->title = strdup(json_object_get_string(j)); - j = json_object_object_get(jheadline, "excerpt"); - h->excerpt = strdup(json_object_get_string(j)); - - j = json_object_object_get(jheadline, "content"); - h->content = strdup(json_object_get_string(j)); + h->excerpt = NULL; + h->content = NULL; j = json_object_object_get(jheadline, "unread"); h->unread = json_object_get_boolean(j);