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