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