2008-11-26 [colin] 3.6.1cvs44
[claws.git] / src / common / template.c
1 /*
2  * Sylpheed templates subsystem 
3  * Copyright (C) 2001 Alexander Barinov
4  * Copyright (C) 2001-2007 Hiroyuki Yamamoto and the Claws Mail team
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program. If not, see <http://www.gnu.org/licenses/>.
18  * 
19  */
20
21 #include "defs.h"
22
23 #include <glib.h>
24 #include <glib/gi18n.h>
25 #include <stdio.h>
26 #include <sys/stat.h>
27 #include <ctype.h>
28
29 #include "utils.h"
30 #include "template.h"
31 #include "../codeconv.h"
32
33 static GSList *template_list;
34
35 static Template *template_load(gchar *filename)
36 {
37         Template *tmpl;
38         FILE *fp;
39         gchar buf[BUFFSIZE];
40         gint bytes_read;
41
42         if ((fp = g_fopen(filename, "rb")) == NULL) {
43                 FILE_OP_ERROR(filename, "fopen");
44                 return NULL;
45         }
46
47         tmpl = g_new(Template, 1);
48         tmpl->load_filename = g_strdup(filename);;
49         tmpl->name = NULL;
50         tmpl->subject = NULL;
51         tmpl->from = NULL;
52         tmpl->to = NULL;
53         tmpl->cc = NULL;        
54         tmpl->bcc = NULL;       
55         tmpl->value = NULL;
56
57         while (fgets(buf, sizeof(buf), fp) != NULL) {
58                 if (buf[0] == '\n')
59                         break;
60                 else if (!g_ascii_strncasecmp(buf, "Name:", 5))
61                         tmpl->name = g_strdup(g_strstrip(buf + 5));
62                 else if (!g_ascii_strncasecmp(buf, "From:", 5))
63                         tmpl->from = g_strdup(g_strstrip(buf + 5));
64                 else if (!g_ascii_strncasecmp(buf, "To:", 3))
65                         tmpl->to = g_strdup(g_strstrip(buf + 3));
66                 else if (!g_ascii_strncasecmp(buf, "Cc:", 3))
67                         tmpl->cc = g_strdup(g_strstrip(buf + 3));
68                 else if (!g_ascii_strncasecmp(buf, "Bcc:", 4))
69                         tmpl->bcc = g_strdup(g_strstrip(buf + 4));                                              
70                 else if (!g_ascii_strncasecmp(buf, "Subject:", 8))
71                         tmpl->subject = g_strdup(g_strstrip(buf + 8));
72         }
73
74         if (!tmpl->name) {
75                 g_warning("wrong template format\n");
76                 template_free(tmpl);
77                 return NULL;
78         }
79
80         if ((bytes_read = fread(buf, 1, sizeof(buf), fp)) == 0) {
81                 if (ferror(fp)) {
82                         FILE_OP_ERROR(filename, "fread");
83                         template_free(tmpl);
84                         return NULL;
85                 }
86         }
87         fclose(fp);
88         tmpl->value = g_strndup(buf, bytes_read);
89
90         return tmpl;
91 }
92
93 void template_free(Template *tmpl)
94 {
95         g_free(tmpl->load_filename);
96         g_free(tmpl->name);
97         g_free(tmpl->subject);
98         g_free(tmpl->from);
99         g_free(tmpl->to);
100         g_free(tmpl->cc);
101         g_free(tmpl->bcc);              
102         g_free(tmpl->value);
103         g_free(tmpl);
104 }
105
106 static void template_clear_config(GSList *tmpl_list)
107 {
108         GSList *cur;
109         Template *tmpl;
110
111         for (cur = tmpl_list; cur != NULL; cur = cur->next) {
112                 tmpl = (Template *)cur->data;
113                 template_free(tmpl);
114         }
115         g_slist_free(tmpl_list);
116 }
117
118 static gint tmpl_compare(gconstpointer tmpl1, gconstpointer tmpl2)
119 {
120         gchar *basename1, *basename2;
121         long filenum1, filenum2;
122         gint ret = 0;
123
124         if ((Template *)tmpl1 == NULL || (Template *)tmpl2 == NULL)
125                 return 0;
126
127         if (((Template *)tmpl1)->load_filename == NULL || ((Template *)tmpl2)->load_filename == NULL)
128                 return 0;
129
130         basename1 = g_path_get_basename(((Template *)tmpl1)->load_filename);
131         basename2 = g_path_get_basename(((Template *)tmpl2)->load_filename);
132         filenum1 = atol(basename1);
133         filenum2 = atol(basename2);
134         g_free(basename1);
135         g_free(basename2);
136
137         if (filenum1 == 0 || filenum2 == 0)
138                 return 0;
139
140         if (filenum1 < filenum2)
141                 ret = -1;
142         else
143                 if (filenum1 > filenum2)
144                         ret = 1;
145                         
146         return ret;
147 }
148
149 GSList *template_read_config(void)
150 {
151         const gchar *path;
152         gchar *filename;
153         GDir *dir;
154         const gchar *dir_name;
155         struct stat s;
156         Template *tmpl;
157         GSList *tmpl_list = NULL;
158
159         path = get_template_dir();
160         debug_print("%s:%d reading templates dir %s\n",
161                     __FILE__, __LINE__, path);
162
163         if (!is_dir_exist(path)) {
164                 if (make_dir(path) < 0)
165                         return NULL;
166         }
167
168         if ((dir = g_dir_open(path, 0, NULL)) == NULL) {
169                 g_warning("failed to open directory: %s\n", path);
170                 return NULL;
171         }
172
173         while ((dir_name = g_dir_read_name(dir)) != NULL) {
174                 filename = g_strconcat(path, G_DIR_SEPARATOR_S,
175                                        dir_name, NULL);
176
177                 if (g_stat(filename, &s) != 0 || !S_ISREG(s.st_mode) ) {
178                         debug_print("%s:%d %s is not an ordinary file\n",
179                                     __FILE__, __LINE__, filename);
180                         continue;
181                 }
182
183                 tmpl = template_load(filename);
184                 if (tmpl)
185                         tmpl_list = g_slist_insert_sorted(tmpl_list, tmpl, tmpl_compare);
186
187                 g_free(filename);
188         }
189
190         g_dir_close(dir);
191
192         return tmpl_list;
193 }
194
195 #define TRY(func) { \
196 if (!(func)) \
197 { \
198         g_warning("Failed to write template to file\n"); \
199         if (fp) fclose(fp); \
200         if (new) claws_unlink(new); \
201         g_free(new); \
202         g_free(filename); \
203         return; \
204 } \
205 }
206
207 static void template_write_config(GSList *tmpl_list)
208 {
209         const gchar *path;
210         GSList *cur;
211         Template *tmpl;
212         FILE *fp;
213         gint tmpl_num;
214
215         debug_print("%s:%d writing templates\n", __FILE__, __LINE__);
216
217         path = get_template_dir();
218
219         if (!is_dir_exist(path)) {
220                 if (is_file_exist(path)) {
221                         g_warning("file %s already exists\n", path);
222                         return;
223                 }
224                 if (make_dir(path) < 0)
225                         return;
226         }
227
228         for (cur = tmpl_list, tmpl_num = 1; cur != NULL;
229              cur = cur->next, tmpl_num++) {
230                 gchar *filename, *new = NULL;
231
232                 tmpl = cur->data;
233
234                 filename = g_strconcat(path, G_DIR_SEPARATOR_S,
235                                        itos(tmpl_num), NULL);
236
237                 if (is_file_exist(filename)) {
238                         new = g_strconcat(filename, ".new", NULL);
239                 }
240
241                 if ((fp = g_fopen(new?new:filename, "wb")) == NULL) {
242                         FILE_OP_ERROR(new?new:filename, "fopen");
243                         g_free(new);
244                         g_free(filename);
245                         return;
246                 }
247
248                 TRY(fprintf(fp, "Name: %s\n", tmpl->name) > 0);
249                 if (tmpl->subject && *tmpl->subject != '\0')
250                         TRY(fprintf(fp, "Subject: %s\n", tmpl->subject) > 0);
251                 if (tmpl->from && *tmpl->from != '\0')
252                         TRY(fprintf(fp, "From: %s\n", tmpl->from) > 0);
253                 if (tmpl->to && *tmpl->to != '\0')
254                         TRY(fprintf(fp, "To: %s\n", tmpl->to) > 0);
255                 if (tmpl->cc && *tmpl->cc != '\0')
256                         TRY(fprintf(fp, "Cc: %s\n", tmpl->cc) > 0);
257                 if (tmpl->bcc && *tmpl->bcc != '\0')
258                         TRY(fprintf(fp, "Bcc: %s\n", tmpl->bcc) > 0);
259
260                 TRY(fputs("\n", fp) != EOF);
261
262                 if (tmpl->value && *tmpl->value != '\0') {
263                         TRY(fwrite(tmpl->value, sizeof(gchar), strlen(tmpl->value), fp) == strlen(tmpl->value));
264                 } else {
265                         TRY(fwrite("", sizeof(gchar), 1, fp) == 1);
266                 }
267                 TRY(fclose(fp) != EOF);
268
269                 if (new) {
270                         claws_unlink(filename);
271                         rename_force(new, filename);
272                 }
273                 g_free(new);
274                 g_free(filename);
275         }
276         
277         /* remove other templates */
278         while (TRUE) {
279                 gchar *filename = g_strconcat(path, G_DIR_SEPARATOR_S,
280                                        itos(tmpl_num), NULL);
281                 if (is_file_exist(filename)) {
282                         debug_print("removing old template %d\n", tmpl_num);
283                         claws_unlink(filename);
284                         g_free(filename);
285                 } else {
286                         g_free(filename);
287                         break;
288                 }
289                 tmpl_num++;
290         }
291 }
292
293 GSList *template_get_config(void)
294 {
295         if (!template_list)
296                 template_list = template_read_config();
297
298         return template_list;
299 }
300
301 void template_set_config(GSList *tmpl_list)
302 {
303         template_clear_config(template_list);
304         template_write_config(tmpl_list);
305         template_list = tmpl_list;
306 }