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