X-Git-Url: https://git.wpitchoune.net/gitweb/?p=prss.git;a=blobdiff_plain;f=src%2Fttrss.c;h=3649b071efb1f98dc70c5592b08659ca9aa47747;hp=ae4a1c9ad1559a5c2cb608bedc03da4f4ba2b7a4;hb=0d88bb9ed245be97f3120dad9c3c1604cd9c4183;hpb=1070b8de5c6cdf5e5958675a1b90f0af3e3f4688 diff --git a/src/ttrss.c b/src/ttrss.c index ae4a1c9..3649b07 100644 --- a/src/ttrss.c +++ b/src/ttrss.c @@ -31,6 +31,56 @@ static char *session_url; static char *session_user; static char *session_pwd; +static int list_length(void **list) +{ + int n; + + if (!list) + return 0; + + n = 0; + while(*list) { + n++; + list++; + } + + return n; +} + +static void **list_add(void **list, void *item) +{ + int n; + void **result; + + n = list_length(list); + + result = malloc((n + 1 + 1) * sizeof(void *)); + + if (list) + memcpy(result, list, n * sizeof(void *)); + + result[n] = item; + result[n + 1] = NULL; + + return result; +} + + +struct headline *feed_get_headline(struct feed *feed, int id) +{ + struct headline **headlines; + + headlines = feed->headlines; + if (headlines) + while (*headlines) { + if ((*headlines)->id == id) + return *headlines; + headlines++; + } + + return NULL; +} + void ws_request_add_att_str(json_object *rq, const char *k, const char *str) { json_object_object_add(rq, k, json_object_new_string(str)); @@ -94,8 +144,11 @@ struct json_object *ws_execute(struct json_object *rq) if (rp) { content = ws_reply_get_content(rp); - if (content && !json_object_object_get(rp, "error")) + if (content && !json_object_object_get(rp, "error")) { + json_object_get(content); + json_object_put(rp); return content; + } json_object_put(rp); } @@ -105,7 +158,7 @@ struct json_object *ws_execute(struct json_object *rq) int ws_get_api_version() { - struct json_object *rp, *rq, *j; + struct json_object *rp, *rq; int v; rq = ws_request_new("getApiLevel"); @@ -115,12 +168,7 @@ int ws_get_api_version() json_object_put(rq); if (rp) { - j = json_object_object_get(rp, "level"); - - if (j) - v = json_object_get_int(j); - else - v = 0; + v = json_object_get_int(json_object_object_get(rp, "level")); json_object_put(rp); } else { @@ -144,11 +192,7 @@ char *ws_login() if (rp) { j = json_object_object_get(rp, "session_id"); - - if (j) - str = strdup(json_object_get_string(j)); - else - str = NULL; + str = strdup(json_object_get_string(j)); json_object_put(rp); } else { @@ -185,68 +229,68 @@ int ws_open_session() return result; } -const char *ttrss_get_headline_content(struct headline *h) +char *ws_get_article_content(int id) { - struct json_object *rp, *rq, *content, *array, *item; - - printf("get_headlines %d\n", h->id); - - if (!h->content) { - rq = ws_request_new("getArticle"); - json_object_object_add(rq, "article_id", - json_object_new_int(h->id)); - - rp = http_json_get(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); + struct json_object *rp, *rq, *content, *item; + char *str; - if (!item) - goto release; + rq = ws_request_new("getArticle"); + ws_request_add_att_int(rq, "article_id", id); + + rp = ws_execute(rq); + + json_object_put(rq); - content = json_object_object_get(item, "content"); + str = NULL; - h->content = strdup(json_object_get_string(content)); + if (rp) { + item = json_object_array_get_idx(rp, 0); + + if (item) { + content = json_object_object_get(item, "content"); - release: + str = strdup(json_object_get_string(content)); + } + json_object_put(rp); } - return h->content; + + return str; } -static struct headline **get_headlines(int feed_id) +int ws_update_headlines(struct feed *feed) { - struct json_object *rp, *rq, *content, *jheadline, *j; - int i, n; - struct headline **headlines, *h; - - printf("get_headlines %d\n", feed_id); + struct json_object *rp, *rq, *jheadline, *j; + int i, n, err, hid; + struct headline *h, **tmp; rq = ws_request_new("getHeadlines"); - json_object_object_add(rq, "feed_id", json_object_new_int(feed_id)); + ws_request_add_att_int(rq, "feed_id", feed->id); - rp = http_json_get(session_url, rq); + rp = ws_execute(rq); json_object_put(rq); - content = json_object_object_get(rp, "content"); - - if (content) { - n = json_object_array_length(content); - headlines = malloc((n+1)*sizeof(struct headline *)); + if (rp) { + n = json_object_array_length(rp); for (i = 0; i < n; i++) { - jheadline = json_object_array_get_idx(content, i); - - h = malloc(sizeof(struct headline)); + jheadline = json_object_array_get_idx(rp, i); j = json_object_object_get(jheadline, "id"); - h->id = json_object_get_int(j); + hid = json_object_get_int(j); + h = feed_get_headline(feed, hid); + + if (!h) { + h = malloc(sizeof(struct headline)); + h->id = hid; + h->excerpt = NULL; + h->content = NULL; + + tmp = (struct headline **)list_add((void **)feed->headlines, h); + if (feed->headlines) + free(feed->headlines); + feed->headlines = tmp; + } j = json_object_object_get(jheadline, "title"); h->title = strdup(json_object_get_string(j)); @@ -254,59 +298,26 @@ static struct headline **get_headlines(int feed_id) j = json_object_object_get(jheadline, "link"); h->url = 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); - - headlines[i] = h; } - headlines[n] = NULL; + err = 0; } else { - headlines = NULL; + err = 1; } json_object_put(rp); - - printf("get_headlines %d end\n", feed_id); - - return headlines; + return !err; } -static int feeds_length(struct feed **list) +const char *ttrss_get_headline_content(struct headline *h) { - int n; - - if (!list) - return 0; - - n = 0; - while(*list) { - n++; - list++; - } + if (!h->content) + h->content = ws_get_article_content(h->id); - return n; + return h->content; } -static struct feed **feeds_add(struct feed **feeds, struct feed *feed) -{ - int n; - struct feed **result; - - n = feeds_length(feeds); - - result = malloc((n + 1 + 1) * sizeof(struct feed *)); - - if (feeds) - memcpy(result, feeds, n * sizeof(struct feed *)); - - result[n] = feed; - result[n + 1] = NULL; - - return result; -} struct feed **ttrss_get_feeds() { @@ -346,7 +357,7 @@ struct feed **ttrss_get_feeds() feed->headlines = NULL; - tmp = feeds_add(feeds, feed); + tmp = (struct feed **)list_add((void **)feeds, feed); free(feeds); feeds = tmp; } @@ -364,7 +375,7 @@ struct feed **ttrss_get_feeds() struct headline **ttrss_get_headlines(struct feed *f) { if (!f->headlines) - f->headlines = get_headlines(f->id); + ws_update_headlines(f); return f->headlines; }