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