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