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