3114ebb66a9b823bd13b21afd3c3f72644faa707
[claws.git] / src / plugins / libravatar / libravatar_cache.c
1 /*
2  * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 2014-2015 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 #include "libravatar_cache.h"
20 #include "utils.h"
21
22 gchar *libravatar_cache_init(const char *dirs[], gint start, gint end)
23 {
24         gchar *subdir, *rootdir;
25         int i;
26
27         rootdir = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
28                                 LIBRAVATAR_CACHE_DIR, G_DIR_SEPARATOR_S,
29                                 NULL);
30         if (!is_dir_exist(rootdir)) {
31                 if (make_dir(rootdir) < 0) {
32                         g_warning("cannot create root directory '%s'", subdir);
33                         g_free(rootdir);
34                         return NULL;
35                 }
36         }
37         for (i = start; i <= end; ++i) {
38                 subdir = g_strconcat(rootdir, dirs[i], NULL);
39                 if (!is_dir_exist(subdir)) {
40                         if (make_dir(subdir) < 0) {
41                                 g_warning("cannot create directory '%s'", subdir);
42                                 g_free(subdir);
43                                 g_free(rootdir);
44                                 return NULL;
45                         }
46                 }
47                 g_free(subdir);
48         }
49
50         return rootdir;
51 }