ac0ee25676780c8687cf82c22da590a43c410f23
[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 #include <config.h>
31
32 #include <glib.h>
33 #include <glib/gi18n.h>
34 #include <gtk/gtkwidget.h>
35
36 #include <tny-list.h>
37 #include <tny-transport-account.h>
38 #include <tny-account-store.h>
39 #include <tny-list.h>
40 #include <tny-simple-list.h>
41
42 #include <modest-runtime.h>
43 #include <modest-defs.h>
44 #include <modest-tny-account-store.h>
45 #include <modest-tny-platform-factory.h>
46 #include <modest-mail-operation.h>
47 #include <modest-tny-account.h>
48 #include <modest-account-mgr.h>
49 #include <modest-account-mgr-helpers.h>
50
51 #include <widgets/modest-main-window.h>
52
53
54 static gchar*  check_account (const gchar *account);
55 static int     start_ui (const gchar* mailto, const gchar *cc, const gchar *bcc,
56                          const gchar* subject, const gchar *body);
57 static int     send_mail (const gchar* account,
58                           const gchar* mailto, const gchar *cc, const gchar *bcc,
59                           const gchar* subject, const gchar *body);
60 int
61 main (int argc, char *argv[])
62 {
63         GOptionContext     *context = NULL;
64         
65         GError *err = NULL;
66         int retval  = MODEST_ERR_NONE;
67                 
68         static gboolean batch = FALSE;
69         static gchar    *mailto=NULL, *subject=NULL, *bcc=NULL,
70                 *cc=NULL, *body=NULL, *account=NULL;
71         
72         static GOptionEntry options[] = {
73                 { "mailto", 'm', 0, G_OPTION_ARG_STRING, &mailto,
74                   N_("New email to <addresses> (comma-separated)"), NULL},
75                 { "subject", 's', 0, G_OPTION_ARG_STRING, &subject,
76                   N_("Subject for a new mail"), NULL},
77                 { "body", 'b', 0, G_OPTION_ARG_STRING, &body,
78                   N_("Body for a new email"), NULL},
79                 { "cc",  'c', 0, G_OPTION_ARG_STRING, &cc,
80                   N_("Cc: addresses for a new mail (comma-separated)"), NULL},
81                 { "bcc", 'x', 0, G_OPTION_ARG_STRING, &bcc,
82                   N_("Bcc: addresses for a new mail (comma-separated)"), NULL},
83                 { "account", 'a', 0, G_OPTION_ARG_STRING, &account,
84                   N_("Account to use (if none specified, the default account will be used)"), NULL},
85                 { "batch", 'y', 0, G_OPTION_ARG_NONE, &batch,
86                   N_("Run in batch mode (don't show UI)"), NULL},
87                 { NULL, 0, 0, 0, NULL, NULL, NULL }
88         };
89
90         if (!modest_runtime_init ()) {
91                 g_printerr ("modest: cannot init runtime\n");
92                 return MODEST_ERR_INIT;
93         }
94         
95         context = g_option_context_new (NULL);
96         g_option_context_add_main_entries (context, options, NULL);
97         
98         if (!g_option_context_parse (context, &argc, &argv, &err)) {
99                 g_printerr ("modest: error in command line parameter(s): '%s', exiting\n",
100                             err ? err->message : "");
101                 g_error_free (err);
102                 g_option_context_free (context);
103                 retval = MODEST_ERR_OPTIONS;
104                 goto cleanup;
105         }
106         g_option_context_free (context);
107         
108         if (!batch) {
109                 if (!modest_runtime_init_ui (argc, argv)) {
110                         g_printerr ("modest: cannot start UI\n");
111                         retval = MODEST_ERR_UI;
112                         goto cleanup;
113                 } else
114                         retval = start_ui (mailto, cc, bcc, subject, body);
115         } else {
116                 gchar *account_or_default;
117                 account_or_default = check_account (account);
118                 g_free (account);
119
120                 if (!account_or_default) {
121                         g_printerr ("modest: account is not valid\n");
122                         retval = MODEST_ERR_PARAM;
123                         goto cleanup;
124                 } 
125                 retval = send_mail (account, mailto, cc, bcc, subject, body);
126         }
127         
128 cleanup:
129         g_free (mailto);
130         g_free (subject);
131         g_free (bcc);
132         g_free (cc);
133         g_free (body);
134         g_free (account);
135
136         if (!modest_runtime_uninit ()) 
137                 g_printerr ("modest: modest_runtime_uninit failed\n");
138
139         return retval;
140 }
141
142
143 static int
144 start_ui (const gchar* mailto, const gchar *cc, const gchar *bcc,
145           const gchar* subject, const gchar *body)
146 {
147         ModestWindow *win = NULL;
148         
149         gint retval = 0;
150         //odest_ui = modest_ui_new ();
151
152         if (mailto||cc||bcc||subject||body) {
153                 g_warning ("FIXME: implement this");
154 /*              ok = modest_ui_new_edit_window (modest_ui, */
155 /*                                              mailto,  /\* to *\/ */
156 /*                                              cc,      /\* cc *\/ */
157 /*                                              bcc,     /\* bcc *\/ */
158 /*                                              subject,    /\* subject *\/ */
159 /*                                              body,    /\* body *\/ */
160 /*                                              NULL);   /\* attachments *\/ */
161         } else 
162                 win = modest_main_window_new ();
163         
164         if (win) {
165                 gtk_widget_show_all (GTK_WIDGET (win));
166                 gtk_main();
167         }
168         
169         return retval;
170 }
171
172 static gchar*
173 check_account (const gchar* account)
174 {
175         gchar *retval;
176         ModestAccountMgr *account_mgr;
177
178         account_mgr = modest_runtime_get_account_mgr();
179         
180         if (!account)
181                 retval = modest_account_mgr_get_default_account (account_mgr);
182         else
183                 retval = g_strdup (account);
184
185         /* sanity check */
186         if (!modest_account_mgr_account_exists (account_mgr, account, FALSE, NULL)) {
187                 g_free (retval);
188                 retval = NULL;
189         }
190         return retval;
191 }
192
193 static int
194 send_mail (const gchar* account_name,
195            const gchar* mailto, const gchar *cc, const gchar *bcc,
196            const gchar* subject, const gchar *body)
197 {
198         int retval;
199         TnyTransportAccount *account;
200         ModestMailOperation *mail_operation = NULL;
201         gchar               *from_string;
202         
203         g_return_val_if_fail (account_name, MODEST_ERR_SEND);
204
205         account = TNY_TRANSPORT_ACCOUNT (modest_tny_account_store_get_tny_account_by_account
206                                          (modest_runtime_get_account_store(), account_name,
207                                           TNY_ACCOUNT_TYPE_TRANSPORT));
208         if (!account) {
209                 g_printerr ("modest: no transport defined account for %s\n",
210                             account_name);
211                 return MODEST_ERR_SEND;
212         }
213         from_string = modest_account_mgr_get_from_string (modest_runtime_get_account_mgr(),
214                                                           account_name);
215
216         mail_operation = modest_mail_operation_new ();
217         modest_mail_operation_send_new_mail (mail_operation, account,
218                                              from_string, mailto,
219                                              cc, bcc, subject, body,
220                                              NULL);
221         if (modest_mail_operation_get_status (mail_operation) == 
222             MODEST_MAIL_OPERATION_STATUS_FAILED) {
223                 retval = MODEST_ERR_SEND;
224         } else
225                 retval = MODEST_ERR_NONE; /* hurray! */
226
227         g_object_unref (G_OBJECT(account));
228         g_object_unref (G_OBJECT(mail_operation));
229         g_free (from_string);
230         
231         return retval;
232 }
233
234