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