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