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