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