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