]> git.0d.be Git - empathy.git/blob - src/empathy.c
Display error message when cannot create salut account.
[empathy.git] / src / empathy.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007-2008 Collabora Ltd.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  * 
20  * Authors: Xavier Claessens <xclaesse@gmail.com>
21  */
22
23 #include <config.h>
24
25 #include <stdlib.h>
26 #include <errno.h>
27
28 #include <glib.h>
29 #include <glib/gi18n.h>
30 #include <gtk/gtk.h>
31 #include <gdk/gdkx.h>
32
33 #include <libebook/e-book.h>
34
35 #include <telepathy-glib/util.h>
36 #include <libmissioncontrol/mc-account.h>
37 #include <libmissioncontrol/mission-control.h>
38
39 #include <libempathy/empathy-idle.h>
40 #include <libempathy/empathy-utils.h>
41 #include <libempathy/empathy-debug.h>
42
43 #include <libempathy-gtk/empathy-conf.h>
44
45 #include "empathy-main-window.h"
46 #include "empathy-status-icon.h"
47 #include "bacon-message-connection.h"
48
49 #define DEBUG_DOMAIN "EmpathyMain"
50
51 static BaconMessageConnection *connection = NULL;
52
53 static void
54 service_ended_cb (MissionControl *mc,
55                   gpointer        user_data)
56 {
57         empathy_debug (DEBUG_DOMAIN, "Mission Control stopped");
58 }
59
60 static void
61 operation_error_cb (MissionControl *mc,
62                     guint           operation_id,
63                     guint           error_code,
64                     gpointer        user_data)
65 {
66         const gchar *message;
67
68         switch (error_code) {
69         case MC_DISCONNECTED_ERROR:
70                 message = _("Disconnected");
71                 break;
72         case MC_INVALID_HANDLE_ERROR:
73                 message = _("Invalid handle");
74                 break;
75         case MC_NO_MATCHING_CONNECTION_ERROR:
76                 message = _("No matching connection");
77                 break;
78         case MC_INVALID_ACCOUNT_ERROR:
79                 message = _("Invalid account");
80                 break;
81         case MC_PRESENCE_FAILURE_ERROR:
82                 message = _("Presence failure");
83                 break;
84         case MC_NO_ACCOUNTS_ERROR:
85                 message = _("No accounts");
86                 break;
87         case MC_NETWORK_ERROR:
88                 message = _("Network error");
89                 break;
90         case MC_CONTACT_DOES_NOT_SUPPORT_VOICE_ERROR:
91                 message = _("Contact does not support voice");
92                 break;
93         case MC_LOWMEM_ERROR:
94                 message = _("Lowmem");
95                 break;
96         case MC_CHANNEL_REQUEST_GENERIC_ERROR:
97                 message = _("Channel request generic error");
98                 break;
99         case MC_CHANNEL_BANNED_ERROR:
100                 message = _("Channel banned");
101                 break;
102         case MC_CHANNEL_FULL_ERROR:
103                 message = _("Channel full");
104                 break;
105         case MC_CHANNEL_INVITE_ONLY_ERROR:
106                 message = _("Channel invite only");
107                 break;
108         default:
109                 message = _("Unknown error code");
110         }
111
112         empathy_debug (DEBUG_DOMAIN, "Error during operation %d: %s",
113                        operation_id, message);
114 }
115
116 static void
117 use_nm_notify_cb (EmpathyConf *conf,
118                   const gchar *key,
119                   gpointer     user_data)
120 {
121         EmpathyIdle *idle = user_data;
122         gboolean     use_nm;
123
124         if (empathy_conf_get_bool (conf, key, &use_nm)) {
125                 empathy_idle_set_use_nm (idle, use_nm);
126         }
127 }
128
129 static void
130 create_salut_account (void)
131 {
132         McProfile  *profile;
133         McProtocol *protocol;
134         gboolean    salut_created = FALSE;
135         McAccount  *account;
136         GList      *accounts;
137         EBook      *book;
138         EContact   *contact;
139         gchar      *nickname = NULL;
140         gchar      *first_name = NULL;
141         gchar      *last_name = NULL;
142         gchar      *email = NULL;
143         gchar      *jid = NULL;
144         GError     *error = NULL;
145
146         /* Check if we already created a salut account */
147         empathy_conf_get_bool (empathy_conf_get(),
148                                EMPATHY_PREFS_SALUT_ACCOUNT_CREATED,
149                                &salut_created);
150         if (salut_created) {
151                 return;
152         }
153
154         empathy_debug (DEBUG_DOMAIN, "Try to add a salut account...");
155
156         /* Check if the salut CM is installed */
157         profile = mc_profile_lookup ("salut");
158         protocol = mc_profile_get_protocol (profile);
159         if (!protocol) {
160                 empathy_debug (DEBUG_DOMAIN, "Salut not installed");
161                 g_object_unref (profile);
162                 return;
163         }
164         g_object_unref (protocol);
165
166         /* Get self EContact from EDS */
167         if (!e_book_get_self (&contact, &book, &error)) {
168                 empathy_debug (DEBUG_DOMAIN, "Failed to get self econtact: %s",
169                                error ? error->message : "No error given");
170                 g_clear_error (&error);
171                 g_object_unref (profile);
172                 return;
173         }
174
175         empathy_conf_set_bool (empathy_conf_get (),
176                                EMPATHY_PREFS_SALUT_ACCOUNT_CREATED,
177                                TRUE);
178
179         /* Check if there is already a salut account */
180         accounts = mc_accounts_list_by_profile (profile);
181         if (accounts) {
182                 empathy_debug (DEBUG_DOMAIN, "There is already a salut account");
183                 mc_accounts_list_free (accounts);
184                 g_object_unref (profile);
185                 return;
186         }
187
188         account = mc_account_create (profile);
189         mc_account_set_display_name (account, _("People nearby"));
190         
191         nickname = e_contact_get (contact, E_CONTACT_NICKNAME);
192         first_name = e_contact_get (contact, E_CONTACT_GIVEN_NAME);
193         last_name = e_contact_get (contact, E_CONTACT_FAMILY_NAME);
194         email = e_contact_get (contact, E_CONTACT_EMAIL_1);
195         jid = e_contact_get (contact, E_CONTACT_IM_JABBER_HOME_1);
196         
197         if (!tp_strdiff (nickname, "nickname")) {
198                 g_free (nickname);
199                 nickname = NULL;
200         }
201
202         empathy_debug (DEBUG_DOMAIN, "Salut account created:\n"
203                                      "  nickname=%s\n"
204                                      "  first-name=%s\n"
205                                      "  last-name=%s\n"
206                                      "  email=%s\n"
207                                      "  jid=%s\n",
208                        nickname, first_name, last_name, email, jid);
209
210         mc_account_set_param_string (account, "nickname", nickname ? nickname : "");
211         mc_account_set_param_string (account, "first-name", first_name ? first_name : "");
212         mc_account_set_param_string (account, "last-name", last_name ? last_name : "");
213         mc_account_set_param_string (account, "email", email ? email : "");
214         mc_account_set_param_string (account, "jid", jid ? jid : "");
215
216         g_free (nickname);
217         g_free (first_name);
218         g_free (last_name);
219         g_free (email);
220         g_free (jid);
221         g_object_unref (account);
222         g_object_unref (profile);
223         g_object_unref (contact);
224         g_object_unref (book);
225 }
226
227 /* The code that handles single-instance and startup notification is
228  * copied from gedit.
229  *
230  * Copyright (C) 2005 - Paolo Maggi 
231  */
232 static void
233 on_bacon_message_received (const char *message,
234                            gpointer    data)
235 {
236         GtkWidget *window = data;
237         guint32    startup_timestamp;
238
239         g_return_if_fail (message != NULL);
240
241         empathy_debug (DEBUG_DOMAIN,
242                        "Other instance launched, presenting the main window "
243                        "(message is '%s')", message);
244
245         startup_timestamp = atoi (message);
246
247         /* Set the proper interaction time on the window.
248          * Fall back to roundtripping to the X server when we
249          * don't have the timestamp, e.g. when launched from
250          * terminal. We also need to make sure that the window
251          * has been realized otherwise it will not work. lame. */
252         if (startup_timestamp == 0) {
253                 /* Work if launched from the terminal */
254                 empathy_debug (DEBUG_DOMAIN, "Using X server timestamp as a fallback");
255
256                 if (!GTK_WIDGET_REALIZED (window)) {
257                         gtk_widget_realize (GTK_WIDGET (window));
258                 }
259
260                 startup_timestamp = gdk_x11_get_server_time (window->window);
261         }
262
263         gtk_window_present_with_time (GTK_WINDOW (window), startup_timestamp);
264 }
265
266 static guint32
267 get_startup_timestamp ()
268 {
269         const gchar *startup_id_env;
270         gchar       *startup_id = NULL;
271         gchar       *time_str;
272         gchar       *end;
273         gulong       retval = 0;
274
275         /* we don't unset the env, since startup-notification
276          * may still need it */
277         startup_id_env = g_getenv ("DESKTOP_STARTUP_ID");
278         if (startup_id_env == NULL) {
279                 goto out;
280         }
281
282         startup_id = g_strdup (startup_id_env);
283
284         time_str = g_strrstr (startup_id, "_TIME");
285         if (time_str == NULL) {
286                 goto out;
287         }
288
289         errno = 0;
290
291         /* Skip past the "_TIME" part */
292         time_str += 5;
293
294         retval = strtoul (time_str, &end, 0);
295         if (end == time_str || errno != 0)
296                 retval = 0;
297
298  out:
299         g_free (startup_id);
300
301         return (retval > 0) ? retval : 0;
302 }
303
304 int
305 main (int argc, char *argv[])
306 {
307         guint32            startup_timestamp;
308         EmpathyStatusIcon *icon;
309         GtkWidget         *window;
310         MissionControl    *mc;
311         EmpathyIdle       *idle;
312         gboolean           autoconnect = TRUE;
313         gboolean           no_connect = FALSE; 
314         GError            *error = NULL;
315         GOptionEntry       options[] = {
316                 { "no-connect", 'n',
317                   0, G_OPTION_ARG_NONE, &no_connect,
318                   N_("Don't connect on startup"),
319                   NULL },
320                 { NULL }
321         };
322
323         bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
324         bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
325         textdomain (GETTEXT_PACKAGE);
326
327         startup_timestamp = get_startup_timestamp ();
328
329         if (!gtk_init_with_args (&argc, &argv,
330                                  _("- Empathy Instant Messenger"),
331                                  options, GETTEXT_PACKAGE, &error)) {
332                 empathy_debug (DEBUG_DOMAIN, error->message);
333                 return EXIT_FAILURE;
334         }
335
336         empathy_debug_set_log_file_from_env ();
337
338         g_set_application_name (PACKAGE_NAME);
339
340         gtk_window_set_default_icon_name ("empathy");
341         gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (),
342                                            PKGDATADIR G_DIR_SEPARATOR_S "icons");
343
344         /* Setting up the bacon connection */
345         connection = bacon_message_connection_new ("empathy");
346         if (connection != NULL) {
347                 if (!bacon_message_connection_get_is_server (connection)) {
348                         gchar *message;
349
350                         empathy_debug (DEBUG_DOMAIN, "Activating existing instance");
351
352                         message = g_strdup_printf ("%" G_GUINT32_FORMAT,
353                                                    startup_timestamp);
354                         bacon_message_connection_send (connection, message);
355
356                         /* We never popup a window, so tell startup-notification
357                          * that we are done. */
358                         gdk_notify_startup_complete ();
359
360                         g_free (message);
361                         bacon_message_connection_free (connection);
362
363                         return EXIT_SUCCESS;
364                 }
365         } else {
366                 g_warning ("Cannot create the 'empathy' bacon connection.");
367         }
368
369         /* Setting up MC */
370         mc = empathy_mission_control_new ();
371         g_signal_connect (mc, "ServiceEnded",
372                           G_CALLBACK (service_ended_cb),
373                           NULL);
374         g_signal_connect (mc, "Error",
375                           G_CALLBACK (operation_error_cb),
376                           NULL);
377
378         /* Setting up Idle */
379         idle = empathy_idle_new ();
380         empathy_idle_set_auto_away (idle, TRUE);
381         use_nm_notify_cb (empathy_conf_get (), EMPATHY_PREFS_USE_NM, idle);
382         empathy_conf_notify_add (empathy_conf_get (), EMPATHY_PREFS_USE_NM,
383                                  use_nm_notify_cb, idle);
384
385         /* Autoconnect */
386         empathy_conf_get_bool (empathy_conf_get(),
387                                EMPATHY_PREFS_AUTOCONNECT,
388                                &autoconnect);
389         if (autoconnect && ! no_connect &&
390             empathy_idle_get_state (idle) <= MC_PRESENCE_OFFLINE) {
391                 empathy_idle_set_state (idle, MC_PRESENCE_AVAILABLE);
392         }
393         
394         create_salut_account ();
395
396         /* Setting up UI */
397         window = empathy_main_window_show ();
398         icon = empathy_status_icon_new (GTK_WINDOW (window));
399
400         if (connection) {
401                 /* We se the callback here because we need window */
402                 bacon_message_connection_set_callback (connection,
403                                                        on_bacon_message_received,
404                                                        window);
405         }
406
407         gtk_main ();
408
409         empathy_idle_set_state (idle, MC_PRESENCE_OFFLINE);
410
411         g_object_unref (mc);
412         g_object_unref (idle);
413         g_object_unref (icon);
414
415         return EXIT_SUCCESS;
416 }
417