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