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