* modest-conf.h, modest-main.c:
[modest] / src / modest-main.c
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30
31 #include <glib.h>
32 #include <glib/gi18n.h>
33 #include <gtk/gtkwidget.h>
34 #include <tny-list.h>
35 #include <tny-transport-account.h>
36 #include <tny-account-store.h>
37 #include <tny-list.h>
38 #include <tny-simple-list.h>
39
40 #include <config.h>
41 #include <modest-conf.h>
42 #include <modest-account-mgr.h>
43 #include <modest-ui.h>
44 #include <modest-debug.h>
45 #include <modest-icon-factory.h>
46 #include <modest-tny-account-store.h>
47 #include <modest-tny-platform-factory.h>
48 #include <modest-mail-operation.h>
49
50 #include <camel/camel-url.h>
51
52 #if MODEST_PLATFORM_ID==2 /* maemo */
53 #include <libosso.h>
54 #endif /* MODEST_PLATFORM==2 */
55
56 /* return values */
57 #define MODEST_ERR_NONE    0
58 #define MODEST_ERR_OPTIONS 1
59 #define MODEST_ERR_CONF    2
60 #define MODEST_ERR_UI      3
61 #define MODEST_ERR_HILDON  4
62 #define MODEST_ERR_RUN     5
63 #define MODEST_ERR_SEND    6
64
65 static gboolean hildon_init (); /* NOP if HILDON is not defined */
66 static int start_ui (const gchar* mailto, const gchar *cc,
67                      const gchar *bcc, const gchar* subject, const gchar *body,
68                      TnyAccountStore *account_store);
69
70 static int send_mail (const gchar* mailto, const gchar *cc, const gchar *bcc,
71                       const gchar* subject, const gchar *body);
72
73 int
74 main (int argc, char *argv[])
75 {
76         GOptionContext     *context       = NULL;
77         TnyPlatformFactory *fact          = NULL;
78         TnyAccountStore    *account_store = NULL;
79         ModestConf         *modest_conf   = NULL;
80         
81         GError *err = NULL;
82         int retval  = MODEST_ERR_NONE;
83                 
84         static gboolean batch=FALSE;
85         static gchar    *mailto, *subject, *bcc, *cc, *body, *account;
86
87         static GOptionEntry options[] = {
88                 { "mailto", 'm', 0, G_OPTION_ARG_STRING, &mailto,
89                   N_("New email to <addresses> (comma-separated)"), NULL},
90                 { "subject", 's', 0, G_OPTION_ARG_STRING, &subject,
91                   N_("Subject for a new mail"), NULL},
92                 { "body", 'b', 0, G_OPTION_ARG_STRING, &body,
93                   N_("Body for a new email"), NULL},
94                 { "cc",  'c', 0, G_OPTION_ARG_STRING, &cc,
95                   N_("Cc: addresses for a new mail (comma-separated)"), NULL},
96                 { "bcc", 'x', 0, G_OPTION_ARG_STRING, &bcc,
97                   N_("Bcc: addresses for a new mail (comma-separated)"), NULL},
98                 { "account", 'a', 0, G_OPTION_ARG_STRING, &account,
99                   N_("Account to use (if specified, default account is used)"), NULL},
100                 { "batch", 'y', 0, G_OPTION_ARG_NONE, &batch,
101                   N_("Run in batch mode (don't show UI)"), NULL},
102                 { NULL, 0, 0, 0, NULL, NULL, NULL }
103         };
104
105         bindtextdomain (GETTEXT_PACKAGE, MODEST_LOCALEDIR);
106         bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
107         textdomain (GETTEXT_PACKAGE);
108
109         modest_debug_g_type_init  ();           
110         modest_debug_logging_init ();
111
112         g_thread_init (NULL);
113         
114         context = g_option_context_new (NULL);
115         g_option_context_add_main_entries (context, options, NULL);
116         
117         if (!g_option_context_parse (context, &argc, &argv, &err)) {
118                 g_printerr ("modest: error in command line parameter(s): '%s', exiting\n",
119                             err ? err->message : "");
120                 g_error_free (err);
121                 retval = MODEST_ERR_OPTIONS;
122                 goto cleanup;
123         }
124         g_option_context_free (context);
125
126         /* Get platform factory */      
127         fact = modest_tny_platform_factory_get_instance ();
128
129         /* Check modest conf */
130         modest_conf = modest_tny_platform_factory_get_modest_conf_instance (fact);
131         if (!modest_conf) {
132                 g_printerr ("modest: failed to initialize config system, exiting\n");
133                 retval = MODEST_ERR_CONF;
134                 goto cleanup;
135         }
136
137         /* Get the account store */
138         account_store = tny_platform_factory_new_account_store (fact);
139         if (!account_store) {
140                 g_printerr ("modest: could not initialize a ModestTnyAccountStore instance\n");
141                 retval = MODEST_ERR_RUN;
142                 goto cleanup;
143         }
144         
145         if (!getenv("DISPLAY"))
146                 batch = TRUE; 
147         
148         if (!batch) {
149                 gdk_threads_init ();
150                 gtk_init (&argc, &argv);
151                 retval = start_ui (mailto, cc, bcc, subject, body, account_store);
152         } else 
153                 retval = send_mail (mailto, cc, bcc, subject, body);
154         
155 cleanup:
156         if (fact)
157                 g_object_unref (G_OBJECT(fact));
158         /* this will clean up account_store as well */
159         
160         return retval;
161 }
162
163
164 static int
165 start_ui (const gchar* mailto, const gchar *cc, const gchar *bcc,
166           const gchar* subject, const gchar *body,
167           TnyAccountStore *account_store)
168 {
169         ModestUI *modest_ui;
170         ModestWindow *win;
171         gint retval = 0;
172         
173         modest_ui = MODEST_UI(modest_ui_new (account_store));
174         if (!modest_ui) {
175                 g_printerr ("modest: failed to initialize ui, exiting\n");
176                 retval = MODEST_ERR_UI;
177                 goto cleanup;
178         }
179         
180         modest_icon_factory_init ();    
181
182         if (!hildon_init ()) { /* NOP  if hildon is not defined */
183                 g_printerr ("modest: failed to initialize hildon, exiting\n");
184                 retval = MODEST_ERR_HILDON;
185                 goto cleanup;
186         }
187
188         if (mailto||cc||bcc||subject||body) {
189
190 /*              ok = modest_ui_new_edit_window (modest_ui, */
191 /*                                              mailto,  /\* to *\/ */
192 /*                                              cc,      /\* cc *\/ */
193 /*                                              bcc,     /\* bcc *\/ */
194 /*                                              subject,    /\* subject *\/ */
195 /*                                              body,    /\* body *\/ */
196 /*                                              NULL);   /\* attachments *\/ */
197         } else 
198                 win = modest_ui_main_window (modest_ui);
199         
200         if (win) {
201                 TnyDevice *device;
202
203                 gtk_widget_show (GTK_WIDGET (win));
204         
205                 /* Go online */
206                 device = tny_account_store_get_device (account_store);
207                 tny_device_force_online (device);
208                 g_object_unref (G_OBJECT (device));
209
210                 gtk_main();
211         }
212 cleanup:
213         if (modest_ui)
214                 g_object_unref (modest_ui);
215
216         modest_icon_factory_uninit ();
217         return retval;
218 }
219         
220
221 static gboolean
222 hildon_init ()
223 {
224 #if MODEST_PLATFORM_ID==2 
225         
226         osso_context_t *osso_context =
227                 osso_initialize(PACKAGE, PACKAGE_VERSION,
228                                 TRUE, NULL);    
229         if (!osso_context) {
230                 g_printerr ("modest: failed to acquire osso context\n");
231                 return FALSE;
232         }
233         
234 #endif /* MODEST_PLATFORM_ID==2 */
235
236         return TRUE;
237 }
238
239
240
241 static int
242 send_mail (const gchar* mailto, const gchar *cc, const gchar *bcc,
243            const gchar* subject, const gchar *body)
244 {
245         ModestAccountMgr *acc_mgr = NULL;
246         TnyPlatformFactory *fact = NULL;
247         TnyAccountStore *acc_store = NULL;
248         ModestMailOperation *mail_operation = NULL;
249
250         TnyList *accounts = NULL;
251         TnyIterator *iter = NULL;
252         TnyTransportAccount *account = NULL;    
253         int retval;
254
255         fact = modest_tny_platform_factory_get_instance ();
256         acc_mgr = modest_tny_platform_factory_get_modest_account_mgr_instance (fact);
257         acc_store = tny_platform_factory_new_account_store (fact);      
258
259         accounts = TNY_LIST(tny_simple_list_new ());
260         tny_account_store_get_accounts (TNY_ACCOUNT_STORE(acc_store), accounts,
261                                               TNY_ACCOUNT_STORE_TRANSPORT_ACCOUNTS);
262
263         iter = tny_list_create_iterator(accounts);
264         tny_iterator_first (iter);
265         if (tny_iterator_is_done (iter)) {
266                 g_printerr("modest: no transport accounts defined\n");
267                 retval = MODEST_ERR_SEND;
268                 goto cleanup;
269         }
270
271         account = TNY_TRANSPORT_ACCOUNT (tny_iterator_get_current(iter));
272
273         mail_operation = modest_mail_operation_new ();
274
275         modest_mail_operation_send_new_mail (mail_operation,
276                                              account, "test@example.com",
277                                              mailto, cc, bcc, 
278                                              subject, body, NULL);
279         
280         
281         if (modest_mail_operation_get_status (mail_operation) == 
282             MODEST_MAIL_OPERATION_STATUS_FAILED) {
283                 retval = MODEST_ERR_SEND;
284                 goto cleanup;
285         } else
286                 retval = MODEST_ERR_NONE; /* hurray! */
287
288 cleanup:
289         if (iter)
290                 g_object_unref (G_OBJECT (iter));
291         if (accounts)
292                 g_object_unref (G_OBJECT (accounts));
293         if (mail_operation)
294                 g_object_unref (G_OBJECT (mail_operation));
295
296         return retval;
297 }
298