Libravatar: refactor image retrieval
[claws.git] / src / plugins / libravatar / libravatar_image.c
1 /*
2  * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 2016 Ricardo Mones and the Claws Mail Team
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #ifdef HAVE_CONFIG_H
20 #  include "config.h"
21 #include "claws-features.h"
22 #endif
23
24 #include <glib.h>
25 #include <curl/curl.h>
26 #include <pthread.h>
27
28 #include <common/claws.h>
29 #include <prefs_common.h>
30
31 #include "libravatar.h"
32 #include "libravatar_prefs.h"
33 #include "libravatar_missing.h"
34 #include "libravatar_image.h"
35
36 static size_t write_image_data_cb(void *ptr, size_t size, size_t nmemb, void *stream)
37 {
38         size_t written = fwrite(ptr, size, nmemb, (FILE *)stream);
39         debug_print("received %zu bytes from avatar server\n", written);
40
41         return written;
42 }
43
44 static GdkPixbuf *image_pixbuf_from_filename(const gchar *filename)
45 {
46         GdkPixbuf *picture = NULL;
47         GError *error = NULL;
48         gint w, h;
49
50         gdk_pixbuf_get_file_info(filename, &w, &h);
51
52         if (w != AVATAR_SIZE || h != AVATAR_SIZE)
53                 /* server can provide a different size from the requested in URL */
54                 picture = gdk_pixbuf_new_from_file_at_scale(
55                                 filename, AVATAR_SIZE, AVATAR_SIZE, TRUE, &error);
56         else    /* exact size */
57                 picture = gdk_pixbuf_new_from_file(filename, &error);
58
59         if (error != NULL) {
60                 g_warning("failed to load image '%s': %s", filename, error->message);
61                 g_error_free(error);
62         } else {
63                 if (!picture)
64                         g_warning("failed to load image '%s': no error returned!", filename);
65         }
66
67         return picture;
68 }
69
70 static GdkPixbuf *pixbuf_from_url(const gchar *url, const gchar *md5, const gchar *filename) {
71         GdkPixbuf *image = NULL;
72         FILE *file;
73         CURL *curl;
74         long filesize;
75
76         file = fopen(filename, "wb");
77         if (file == NULL) {
78                 g_warning("could not open '%s' for writing", filename);
79                 return NULL;
80         }
81         curl = curl_easy_init();
82         if (curl == NULL) {
83                 g_warning("could not initialize curl to get image from URL");
84                 return NULL;
85         }
86
87         curl_easy_setopt(curl, CURLOPT_URL, url);
88         curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_image_data_cb);
89         /* make sure timeout is less than general IO timeout */
90         curl_easy_setopt(curl, CURLOPT_TIMEOUT,
91                         (libravatarprefs.timeout == 0
92                                 || libravatarprefs.timeout
93                                         > prefs_common_get_prefs()->io_timeout_secs)
94                         ? prefs_common_get_prefs()->io_timeout_secs
95                         : libravatarprefs.timeout);
96         curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1);
97
98         if (libravatarprefs.allow_redirects) {
99                 long maxredirs = (libravatarprefs.default_mode == DEF_MODE_URL)? 3L
100                         : ((libravatarprefs.default_mode == DEF_MODE_MM)? 2L: 1L);
101                 curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
102                 curl_easy_setopt(curl, CURLOPT_MAXREDIRS, maxredirs);
103         }
104         curl_easy_setopt(curl, CURLOPT_FILE, file);
105         debug_print("retrieving URL to file: %s -> %s\n", url, filename);
106         curl_easy_perform(curl);
107         filesize = ftell(file);
108         fclose(file);
109         if (filesize < MIN_PNG_SIZE)
110                 debug_print("not enough data for an avatar image: %ld bytes\n", filesize);
111         else
112                 image = image_pixbuf_from_filename(filename);
113
114         if (!libravatarprefs.cache_icons || filesize == 0) {
115                 if (g_unlink(filename) < 0)
116                         g_warning("failed to delete cache file '%s'", filename);
117         }
118
119         if (filesize == 0)
120                 missing_add_md5(libravatarmisses, md5);
121
122         curl_easy_cleanup(curl);
123
124         return image;
125 }
126
127 static void *get_image_thread(void *arg) {
128         AvatarImageFetch *ctx = (AvatarImageFetch *)arg;
129
130         /* get image */
131         ctx->pixbuf = pixbuf_from_url(ctx->url, ctx->md5, ctx->filename);
132         /* done here */
133         ctx->ready = TRUE;
134
135         return arg;
136 }
137
138 GdkPixbuf *libravatar_image_fetch(AvatarImageFetch *ctx)
139 {
140 #ifdef USE_PTHREAD
141         pthread_t pt;
142 #endif
143
144         g_return_if_fail(ctx != NULL);
145
146 #ifdef USE_PTHREAD
147         if (pthread_create(&pt, PTHREAD_CREATE_JOINABLE, get_image_thread, (void *)ctx) != 0) {
148                 debug_print("synchronous image fetching (couldn't create thread)\n");
149                 get_image_thread(ctx);
150         } else {
151                 debug_print("waiting for thread completion\n");
152                 /*
153                 while (!ctx->ready ) {
154                         claws_do_idle();
155                 }
156                 */
157                 pthread_join(pt, NULL);
158                 debug_print("thread completed\n");
159         }
160 #else
161         debug_print("synchronous image fetching (pthreads unavailable)\n");
162         get_image_thread(ctx);
163 #endif
164         if (ctx->pixbuf == NULL) {
165                 g_warning("could not get image");
166         }
167         return ctx->pixbuf;
168 }