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