X-Git-Url: https://git.wpitchoune.net/gitweb/?p=prss.git;a=blobdiff_plain;f=src%2Fttrss.c;h=b3b555ed78dcb1d33543979ddf900a480303f98c;hp=9833040b23af9fa7fa7ba9f652f14a241577b7fd;hb=17f3f4683056dda89b906f252435a4c2e2799aca;hpb=40d30b549ad41af63da74a3c7cb36db7f5e089e7 diff --git a/src/ttrss.c b/src/ttrss.c index 9833040..b3b555e 100644 --- a/src/ttrss.c +++ b/src/ttrss.c @@ -20,6 +20,10 @@ #include #include #include +#include +#include +#include + #include #include @@ -54,6 +58,8 @@ static void file_set_content(const char *path, const char *content) { FILE *fp; + log_debug("file_set_content(): path=%s", path); + fp = fopen(path, "w"); if (fp) { fwrite(content, 1, strlen(content), fp); @@ -61,28 +67,53 @@ static void file_set_content(const char *path, const char *content) } } -char *ttrss_get_headline_content(struct headline *h) +static char *content_get_path(const struct headline *h) { const char *cache_dir; - char *path, *content; cache_dir = get_cache_dir(); - if (cache_dir) { - path = g_strdup_printf("%s/%d", cache_dir, h->id); + if (cache_dir) + return g_strdup_printf("%s/%d", cache_dir, h->id); - content = file_get_content(path); + return NULL; +} - if (!content) { - content = ws_get_article_content(h->id); - file_set_content(path, content); - } +static int is_content_cached(const struct headline *h) +{ + struct stat s; + char *path; + int result; + + path = content_get_path(h); + + if (stat(path, &s) == -1) + result = 0; + else + result = 1; + + free(path); + + return result; +} - g_free(path); +char *ttrss_get_headline_content(struct headline *h) +{ + char *path, *content; - return content; + path = content_get_path(h); + if (path) + content = file_get_content(path); + else + content = NULL; + + if (!content) { + content = ws_get_article_content(h->id); + file_set_content(path, content); } - return NULL; + free(path); + + return content; } struct feed **ttrss_get_feeds() @@ -125,3 +156,19 @@ struct headline *ttrss_get_headline(int id) { return feeds_get_headline(data, id); } + +void ttrs_download_headline_content(struct feed **feeds) +{ + struct feed **fcur; + struct headline **hcur; + + for (fcur = feeds; *fcur; fcur++) { + hcur = ttrss_feed_get_headlines(*fcur); + + while (hcur && *hcur) { + if (!is_content_cached(*hcur)) + free(ttrss_get_headline_content(*hcur)); + hcur++; + } + } +}