X-Git-Url: https://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=src%2Flp_ws.c;h=55a54aa74dececf4d41cb2c98d70938f0502a5cb;hb=12cf1b3a4702e58c5797be638ab48e899ef932a4;hp=11092c4e3228566928ab8addb49735049eacb4fe;hpb=a9435991d03d0bd9e81d6cb6003013bec4b2e6e9;p=ppastats.git diff --git a/src/lp_ws.c b/src/lp_ws.c index 11092c4..55a54aa 100644 --- a/src/lp_ws.c +++ b/src/lp_ws.c @@ -91,35 +91,75 @@ static struct bpph **get_bpph_list_from_cache(const char *key) return list; } +static char *get_last_creation_date(struct bpph **list) +{ + time_t last, t; + struct bpph **cur; + + last = 0; + + if (list) + for (cur = list; *cur; cur++) { + t = (*cur)->date_created; + if (t > last) + last = t; + } + + if (last) + return time_to_str(last); + else + return NULL; +} + struct bpph **get_bpph_list(const char *archive_url, const char *pkg_status) { - char *url, *key; + char *url, *key, *tmp; struct bpph **result = NULL; struct json_object *o, *bpph_json, *o_next; + char *created_since_date; + int ok; - url = malloc(strlen(archive_url)+ - strlen(QUERY_GET_PUBLISHED_BINARIES)+ - (pkg_status ? strlen("&status=")+strlen(pkg_status) : 0)+ - 1); - + url = malloc(strlen(archive_url) + + strlen(QUERY_GET_PUBLISHED_BINARIES) + + 1); strcpy(url, archive_url); strcat(url, QUERY_GET_PUBLISHED_BINARIES); - if (pkg_status) { - strcat(url, "&status="); - strcat(url, pkg_status); - } - key = get_bpph_list_cache_key(archive_url); + result = get_bpph_list_from_cache(key); + if (result) { + created_since_date = get_last_creation_date(result); + + if (created_since_date) { + printf("Update package since: %s\n", + created_since_date); + + tmp = malloc(strlen(url) + + strlen("&created_since_date=") + + strlen(created_since_date)+1); + strcpy(tmp, url); + strcat(tmp, "&created_since_date="); + strcat(tmp, created_since_date); + + free(url); + url = tmp; + + free(created_since_date); + } + } + + ok = 1; while (url) { o = get_json_object(url); free(url); url = NULL; - if (!o) + if (!o) { + ok = 0; break; + } result = bpph_list_append_list(result, json_object_to_bpph_list(o)); @@ -130,13 +170,15 @@ struct bpph **get_bpph_list(const char *archive_url, const char *pkg_status) url = strdup(json_object_get_string(o_next)); json_object_put(o); - } - bpph_json = bpph_list_to_json(result); + } - fcache_put(key, json_object_to_json_string(bpph_json)); + if (ok) { + bpph_json = bpph_list_to_json(result); + fcache_put(key, json_object_to_json_string(bpph_json)); + json_object_put(bpph_json); + } - json_object_put(bpph_json); free(key); return result;