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