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