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