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