* src/common/plugin.c
[claws.git] / src / common / template.c
1 /*
2  * Sylpheed templates subsystem 
3  * Copyright (C) 2001 Alexander Barinov
4  * Copyright (C) 2001 Hiroyuki Yamamoto
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 2 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, write to the Free Software
18  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19  */
20
21 #include "defs.h"
22
23 #include <glib.h>
24 #include <stdio.h>
25 #include <dirent.h>
26 #include <sys/stat.h>
27 #include <ctype.h>
28
29 #include "intl.h"
30 #include "utils.h"
31 #include "template.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 = fopen(filename, "rb")) == NULL) {
43                 FILE_OP_ERROR(filename, "fopen");
44                 return NULL;
45         }
46
47         tmpl = g_new(Template, 1);
48         tmpl->name = NULL;
49         tmpl->subject = NULL;
50         tmpl->to = NULL;
51         tmpl->cc = NULL;        
52         tmpl->bcc = NULL;       
53         tmpl->value = NULL;
54
55         while (fgets(buf, sizeof(buf), fp) != NULL) {
56                 if (buf[0] == '\n')
57                         break;
58                 else if (!g_strncasecmp(buf, "Name:", 5))
59                         tmpl->name = g_strdup(g_strstrip(buf + 5));
60                 else if (!g_strncasecmp(buf, "Subject:", 8))
61                         tmpl->subject = g_strdup(g_strstrip(buf + 8));
62                 else if (!g_strncasecmp(buf, "To:", 3))
63                         tmpl->to = g_strdup(g_strstrip(buf + 3));
64                 else if (!g_strncasecmp(buf, "Cc:", 3))
65                         tmpl->cc = g_strdup(g_strstrip(buf + 3));
66                 else if (!g_strncasecmp(buf, "Bcc:", 4))
67                         tmpl->bcc = g_strdup(g_strstrip(buf + 4));                                              
68         }
69
70         if (!tmpl->name) {
71                 g_warning("wrong template format\n");
72                 template_free(tmpl);
73                 return NULL;
74         }
75
76         if ((bytes_read = fread(buf, 1, sizeof(buf), fp)) == 0) {
77                 if (ferror(fp)) {
78                         FILE_OP_ERROR(filename, "fread");
79                         template_free(tmpl);
80                         return NULL;
81                 }
82         }
83         fclose(fp);
84         tmpl->value = g_strndup(buf, bytes_read);
85
86         return tmpl;
87 }
88
89 void template_free(Template *tmpl)
90 {
91         g_free(tmpl->name);
92         g_free(tmpl->subject);
93         g_free(tmpl->to);
94         g_free(tmpl->cc);
95         g_free(tmpl->bcc);              
96         g_free(tmpl->value);
97         g_free(tmpl);
98 }
99
100 void template_clear_config(GSList *tmpl_list)
101 {
102         GSList *cur;
103         Template *tmpl;
104
105         for (cur = tmpl_list; cur != NULL; cur = cur->next) {
106                 tmpl = (Template *)cur->data;
107                 template_free(tmpl);
108         }
109         g_slist_free(tmpl_list);
110 }
111
112 GSList *template_read_config(void)
113 {
114         gchar *path;
115         gchar *filename;
116         DIR *dp;
117         struct dirent *de;
118         struct stat s;
119         Template *tmpl;
120         GSList *tmpl_list = NULL;
121
122         path = get_template_dir();
123         debug_print("%s:%d reading templates dir %s\n",
124                     __FILE__, __LINE__, path);
125
126         if (!is_dir_exist(path)) {
127                 if (make_dir(path) < 0)
128                         return NULL;
129         }
130
131         if ((dp = opendir(path)) == NULL) {
132                 FILE_OP_ERROR(path, "opendir");
133                 return NULL;
134         }
135
136         while ((de = readdir(dp)) != NULL) {
137                 if (*de->d_name == '.') continue;
138
139                 filename = g_strconcat(path, G_DIR_SEPARATOR_S, de->d_name, NULL);
140
141                 if (stat(filename, &s) != 0 || !S_ISREG(s.st_mode) ) {
142                         debug_print("%s:%d %s is not an ordinary file\n",
143                                     __FILE__, __LINE__, filename);
144                         continue;
145                 }
146
147                 tmpl = template_load(filename);
148                 if (tmpl)
149                         tmpl_list = g_slist_append(tmpl_list, tmpl);
150                 g_free(filename);
151         }
152
153         closedir(dp);
154
155         return tmpl_list;
156 }
157
158 void template_write_config(GSList *tmpl_list)
159 {
160         gchar *path;
161         GSList *cur;
162         Template *tmpl;
163         FILE *fp;
164         gint tmpl_num;
165
166         debug_print("%s:%d writing templates\n", __FILE__, __LINE__);
167
168         path = get_template_dir();
169
170         if (!is_dir_exist(path)) {
171                 if (is_file_exist(path)) {
172                         g_warning("file %s already exists\n", path);
173                         return;
174                 }
175                 if (make_dir(path) < 0)
176                         return;
177         }
178
179         remove_all_files(path);
180
181         for (cur = tmpl_list, tmpl_num = 1; cur != NULL;
182              cur = cur->next, tmpl_num++) {
183                 gchar *filename;
184
185                 tmpl = cur->data;
186
187                 filename = g_strconcat(path, G_DIR_SEPARATOR_S,
188                                        itos(tmpl_num), NULL);
189
190                 if ((fp = fopen(filename, "wb")) == NULL) {
191                         FILE_OP_ERROR(filename, "fopen");
192                         g_free(filename);
193                         g_free(path);
194                         return;
195                 }
196
197                 fprintf(fp, "Name: %s\n", tmpl->name);
198                 if (tmpl->subject && *tmpl->subject != '\0')
199                         fprintf(fp, "Subject: %s\n", tmpl->subject);
200                 if (tmpl->to && *tmpl->to != '\0')
201                         fprintf(fp, "To: %s\n", tmpl->to);
202                 if (tmpl->cc && *tmpl->cc != '\0')
203                         fprintf(fp, "Cc: %s\n", tmpl->cc);
204                 if (tmpl->bcc && *tmpl->bcc != '\0')
205                         fprintf(fp, "Bcc: %s\n", tmpl->bcc);                                            
206                 fputs("\n", fp);
207                 fwrite(tmpl->value, sizeof(gchar) * strlen(tmpl->value), 1, fp);
208                 fclose(fp);
209         }
210 }
211
212 GSList *template_get_config(void)
213 {
214         if (!template_list)
215                 template_list = template_read_config();
216
217         return template_list;
218 }
219
220 void template_set_config(GSList *tmpl_list)
221 {
222         template_clear_config(template_list);
223         template_write_config(tmpl_list);
224         template_list = tmpl_list;
225 }