2 * Copyright (C) 2005-2007 Imendio AB
3 * Copyright (C) 2007-2010 Collabora Ltd.
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.
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.
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., 51 Franklin St, Fifth Floor,
18 * Boston, MA 02110-1301 USA
20 * Authors: Martyn Russell <martyn@imendio.com>
21 * Xavier Claessens <xclaesse@gmail.com>
22 * Cosimo Cecchi <cosimo.cecchi@collabora.co.uk>
23 * Jonathan Tellier <jonathan.tellier@gmail.com>
24 * Travis Reitter <travis.reitter@collabora.co.uk>
28 #include "empathy-accounts.h"
30 #include <glib/gi18n.h>
31 #include <telepathy-glib/telepathy-glib-dbus.h>
34 #include <cheese-gtk.h>
37 #include "empathy-accounts-common.h"
38 #include "empathy-bus-names.h"
39 #include "empathy-ui-utils.h"
40 #include "empathy-utils.h"
42 #define DEBUG_FLAG EMPATHY_DEBUG_ACCOUNT
43 #include "empathy-debug.h"
45 static gboolean only_if_needed
= FALSE
;
46 static gboolean hidden
= FALSE
;
47 static gchar
*selected_account_name
= NULL
;
50 maybe_show_accounts_ui (TpAccountManager
*manager
,
56 if (only_if_needed
&& empathy_accounts_has_non_salut_accounts (manager
))
59 empathy_accounts_show_accounts_ui (manager
, NULL
, app
);
63 find_account (TpAccountManager
*mgr
,
67 TpAccount
*found
= NULL
;
69 accounts
= tp_account_manager_dup_valid_accounts (mgr
);
70 for (l
= accounts
; l
!= NULL
; l
= g_list_next (l
))
72 if (!tp_strdiff (tp_proxy_get_object_path (l
->data
), path
))
79 g_list_free_full (accounts
, g_object_unref
);
84 account_manager_ready_for_accounts_cb (GObject
*source_object
,
88 TpAccountManager
*manager
= TP_ACCOUNT_MANAGER (source_object
);
90 GApplication
*app
= G_APPLICATION (user_data
);
92 if (!tp_proxy_prepare_finish (manager
, result
, &error
))
94 DEBUG ("Failed to prepare account manager: %s", error
->message
);
95 g_clear_error (&error
);
99 if (selected_account_name
!= NULL
)
104 /* create and prep the corresponding TpAccount so it's fully ready by the
105 * time we try to select it in the accounts dialog */
106 if (g_str_has_prefix (selected_account_name
, TP_ACCOUNT_OBJECT_PATH_BASE
))
107 account_path
= g_strdup (selected_account_name
);
109 account_path
= g_strdup_printf ("%s%s", TP_ACCOUNT_OBJECT_PATH_BASE
,
110 selected_account_name
);
112 account
= find_account (manager
, account_path
);
116 empathy_accounts_show_accounts_ui (manager
, account
, app
);
121 DEBUG ("Failed to find account with path %s", account_path
);
123 g_clear_error (&error
);
125 maybe_show_accounts_ui (manager
, app
);
128 g_free (account_path
);
132 maybe_show_accounts_ui (manager
, app
);
136 g_application_release (app
);
140 app_activate (GApplication
*app
)
142 TpAccountManager
*account_manager
;
145 account_manager
= tp_account_manager_dup ();
147 /* Hold the application while preparing the AM */
148 g_application_hold (app
);
150 tp_proxy_prepare_async (account_manager
, NULL
,
151 account_manager_ready_for_accounts_cb
, app
);
153 g_object_unref (account_manager
);
157 local_cmdline (GApplication
*app
,
164 gboolean retval
= TRUE
;
165 GError
*error
= NULL
;
167 GOptionContext
*optcontext
;
168 GOptionEntry options
[] = {
170 0, G_OPTION_ARG_NONE
, &hidden
,
171 N_("Don’t display any dialogs; do any work (e.g. importing) and exit"),
174 0, G_OPTION_ARG_NONE
, &only_if_needed
,
175 N_("Don’t display any dialogs unless there are only “People Nearby” accounts"),
177 { "select-account", 's',
178 G_OPTION_FLAG_IN_MAIN
, G_OPTION_ARG_STRING
, &selected_account_name
,
179 N_("Initially select given account (eg, "
180 "gabble/jabber/foo_40example_2eorg0)"),
181 N_("<account-id>") },
186 optcontext
= g_option_context_new (N_("— Empathy Accounts"));
187 g_option_context_add_group (optcontext
, gtk_get_option_group (FALSE
));
188 g_option_context_add_main_entries (optcontext
, options
, GETTEXT_PACKAGE
);
189 g_option_context_set_translation_domain (optcontext
, GETTEXT_PACKAGE
);
192 for (i
= 0; argv
[i
] != NULL
; i
++)
195 if (!g_option_context_parse (optcontext
, &argc
, &argv
, &error
))
197 g_print ("%s\nRun '%s --help' to see a full list of available command line options.\n",
198 error
->message
, argv
[0]);
199 g_warning ("Error in empathy init: %s", error
->message
);
200 g_clear_error (&error
);
202 *exit_status
= EXIT_FAILURE
;
206 if (g_application_register (app
, NULL
, &error
))
208 g_application_activate (app
);
212 g_warning ("Impossible to register empathy-application: %s", error
->message
);
213 g_clear_error (&error
);
214 *exit_status
= EXIT_FAILURE
;
218 g_option_context_free (optcontext
);
224 main (int argc
, char *argv
[])
227 GObjectClass
*app_class
;
233 /* Used by the avatar chooser */
234 g_return_val_if_fail (cheese_gtk_init (&argc
, &argv
), 1);
239 textdomain (GETTEXT_PACKAGE
);
240 g_set_application_name (_("Empathy Accounts"));
242 /* Make empathy and empathy-accounts appear as the same app in gnome-shell */
243 g_set_prgname ("empathy");
244 gtk_window_set_default_icon_name ("empathy");
246 app
= gtk_application_new (EMPATHY_ACCOUNTS_BUS_NAME
, G_APPLICATION_FLAGS_NONE
);
247 app_class
= G_OBJECT_GET_CLASS (app
);
248 G_APPLICATION_CLASS (app_class
)->local_command_line
= local_cmdline
;
249 G_APPLICATION_CLASS (app_class
)->activate
= app_activate
;
251 retval
= g_application_run (G_APPLICATION (app
), argc
, argv
);
253 g_object_unref (app
);