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