]> git.0d.be Git - empathy.git/blob - src/empathy.c
Do not crash if there is no salut profile installed
[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 #include <string.h>
28
29 #include <glib.h>
30 #include <glib/gi18n.h>
31 #include <gtk/gtk.h>
32 #include <gdk/gdkx.h>
33
34 #include <libebook/e-book.h>
35
36 #include <telepathy-glib/util.h>
37 #include <libmissioncontrol/mc-account.h>
38 #include <libmissioncontrol/mission-control.h>
39
40 #include <libempathy/empathy-idle.h>
41 #include <libempathy/empathy-utils.h>
42 #include <libempathy/empathy-dispatcher.h>
43 #include <libempathy/empathy-tp-chat.h>
44 #include <libempathy/empathy-tp-group.h>
45
46 #include <libempathy-gtk/empathy-conf.h>
47
48 #include "empathy-accounts-dialog.h"
49 #include "empathy-main-window.h"
50 #include "empathy-status-icon.h"
51 #include "empathy-call-window.h"
52 #include "empathy-chat-window.h"
53 #include "bacon-message-connection.h"
54
55 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
56 #include <libempathy/empathy-debug.h>
57
58 static BaconMessageConnection *connection = NULL;
59
60 static void
61 dispatch_channel_cb (EmpathyDispatcher *dispatcher,
62                      TpChannel         *channel,
63                      gpointer           user_data)
64 {
65         gchar *channel_type;
66
67         g_object_get (channel, "channel-type", &channel_type, NULL);
68         if (!tp_strdiff (channel_type, TP_IFACE_CHANNEL_TYPE_TEXT)) {
69                 EmpathyTpChat *tp_chat;
70                 EmpathyChat   *chat = NULL;
71                 const gchar   *id;
72
73                 tp_chat = empathy_tp_chat_new (channel);
74                 empathy_run_until_ready (tp_chat);
75
76                 id = empathy_tp_chat_get_id (tp_chat);
77                 if (!id) {
78                         EmpathyContact *contact;
79
80                         contact = empathy_tp_chat_get_remote_contact (tp_chat);
81                         if (contact) {
82                                 id = empathy_contact_get_id (contact);
83                         }
84                 }
85
86                 if (id) {
87                         McAccount *account;
88
89                         account = empathy_tp_chat_get_account (tp_chat);
90                         chat = empathy_chat_window_find_chat (account, id);
91                 }
92
93                 if (chat) {
94                         empathy_chat_set_tp_chat (chat, tp_chat);
95                 } else {
96                         chat = empathy_chat_new (tp_chat);
97                 }
98
99                 empathy_chat_window_present_chat (chat);
100                 g_object_unref (tp_chat);
101         }
102         else if (!tp_strdiff (channel_type, TP_IFACE_CHANNEL_TYPE_STREAMED_MEDIA)) {
103                 empathy_call_window_new (channel);
104         }
105
106         g_free (channel_type);
107 }
108
109 static void
110 service_ended_cb (MissionControl *mc,
111                   gpointer        user_data)
112 {
113         DEBUG ("Mission Control stopped");
114 }
115
116 static void
117 operation_error_cb (MissionControl *mc,
118                     guint           operation_id,
119                     guint           error_code,
120                     gpointer        user_data)
121 {
122         const gchar *message;
123
124         switch (error_code) {
125         case MC_DISCONNECTED_ERROR:
126                 message = "Disconnected";
127                 break;
128         case MC_INVALID_HANDLE_ERROR:
129                 message = "Invalid handle";
130                 break;
131         case MC_NO_MATCHING_CONNECTION_ERROR:
132                 message = "No matching connection";
133                 break;
134         case MC_INVALID_ACCOUNT_ERROR:
135                 message = "Invalid account";
136                 break;
137         case MC_PRESENCE_FAILURE_ERROR:
138                 message = "Presence failure";
139                 break;
140         case MC_NO_ACCOUNTS_ERROR:
141                 message = "No accounts";
142                 break;
143         case MC_NETWORK_ERROR:
144                 message = "Network error";
145                 break;
146         case MC_CONTACT_DOES_NOT_SUPPORT_VOICE_ERROR:
147                 message = "Contact does not support voice";
148                 break;
149         case MC_LOWMEM_ERROR:
150                 message = "Lowmem";
151                 break;
152         case MC_CHANNEL_REQUEST_GENERIC_ERROR:
153                 message = "Channel request generic error";
154                 break;
155         case MC_CHANNEL_BANNED_ERROR:
156                 message = "Channel banned";
157                 break;
158         case MC_CHANNEL_FULL_ERROR:
159                 message = "Channel full";
160                 break;
161         case MC_CHANNEL_INVITE_ONLY_ERROR:
162                 message = "Channel invite only";
163                 break;
164         default:
165                 message = "Unknown error code";
166         }
167
168         DEBUG ("Error during operation %d: %s", operation_id, message);
169 }
170
171 static void
172 use_nm_notify_cb (EmpathyConf *conf,
173                   const gchar *key,
174                   gpointer     user_data)
175 {
176         EmpathyIdle *idle = user_data;
177         gboolean     use_nm;
178
179         if (empathy_conf_get_bool (conf, key, &use_nm)) {
180                 empathy_idle_set_use_nm (idle, use_nm);
181         }
182 }
183
184 static void
185 create_salut_account (void)
186 {
187         McProfile  *profile;
188         McProtocol *protocol;
189         gboolean    salut_created = FALSE;
190         McAccount  *account;
191         GList      *accounts;
192         EBook      *book;
193         EContact   *contact;
194         gchar      *nickname = NULL;
195         gchar      *first_name = NULL;
196         gchar      *last_name = NULL;
197         gchar      *email = NULL;
198         gchar      *jid = NULL;
199         GError     *error = NULL;
200
201         /* Check if we already created a salut account */
202         empathy_conf_get_bool (empathy_conf_get(),
203                                EMPATHY_PREFS_SALUT_ACCOUNT_CREATED,
204                                &salut_created);
205         if (salut_created) {
206                 return;
207         }
208
209         DEBUG ("Try to add a salut account...");
210
211         /* Check if the salut CM is installed */
212         profile = mc_profile_lookup ("salut");
213         if (!profile) {
214                 DEBUG ("No salut profile");
215                 return;
216         }
217         protocol = mc_profile_get_protocol (profile);
218         if (!protocol) {
219                 DEBUG ("Salut not installed");
220                 g_object_unref (profile);
221                 return;
222         }
223         g_object_unref (protocol);
224
225         /* Get self EContact from EDS */
226         if (!e_book_get_self (&contact, &book, &error)) {
227                 DEBUG ("Failed to get self econtact: %s",
228                         error ? error->message : "No error given");
229                 g_clear_error (&error);
230                 g_object_unref (profile);
231                 return;
232         }
233
234         empathy_conf_set_bool (empathy_conf_get (),
235                                EMPATHY_PREFS_SALUT_ACCOUNT_CREATED,
236                                TRUE);
237
238         /* Check if there is already a salut account */
239         accounts = mc_accounts_list_by_profile (profile);
240         if (accounts) {
241                 DEBUG ("There is already a salut account");
242                 mc_accounts_list_free (accounts);
243                 g_object_unref (profile);
244                 return;
245         }
246
247         account = mc_account_create (profile);
248         mc_account_set_display_name (account, _("People nearby"));
249         
250         nickname = e_contact_get (contact, E_CONTACT_NICKNAME);
251         first_name = e_contact_get (contact, E_CONTACT_GIVEN_NAME);
252         last_name = e_contact_get (contact, E_CONTACT_FAMILY_NAME);
253         email = e_contact_get (contact, E_CONTACT_EMAIL_1);
254         jid = e_contact_get (contact, E_CONTACT_IM_JABBER_HOME_1);
255         
256         if (!tp_strdiff (nickname, "nickname")) {
257                 g_free (nickname);
258                 nickname = NULL;
259         }
260
261         DEBUG ("Salut account created:\nnickname=%s\nfirst-name=%s\n"
262                 "last-name=%s\nemail=%s\njid=%s\n",
263                 nickname, first_name, last_name, email, jid);
264
265         mc_account_set_param_string (account, "nickname", nickname ? nickname : "");
266         mc_account_set_param_string (account, "first-name", first_name ? first_name : "");
267         mc_account_set_param_string (account, "last-name", last_name ? last_name : "");
268         mc_account_set_param_string (account, "email", email ? email : "");
269         mc_account_set_param_string (account, "jid", jid ? jid : "");
270
271         g_free (nickname);
272         g_free (first_name);
273         g_free (last_name);
274         g_free (email);
275         g_free (jid);
276         g_object_unref (account);
277         g_object_unref (profile);
278         g_object_unref (contact);
279         g_object_unref (book);
280 }
281
282 /* The code that handles single-instance and startup notification is
283  * copied from gedit.
284  *
285  * Copyright (C) 2005 - Paolo Maggi 
286  */
287 static void
288 on_bacon_message_received (const char *message,
289                            gpointer    data)
290 {
291         GtkWidget *window = data;
292         guint32    startup_timestamp;
293
294         g_return_if_fail (message != NULL);
295
296         DEBUG ("Other instance launched, presenting the main window. message='%s'",
297                 message);
298
299         if (strcmp (message, "accounts") == 0) {
300                 /* accounts dialog requested */
301                 empathy_accounts_dialog_show (GTK_WINDOW (window), NULL);
302         } else {
303                 startup_timestamp = atoi (message);
304
305                 /* Set the proper interaction time on the window.
306                  * Fall back to roundtripping to the X server when we
307                  * don't have the timestamp, e.g. when launched from
308                  * terminal. We also need to make sure that the window
309                  * has been realized otherwise it will not work. lame. */
310                 if (startup_timestamp == 0) {
311                         /* Work if launched from the terminal */
312                         DEBUG ("Using X server timestamp as a fallback");
313
314                         if (!GTK_WIDGET_REALIZED (window)) {
315                                 gtk_widget_realize (GTK_WIDGET (window));
316                         }
317
318                         startup_timestamp = gdk_x11_get_server_time (window->window);
319                 }
320
321                 gtk_window_present_with_time (GTK_WINDOW (window), startup_timestamp);
322         }
323 }
324
325 static guint32
326 get_startup_timestamp ()
327 {
328         const gchar *startup_id_env;
329         gchar       *startup_id = NULL;
330         gchar       *time_str;
331         gchar       *end;
332         gulong       retval = 0;
333
334         /* we don't unset the env, since startup-notification
335          * may still need it */
336         startup_id_env = g_getenv ("DESKTOP_STARTUP_ID");
337         if (startup_id_env == NULL) {
338                 goto out;
339         }
340
341         startup_id = g_strdup (startup_id_env);
342
343         time_str = g_strrstr (startup_id, "_TIME");
344         if (time_str == NULL) {
345                 goto out;
346         }
347
348         errno = 0;
349
350         /* Skip past the "_TIME" part */
351         time_str += 5;
352
353         retval = strtoul (time_str, &end, 0);
354         if (end == time_str || errno != 0)
355                 retval = 0;
356
357  out:
358         g_free (startup_id);
359
360         return (retval > 0) ? retval : 0;
361 }
362
363 int
364 main (int argc, char *argv[])
365 {
366         guint32            startup_timestamp;
367         EmpathyStatusIcon *icon;
368         EmpathyDispatcher *dispatcher;
369         GtkWidget         *window;
370         MissionControl    *mc;
371         EmpathyIdle       *idle;
372         gboolean           autoconnect = TRUE;
373         gboolean           no_connect = FALSE; 
374         gboolean           hide_contact_list = FALSE;
375         gboolean           accounts_dialog = FALSE;
376         GError            *error = NULL;
377         GOptionEntry       options[] = {
378                 { "no-connect", 'n',
379                   0, G_OPTION_ARG_NONE, &no_connect,
380                   N_("Don't connect on startup"),
381                   NULL },
382                 { "hide-contact-list", 'h',
383                   0, G_OPTION_ARG_NONE, &hide_contact_list,
384                   N_("Don't show the contact list on startup"),
385                   NULL },
386                 { "accounts", 'a',
387                   0, G_OPTION_ARG_NONE, &accounts_dialog,
388                   N_("Show the accounts dialog"),
389                   NULL },
390                 { NULL }
391         };
392
393         bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
394         bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
395         textdomain (GETTEXT_PACKAGE);
396
397         startup_timestamp = get_startup_timestamp ();
398
399         if (!gtk_init_with_args (&argc, &argv,
400                                  _("- Empathy Instant Messenger"),
401                                  options, GETTEXT_PACKAGE, &error)) {
402                 g_warning ("Error in gtk init: %s", error->message);
403                 return EXIT_FAILURE;
404         }
405
406         if (g_getenv ("EMPATHY_TIMING") != NULL) {
407                 g_log_set_default_handler (tp_debug_timestamped_log_handler, NULL);
408         }
409         empathy_debug_set_flags (g_getenv ("EMPATHY_DEBUG"));
410         tp_debug_divert_messages (g_getenv ("EMPATHY_LOGFILE"));
411
412         g_set_application_name (PACKAGE_NAME);
413
414         gtk_window_set_default_icon_name ("empathy");
415         gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (),
416                                            PKGDATADIR G_DIR_SEPARATOR_S "icons");
417
418         /* Setting up the bacon connection */
419         connection = bacon_message_connection_new ("empathy");
420         if (connection != NULL) {
421                 if (!bacon_message_connection_get_is_server (connection)) {
422                         gchar *message;
423
424                         if (accounts_dialog) {
425                                 DEBUG ("Showing accounts dialog from existing Empathy instance");
426
427                                 message = g_strdup ("accounts");
428
429                         } else {
430
431                                 DEBUG ("Activating existing instance");
432
433                                 message = g_strdup_printf ("%" G_GUINT32_FORMAT,
434                                                            startup_timestamp);
435                         }
436
437                         bacon_message_connection_send (connection, message);
438
439                         /* We never popup a window, so tell startup-notification
440                          * that we are done. */
441                         gdk_notify_startup_complete ();
442
443                         g_free (message);
444                         bacon_message_connection_free (connection);
445
446                         return EXIT_SUCCESS;
447                 }
448         } else {
449                 g_warning ("Cannot create the 'empathy' bacon connection.");
450         }
451
452         /* Setting up MC */
453         mc = empathy_mission_control_new ();
454         g_signal_connect (mc, "ServiceEnded",
455                           G_CALLBACK (service_ended_cb),
456                           NULL);
457         g_signal_connect (mc, "Error",
458                           G_CALLBACK (operation_error_cb),
459                           NULL);
460
461         if (accounts_dialog) {
462                 GtkWidget *dialog;
463
464                 dialog = empathy_accounts_dialog_show (NULL, NULL);
465                 g_signal_connect (dialog, "destroy",
466                                   G_CALLBACK (gtk_main_quit),
467                                   NULL);
468
469                 gtk_main ();
470                 return 0;
471         }
472
473         /* Setting up Idle */
474         idle = empathy_idle_new ();
475         empathy_idle_set_auto_away (idle, TRUE);
476         use_nm_notify_cb (empathy_conf_get (), EMPATHY_PREFS_USE_NM, idle);
477         empathy_conf_notify_add (empathy_conf_get (), EMPATHY_PREFS_USE_NM,
478                                  use_nm_notify_cb, idle);
479
480         /* Autoconnect */
481         empathy_conf_get_bool (empathy_conf_get(),
482                                EMPATHY_PREFS_AUTOCONNECT,
483                                &autoconnect);
484         if (autoconnect && ! no_connect &&
485             empathy_idle_get_state (idle) <= MC_PRESENCE_OFFLINE) {
486                 empathy_idle_set_state (idle, MC_PRESENCE_AVAILABLE);
487         }
488         
489         create_salut_account ();
490
491         /* Setting up UI */
492         window = empathy_main_window_show ();
493         icon = empathy_status_icon_new (GTK_WINDOW (window), hide_contact_list);
494
495         if (connection) {
496                 /* We se the callback here because we need window */
497                 bacon_message_connection_set_callback (connection,
498                                                        on_bacon_message_received,
499                                                        window);
500         }
501
502         /* Handle channels */
503         dispatcher = empathy_dispatcher_new ();
504         g_signal_connect (dispatcher, "dispatch-channel",
505                           G_CALLBACK (dispatch_channel_cb),
506                           NULL);
507
508         gtk_main ();
509
510         empathy_idle_set_state (idle, MC_PRESENCE_OFFLINE);
511
512         g_object_unref (mc);
513         g_object_unref (idle);
514         g_object_unref (icon);
515         g_object_unref (dispatcher);
516
517         return EXIT_SUCCESS;
518 }
519