]> git.0d.be Git - empathy.git/blob - src/empathy-accounts.c
empathy-accounts: remove --assistant option
[empathy.git] / src / empathy-accounts.c
1 /*
2  * Copyright (C) 2005-2007 Imendio AB
3  * Copyright (C) 2007-2010 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., 51 Franklin St, Fifth Floor,
18  * Boston, MA  02110-1301  USA
19  *
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>
25  */
26
27 #include <config.h>
28
29 #include <string.h>
30 #include <stdlib.h>
31
32 #include <gtk/gtk.h>
33 #include <glib/gi18n.h>
34
35 #include <telepathy-glib/account-manager.h>
36 #include <telepathy-glib/defs.h>
37 #include <telepathy-glib/util.h>
38
39 #include <libempathy/empathy-utils.h>
40 #include <libempathy/empathy-connection-managers.h>
41 #include <libempathy-gtk/empathy-ui-utils.h>
42
43 #include "empathy-accounts.h"
44 #include "empathy-accounts-common.h"
45 #include "empathy-accounts-dialog.h"
46 #include "empathy-auto-salut-account-helper.h"
47
48 #define DEBUG_FLAG EMPATHY_DEBUG_ACCOUNT
49 #include <libempathy/empathy-debug.h>
50
51 #define EMPATHY_ACCOUNTS_DBUS_NAME "org.gnome.EmpathyAccounts"
52
53 static gboolean only_if_needed = FALSE;
54 static gboolean hidden = FALSE;
55 static gchar *selected_account_name = NULL;
56
57 static void
58 maybe_show_accounts_ui (TpAccountManager *manager,
59     GApplication *app)
60 {
61   if (hidden)
62     return;
63
64   if (only_if_needed && empathy_accounts_has_non_salut_accounts (manager))
65     return;
66
67   empathy_accounts_show_accounts_ui (manager, NULL, app);
68 }
69
70 static TpAccount *
71 find_account (TpAccountManager *mgr,
72     const gchar *path)
73 {
74   GList *accounts, *l;
75   TpAccount *found = NULL;
76
77   accounts = tp_account_manager_get_valid_accounts (mgr);
78   for (l = accounts; l != NULL; l = g_list_next (l))
79     {
80       if (!tp_strdiff (tp_proxy_get_object_path (l->data), path))
81         {
82           found = l->data;
83           break;
84         }
85     }
86
87   g_list_free (accounts);
88   return found;
89 }
90
91 static void
92 account_manager_ready_for_accounts_cb (GObject *source_object,
93     GAsyncResult *result,
94     gpointer user_data)
95 {
96   TpAccountManager *manager = TP_ACCOUNT_MANAGER (source_object);
97   GError *error = NULL;
98   GApplication *app = G_APPLICATION (user_data);
99
100   if (!tp_proxy_prepare_finish (manager, result, &error))
101     {
102       DEBUG ("Failed to prepare account manager: %s", error->message);
103       g_clear_error (&error);
104       goto out;
105     }
106
107   if (selected_account_name != NULL)
108     {
109       gchar *account_path;
110       TpAccount *account;
111
112       /* create and prep the corresponding TpAccount so it's fully ready by the
113        * time we try to select it in the accounts dialog */
114       if (g_str_has_prefix (selected_account_name, TP_ACCOUNT_OBJECT_PATH_BASE))
115         account_path = g_strdup (selected_account_name);
116       else
117         account_path = g_strdup_printf ("%s%s", TP_ACCOUNT_OBJECT_PATH_BASE,
118             selected_account_name);
119
120       account = find_account (manager, account_path);
121
122       if (account != NULL)
123         {
124           empathy_accounts_show_accounts_ui (manager, account, app);
125           goto out;
126         }
127       else
128         {
129           DEBUG ("Failed to find account with path %s", account_path);
130
131           g_clear_error (&error);
132
133           maybe_show_accounts_ui (manager, app);
134         }
135
136       g_free (account_path);
137     }
138   else
139     {
140       maybe_show_accounts_ui (manager, app);
141     }
142
143 out:
144   g_application_release (app);
145 }
146
147 static int
148 app_command_line_cb (GApplication *app,
149     GApplicationCommandLine *cmdline)
150 {
151   TpAccountManager *account_manager;
152
153   account_manager = tp_account_manager_dup ();
154
155   /* Hold the application while preparing the AM */
156   g_application_hold (app);
157
158   tp_proxy_prepare_async (account_manager, NULL,
159     account_manager_ready_for_accounts_cb, app);
160
161   g_object_unref (account_manager);
162
163   return 0;
164 }
165
166 static gboolean
167 local_cmdline (GApplication *app,
168     gchar ***arguments,
169     gint *exit_status)
170 {
171   gint i;
172   gchar **argv;
173   gint argc = 0;
174   gboolean retval = FALSE;
175   GError *error = NULL;
176
177   GOptionContext *optcontext;
178   GOptionEntry options[] = {
179       { "hidden", 'h',
180         0, G_OPTION_ARG_NONE, &hidden,
181         N_("Don't display any dialogs; do any work (eg, importing) and exit"),
182         NULL },
183       { "if-needed", 'n',
184         0, G_OPTION_ARG_NONE, &only_if_needed,
185         N_("Don't display any dialogs unless there are only \"People Nearby\" accounts"),
186         NULL },
187       { "select-account", 's',
188         G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_STRING, &selected_account_name,
189         N_("Initially select given account (eg, "
190             "gabble/jabber/foo_40example_2eorg0)"),
191         N_("<account-id>") },
192
193       { NULL }
194   };
195
196   optcontext = g_option_context_new (N_("- Empathy Accounts"));
197   g_option_context_add_group (optcontext, gtk_get_option_group (TRUE));
198   g_option_context_add_main_entries (optcontext, options, GETTEXT_PACKAGE);
199
200   argv = *arguments;
201   for (i = 0; argv[i] != NULL; i++)
202     argc++;
203
204   if (!g_option_context_parse (optcontext, &argc, &argv, &error))
205     {
206       g_print ("%s\nRun '%s --help' to see a full list of available command line options.\n",
207           error->message, argv[0]);
208       g_warning ("Error in empathy init: %s", error->message);
209
210       *exit_status = EXIT_FAILURE;
211       retval = TRUE;
212     }
213
214   g_option_context_free (optcontext);
215
216   return retval;
217 }
218
219 int
220 main (int argc, char *argv[])
221 {
222   GtkApplication *app;
223   GObjectClass *app_class;
224   gint retval;
225
226   g_thread_init (NULL);
227   empathy_init ();
228
229   gtk_init (&argc, &argv);
230   empathy_gtk_init ();
231
232   g_set_application_name (_("Empathy Accounts"));
233
234   /* Make empathy and empathy-accounts appear as the same app in gnome-shell */
235   gdk_set_program_class ("Empathy");
236   gtk_window_set_default_icon_name ("empathy");
237   textdomain (GETTEXT_PACKAGE);
238
239   app = gtk_application_new (EMPATHY_ACCOUNTS_DBUS_NAME,
240       G_APPLICATION_HANDLES_COMMAND_LINE);
241   app_class = G_OBJECT_GET_CLASS (app);
242   G_APPLICATION_CLASS (app_class)->local_command_line = local_cmdline;
243
244   g_signal_connect (app, "command-line", G_CALLBACK (app_command_line_cb),
245       NULL);
246
247   retval = g_application_run (G_APPLICATION (app), argc, argv);
248
249   g_object_unref (app);
250
251   return retval;
252 }