7d0e88d1a5385622149187978f808d1c66370a22
[claws.git] / src / plugins / spam_report / spam_report_prefs.c
1 /*
2  * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2007 Colin Leroy <colin@colino.net>
4  * 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, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19  */
20
21 #ifdef HAVE_CONFIG_H
22 #  include "config.h"
23 #include "claws-features.h"
24 #endif
25
26 #include "defs.h"
27
28 #include <glib.h>
29 #include <glib/gi18n.h>
30 #include <gtk/gtk.h>
31
32 #include "gtkutils.h"
33 #include "password.h"
34 #include "prefs.h"
35 #include "prefs_gtk.h"
36 #include "prefswindow.h"
37 #include "alertpanel.h"
38 #include "utils.h"
39
40 #include "spam_report_prefs.h"
41
42 #define PREFS_BLOCK_NAME "SpamReport"
43
44 SpamReportPrefs spamreport_prefs;
45 void spamreport_clear_cache(void);
46
47 typedef struct _SpamReportPage SpamReportPage;
48
49 struct _SpamReportPage {
50         PrefsPage page;
51         GtkWidget *frame[INTF_LAST];
52         GtkWidget *enabled_chkbtn[INTF_LAST];
53         GtkWidget *user_entry[INTF_LAST];
54         GtkWidget *pass_entry[INTF_LAST];
55 };
56
57 static PrefParam param[] = {
58         {"signalspam_enabled", "FALSE", &spamreport_prefs.enabled[INTF_SIGNALSPAM], P_BOOL, NULL, NULL, NULL},
59         {"signalspam_user", "", &spamreport_prefs.user[INTF_SIGNALSPAM], P_STRING, NULL, NULL, NULL},
60         {"signalspam_pass", "", &spamreport_prefs.pass[INTF_SIGNALSPAM], P_PASSWORD, NULL, NULL, NULL},
61         {"spamcop_enabled",    "FALSE", &spamreport_prefs.enabled[INTF_SPAMCOP], P_BOOL, NULL, NULL, NULL},
62         {"spamcop_user",    "", &spamreport_prefs.user[INTF_SPAMCOP], P_STRING, NULL, NULL, NULL},
63         {"debianspam_enabled", "FALSE", &spamreport_prefs.enabled[INTF_DEBIANSPAM], P_BOOL, NULL, NULL, NULL},
64        {0,0,0,0,0,0,0}
65 };
66
67 static SpamReportPage spamreport_prefs_page;
68
69 static void create_spamreport_prefs_page        (PrefsPage *page,
70                                          GtkWindow *window,
71                                          gpointer   data);
72 static void destroy_spamreport_prefs_page       (PrefsPage *page);
73 static void save_spamreport_prefs               (PrefsPage *page);
74
75 void spamreport_prefs_init(void)
76 {
77         static gchar *path[3];
78         gchar *rcpath;
79
80         path[0] = _("Plugins");
81         path[1] = _("SpamReport");
82         path[2] = NULL;
83
84         prefs_set_default(param);
85         rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, COMMON_RC, NULL);
86         prefs_read_config(param, PREFS_BLOCK_NAME, rcpath, NULL);
87         g_free(rcpath);
88         
89         spamreport_prefs_page.page.path = path;
90         spamreport_prefs_page.page.create_widget = create_spamreport_prefs_page;
91         spamreport_prefs_page.page.destroy_widget = destroy_spamreport_prefs_page;
92         spamreport_prefs_page.page.save_page = save_spamreport_prefs;
93         spamreport_prefs_page.page.weight = 30.0;
94         
95         prefs_gtk_register_page((PrefsPage *) &spamreport_prefs_page);
96 }
97
98 void spamreport_prefs_done(void)
99 {
100         prefs_gtk_unregister_page((PrefsPage *) &spamreport_prefs_page);
101 }
102
103 static void create_spamreport_prefs_page(PrefsPage *page,
104                                     GtkWindow *window,
105                                     gpointer data)
106 {
107         SpamReportPage *prefs_page = (SpamReportPage *) page;
108
109         GtkWidget *vbox, *table;
110         GtkWidget *tmp;
111         int i = 0;
112         
113         vbox = gtk_vbox_new(FALSE, VSPACING_NARROW);
114         gtk_container_set_border_width(GTK_CONTAINER(vbox), VBOX_BORDER);
115         gtk_widget_show(vbox);
116        
117         for (i = 0; i < INTF_LAST; i++) {
118                 gchar *pass;
119                 prefs_page->frame[i] = gtk_frame_new(spam_interfaces[i].name);
120                 gtk_box_pack_start(GTK_BOX(vbox), prefs_page->frame[i], FALSE, FALSE, 6);
121
122                 prefs_page->user_entry[i] = gtk_entry_new();
123                 prefs_page->pass_entry[i] = gtk_entry_new();
124                 prefs_page->enabled_chkbtn[i] = gtk_check_button_new_with_label(_("Enabled"));
125
126                 gtk_entry_set_visibility(GTK_ENTRY(prefs_page->pass_entry[i]), FALSE);
127
128                 gtk_entry_set_text(GTK_ENTRY(prefs_page->user_entry[i]),
129                         spamreport_prefs.user[i] ? spamreport_prefs.user[i]:"");
130
131                 pass = password_decrypt(spamreport_prefs.pass[i], NULL);
132                 gtk_entry_set_text(GTK_ENTRY(prefs_page->pass_entry[i]), pass ? pass:"");
133                 if (pass != NULL) {
134                         memset(pass, 0, strlen(pass));
135                 }
136                 g_free(pass);
137                 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(prefs_page->enabled_chkbtn[i]),
138                         spamreport_prefs.enabled[i]);
139
140                 table = gtk_table_new(3, 2, FALSE);
141                 gtk_container_set_border_width(GTK_CONTAINER(table), 8);
142                 gtk_table_set_row_spacings(GTK_TABLE(table), 4);
143                 gtk_table_set_col_spacings(GTK_TABLE(table), 8);
144         
145                 gtk_container_add(GTK_CONTAINER(prefs_page->frame[i]), table);
146                 gtk_widget_show(prefs_page->frame[i]);
147                 gtk_widget_show(table);
148
149                 gtk_table_attach(GTK_TABLE(table), prefs_page->enabled_chkbtn[i], 0, 2, 0, 1,
150                                 GTK_EXPAND|GTK_FILL, GTK_EXPAND|GTK_FILL, 
151                                 0, 0);
152                 gtk_widget_show(prefs_page->enabled_chkbtn[i]);
153
154                 switch(spam_interfaces[i].type) {
155                 case INTF_MAIL:
156                         tmp = gtk_label_new(_("Forward to:"));
157                         break;
158                 default:
159                         tmp = gtk_label_new(_("Username:"));
160                 }
161                 gtk_table_attach(GTK_TABLE(table), tmp, 0, 1, 1, 2,
162                                 0, 0, 
163                                 0, 0);
164                 gtk_table_attach(GTK_TABLE(table), prefs_page->user_entry[i], 1, 2, 1, 2,
165                                 GTK_EXPAND|GTK_FILL, GTK_EXPAND|GTK_FILL, 
166                                 0, 0);
167                 if (spam_interfaces[i].type != INTF_HTTP_GET) {
168                         gtk_widget_show(tmp);
169                         gtk_widget_show(prefs_page->user_entry[i]);
170                 }
171
172                 tmp = gtk_label_new(_("Password:"));
173                 gtk_table_attach(GTK_TABLE(table), tmp, 0, 1, 2, 3,
174                                 0, 0, 
175                                 0, 0);
176                 gtk_table_attach(GTK_TABLE(table), prefs_page->pass_entry[i], 1, 2, 2, 3,
177                                 GTK_EXPAND|GTK_FILL, GTK_EXPAND|GTK_FILL, 
178                                 0, 0);
179                 if (spam_interfaces[i].type != INTF_MAIL && spam_interfaces[i].type != INTF_HTTP_GET) {
180                         gtk_widget_show(tmp);
181                         gtk_widget_show(prefs_page->pass_entry[i]);
182                 }
183         }
184         prefs_page->page.widget = vbox;
185 }
186
187 static void destroy_spamreport_prefs_page(PrefsPage *page)
188 {
189         /* Do nothing! */
190 }
191
192 static void save_spamreport_prefs(PrefsPage *page)
193 {
194         SpamReportPage *prefs_page = (SpamReportPage *) page;
195         PrefFile *pref_file;
196         gchar *rc_file_path = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S,
197                                           COMMON_RC, NULL);
198         int i = 0;
199         
200         for (i = 0; i < INTF_LAST; i++) {
201                 gchar *pass;
202
203                 g_free(spamreport_prefs.user[i]);
204                 g_free(spamreport_prefs.pass[i]);
205
206                 spamreport_prefs.enabled[i] = gtk_toggle_button_get_active(
207                         GTK_TOGGLE_BUTTON(prefs_page->enabled_chkbtn[i]));
208                 spamreport_prefs.user[i] = gtk_editable_get_chars(
209                         GTK_EDITABLE(prefs_page->user_entry[i]), 0, -1);
210
211                 pass = gtk_editable_get_chars(GTK_EDITABLE(prefs_page->pass_entry[i]), 0, -1);
212                 spamreport_prefs.pass[i] = password_encrypt(pass, NULL);
213                 memset(pass, 0, strlen(pass));
214                 g_free(pass);
215         }
216
217         pref_file = prefs_write_open(rc_file_path);
218         g_free(rc_file_path);
219         
220         if (!(pref_file) ||
221             (prefs_set_block_label(pref_file, PREFS_BLOCK_NAME) < 0))
222           return;
223         
224         if (prefs_write_param(param, pref_file->fp) < 0) {
225           g_warning("failed to write SpamReport Plugin configuration");
226           prefs_file_close_revert(pref_file);
227           return;
228         }
229         if (fprintf(pref_file->fp, "\n") < 0) {
230                 FILE_OP_ERROR(rc_file_path, "fprintf");
231                 prefs_file_close_revert(pref_file);
232         } else
233                 prefs_file_close(pref_file);
234 }