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