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