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