* adjusted indentation on modest-ui-wizard.c modest-identity-mgr.h and modest-main.c
[modest] / src / modest-main.c
1 /* modest-main.c -- part of modest */
2 #include <glib.h>
3
4 #include "modest-conf.h"
5 #include "modest-account-mgr.h"
6 #include "modest-identity-mgr.h"
7 #include "modest-ui.h"
8 #include "modest-icon-factory.h"
9
10 #ifdef HAVE_CONFIG_H
11 #include <config.h>
12 #endif /*HAVE_CONFIG_H*/
13 #include <gtk/gtk.h>
14
15 static void install_basic_conf_settings (ModestConf *conf);
16 static void install_test_account        (ModestConf *conf);
17
18
19 int
20 main (int argc, char *argv[])
21 {
22         GOptionContext   *context        = NULL;
23         ModestConf       *modest_conf    = NULL;
24         ModestUI         *modest_ui      = NULL;
25
26         GError *err = NULL;
27         int retval  = 0;
28
29         static gboolean update, debug, reinstall;
30         static gchar *mailto, *subject, *bcc, *cc, *body;
31
32         static GOptionEntry options[] = {
33                 { "debug",  'd', 0, G_OPTION_ARG_NONE, &debug,
34                   "Run in debug mode" },
35                 { "update", 'u', 0, G_OPTION_ARG_NONE, &update,
36                   "Send/receive all accounts and exit"},
37                 { "mailto", 'm', 0, G_OPTION_ARG_STRING, &mailto,
38                   "Start writing a new email to <addresses>"},
39                 { "subject", 's', 0, G_OPTION_ARG_STRING, &subject,
40                   "Subject for a new mail"},
41                 { "body", 'b', 0, G_OPTION_ARG_STRING, &body,
42                   "Body for a new email"},
43                 { "cc",  0, 0, G_OPTION_ARG_STRING, &cc,
44                   "CC-addresses for a new mail (comma-separated)"},
45                 { "bcc", 0, 0, G_OPTION_ARG_STRING, &bcc,
46                   "BCC-adresses for a new mail (comma-separated)"},
47                 { "reinstall-factory-settings", 0, 0, G_OPTION_ARG_NONE, &reinstall,
48                   "Delete all settings and start over (*DESTRUCTIVE*)"
49                 },
50                 { NULL }
51         };
52
53
54         g_type_init ();
55
56         context = g_option_context_new (NULL);
57         g_option_context_add_main_entries (context, options, NULL);
58
59         if (!g_option_context_parse (context, &argc, &argv, &err)) {
60                 g_printerr ("modest: error in command line parameter(s): %s\n",
61                          err ? err->message : "");
62                 retval = 1;
63                 goto cleanup;
64         }
65
66         if (debug) {
67                 g_log_set_always_fatal (G_LOG_LEVEL_WARNING);
68         }
69
70         modest_conf = MODEST_CONF(modest_conf_new());
71         if (!modest_conf) {
72                 g_warning ("failed to initialize config system");
73                 goto cleanup;
74         }
75
76         gtk_init (&argc, &argv);
77
78         modest_icon_factory_init ();
79
80         if (reinstall) {
81                 modest_conf_remove_key (modest_conf, MODEST_CONF_NAMESPACE, NULL);
82                 install_basic_conf_settings (modest_conf);
83                 goto cleanup;
84         }
85
86         modest_ui = MODEST_UI(modest_ui_new (modest_conf));
87         if (!modest_ui) {
88                 g_warning ("failed to initialize ui");
89                 goto cleanup;
90         }
91
92         {
93                 gboolean ok;
94                 gtk_init (&argc, &argv);
95
96                 if (mailto||cc||bcc||subject||body) {
97 #if 0
98                         ok = modest_ui_new_edit_window (modest_ui,
99                                                          mailto,  /* to */
100                                                          cc,      /* cc */
101                                                          bcc,     /* bcc */
102                                                          subject,    /* subject */
103                                                          body,    /* body */
104                                                          NULL);   /* attachments */
105 #endif
106                 } else
107                         ok = modest_ui_show_main_window (modest_ui);
108
109                 if (!ok)
110                         g_warning ("showing window failed");
111                 else
112                         gtk_main();
113         }
114
115
116 cleanup:
117         if (err)
118                 g_error_free (err);
119
120         if (context)
121                 g_option_context_free (context);
122
123         if (modest_ui)
124                 g_object_unref (modest_ui);
125
126         if (modest_conf)
127                 g_object_unref (modest_conf);
128
129         modest_icon_factory_uninit ();
130
131         return retval;
132 }
133
134
135
136 static void
137 install_basic_conf_settings (ModestConf *conf)
138 {
139         g_return_if_fail (conf);
140
141         /* main window size */
142         modest_conf_set_int (conf, MODEST_CONF_MAIN_WINDOW_WIDTH,
143                              MODEST_CONF_MAIN_WINDOW_WIDTH_DEFAULT, NULL);
144         modest_conf_set_int (conf, MODEST_CONF_MAIN_WINDOW_HEIGHT,
145                              MODEST_CONF_MAIN_WINDOW_HEIGHT_DEFAULT, NULL);
146
147         /* edit window size */
148         modest_conf_set_int (conf, MODEST_CONF_EDIT_WINDOW_WIDTH,
149                              MODEST_CONF_EDIT_WINDOW_WIDTH_DEFAULT, NULL);
150         modest_conf_set_int (conf, MODEST_CONF_EDIT_WINDOW_HEIGHT,
151                              MODEST_CONF_EDIT_WINDOW_HEIGHT_DEFAULT, NULL);
152
153         g_print ("modest: returned to factory settings\n");
154 }
155
156
157 static void
158 install_test_account (ModestConf *conf)
159 {
160         ModestAccountMgr *acc_mgr;
161         ModestIdentityMgr *id_mgr;
162         const gchar *acc_name = "test";
163         g_return_if_fail (conf);
164
165         acc_mgr = MODEST_ACCOUNT_MGR(modest_account_mgr_new (conf));
166         if (!acc_mgr) {
167                 g_warning ("failed to instantiate account mgr");
168                 return;
169         }
170
171         if (modest_account_mgr_account_exists (acc_mgr, acc_name, NULL)) {
172                 if (!modest_account_mgr_remove_account(acc_mgr, acc_name, NULL)) {
173                         g_warning ("could not delete existing account");
174                 }
175         }
176
177         if (!modest_account_mgr_add_account (acc_mgr, acc_name, "mystore", "mytransport", NULL))
178                 g_warning ("failed to add test account");
179         else
180         {
181                 modest_account_mgr_add_server_account (acc_mgr, "mystore", "localhost", "djcb",
182                                                        NULL, "imap");
183                 modest_account_mgr_add_server_account (acc_mgr, "mytransport", "localhost", NULL,
184                                                        NULL, "smtp");
185
186         }
187         id_mgr = MODEST_IDENTITY_MGR(modest_identity_mgr_new (conf));
188         if (modest_identity_mgr_identity_exists(id_mgr, "myidentity", NULL)) {
189                 if (!modest_identity_mgr_remove_identity(id_mgr, "myidentity", NULL)) {
190                         g_warning ("could not delete existing identity");
191                 }
192         }
193         if (!modest_identity_mgr_add_identity (id_mgr,
194                                                MODEST_IDENTITY_DEFAULT_IDENTITY,
195                                                "Default User",
196                                                "user@localhost",
197                                                "", "", FALSE, NULL, FALSE ))
198                 g_warning ("failed to add test identity");
199
200         g_object_unref (G_OBJECT(acc_mgr));
201         g_object_unref (G_OBJECT(id_mgr));
202 }