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