X-Git-Url: https://git.wpitchoune.net/gitweb/?p=prss.git;a=blobdiff_plain;f=src%2Fttrss_ws.c;h=654374f49259070d167f70b26f43cb08dca456f2;hp=3aa49593dd7b6e868436f2d068e39b5c0807e2c8;hb=bc5b505b6dfc1103b226e5449c90ff5e9048d4ef;hpb=40d30b549ad41af63da74a3c7cb36db7f5e089e7 diff --git a/src/ttrss_ws.c b/src/ttrss_ws.c index 3aa4959..654374f 100644 --- a/src/ttrss_ws.c +++ b/src/ttrss_ws.c @@ -30,7 +30,7 @@ #include "ttrss_ws.h" #include "url.h" -static pthread_mutex_t *lock; +static pthread_mutex_t lock; static char *session_id; static char *session_url; @@ -47,6 +47,11 @@ void ws_request_add_att_int(json_object *rq, const char *k, int v) json_object_object_add(rq, k, json_object_new_int(v)); } +void ws_request_add_att_bool(json_object *rq, const char *k, int v) +{ + json_object_object_add(rq, k, json_object_new_boolean(v)); +} + struct json_object *ws_request_new(const char *op) { struct json_object *rq; @@ -129,7 +134,7 @@ struct json_object *ws_execute(struct json_object *rq) struct json_object *result; log_debug("ws_execute()"); - pthread_mutex_lock(lock); + pthread_mutex_lock(&lock); log_debug("ws_execute() lock"); err = NULL; @@ -147,7 +152,7 @@ struct json_object *ws_execute(struct json_object *rq) } log_debug("ws_execute() unlock"); - pthread_mutex_unlock(lock); + pthread_mutex_unlock(&lock); log_debug("ws_execute()"); @@ -203,7 +208,7 @@ char *ws_login() int ws_open_session() { - int /*version, */result; + int version, result; log_debug("ws_open_session()"); @@ -214,7 +219,7 @@ int ws_open_session() session_id = ws_login(); if (session_id) { - /*version = ws_get_api_version(); + version = ws_get_api_version(); log_debug("API version= %d", version); if (version > 0) { @@ -223,7 +228,7 @@ int ws_open_session() free(session_id); session_id = NULL; result = 0; - }*/ + } result = 1; } else { result = 0; @@ -269,6 +274,7 @@ int ws_update_headlines(struct feed *feed) rq = ws_request_new("getHeadlines"); ws_request_add_att_int(rq, "feed_id", feed->id); + ws_request_add_att_bool(rq, "show_excerpt", 1); rp = ws_execute(rq); @@ -292,6 +298,10 @@ int ws_update_headlines(struct feed *feed) h = headline_new(hid, url, title); + j = json_object_object_get(jheadline, + "excerpt"); + h->excerpt = strdup(json_object_get_string(j)); + tmp = headlines_add(feed->headlines, h); if (feed->headlines) free(feed->headlines); @@ -394,8 +404,6 @@ void ws_set_article_unread(int id, int unread) void ws_init() { pthread_mutexattr_t attr; - pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE); - lock = malloc(sizeof(pthread_mutex_t)); - pthread_mutex_init(lock, &attr); + pthread_mutex_init(&lock, &attr); }