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