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