]> git.0d.be Git - empathy.git/blob - goa-mc-plugin/mcp-account-manager-goa.c
mcp-account-manager-goa: fix shadow variable warnings
[empathy.git] / goa-mc-plugin / mcp-account-manager-goa.c
1 /*
2  * mcp-account-manager-goa.c
3  *
4  * McpAccountManagerGoa - a Mission Control plugin to expose GNOME Online
5  * Accounts with chat capabilities (e.g. Facebook) to Mission Control
6  *
7  * Copyright (C) 2010-2011 Collabora Ltd.
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21  *
22  * Authors:
23  *    Danielle Madeley <danielle.madeley@collabora.co.uk>
24  */
25
26 #include "config.h"
27
28 #include <glib/gi18n.h>
29
30 #include <telepathy-glib/util.h>
31
32 #define GOA_API_IS_SUBJECT_TO_CHANGE /* awesome! */
33 #include <goa/goa.h>
34
35 #include "mcp-account-manager-goa.h"
36
37 #define DEBUG g_debug
38 #define GET_PRIVATE(self) (((McpAccountManagerGoa *) self)->priv)
39 #define DECLARE_GASYNC_CALLBACK(name) \
40   static void name (GObject *, GAsyncResult *, gpointer);
41
42 #define PLUGIN_NAME "goa"
43 #define PLUGIN_PRIORITY (MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_KEYRING + 10)
44 #define PLUGIN_DESCRIPTION "Provide Telepathy Accounts from GOA"
45 #define PLUGIN_PROVIDER EMPATHY_GOA_PROVIDER
46
47 #define INITIAL_COMMENT "Parameters of GOA Telepathy accounts"
48
49 static void account_storage_iface_init (McpAccountStorageIface *iface);
50
51 G_DEFINE_TYPE_WITH_CODE (McpAccountManagerGoa,
52     mcp_account_manager_goa,
53     G_TYPE_OBJECT,
54     G_IMPLEMENT_INTERFACE (MCP_TYPE_ACCOUNT_STORAGE,
55       account_storage_iface_init))
56
57 struct _McpAccountManagerGoaPrivate
58 {
59   gboolean ready;
60
61   GoaClient *client;
62   GHashTable *accounts; /* alloc'ed string -> ref'ed GoaObject */
63
64   GKeyFile *store;
65   gchar *filename;
66 };
67
68
69 static void
70 mcp_account_manager_goa_dispose (GObject *self)
71 {
72   McpAccountManagerGoaPrivate *priv = GET_PRIVATE (self);
73
74   tp_clear_object (&priv->client);
75
76   G_OBJECT_CLASS (mcp_account_manager_goa_parent_class)->dispose (self);
77 }
78
79
80 static void
81 mcp_account_manager_goa_finalize (GObject *self)
82 {
83   McpAccountManagerGoaPrivate *priv = GET_PRIVATE (self);
84
85   g_hash_table_unref (priv->accounts);
86   g_key_file_free (priv->store);
87   g_free (priv->filename);
88
89   G_OBJECT_CLASS (mcp_account_manager_goa_parent_class)->finalize (self);
90 }
91
92
93 static void
94 mcp_account_manager_goa_class_init (McpAccountManagerGoaClass *klass)
95 {
96   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
97
98   gobject_class->dispose = mcp_account_manager_goa_dispose;
99   gobject_class->finalize = mcp_account_manager_goa_finalize;
100
101   g_type_class_add_private (gobject_class,
102       sizeof (McpAccountManagerGoaPrivate));
103 }
104
105 static GHashTable *
106 get_tp_parameters (GoaAccount *account)
107 {
108   GHashTable *params = g_hash_table_new_full (g_str_hash, g_str_equal,
109       NULL, g_free);
110   const char *type = goa_account_get_provider_type (account);
111
112 #define PARAM(key, value) g_hash_table_insert (params, key, g_strdup (value));
113
114   if (!tp_strdiff (type, "google"))
115     {
116       PARAM ("manager", "gabble");
117       PARAM ("protocol", "jabber");
118       PARAM ("Icon", "im-google-talk");
119       PARAM ("Service", "google-talk");
120
121       PARAM ("param-account", goa_account_get_identity (account));
122       PARAM ("param-server", "talk.google.com");
123       PARAM ("param-fallback-servers",
124           "talkx.l.google.com;"
125           "talkx.l.google.com:443,oldssl;"
126           "talkx.l.google.com:80");
127       PARAM ("param-extra-certificate-identities", "talk.google.com");
128       PARAM ("param-require-encryption", "true");
129     }
130   else if (!tp_strdiff (type, "facebook"))
131     {
132       PARAM ("manager", "gabble");
133       PARAM ("protocol", "jabber");
134       PARAM ("Icon", "im-facebook");
135       PARAM ("Service", "facebook");
136
137       PARAM ("param-account", "chat.facebook.com");
138       PARAM ("param-server", "chat.facebook.com");
139       PARAM ("param-require-encryption", "true");
140       PARAM ("param-fallback-servers",
141           "chat.facebook.com:443");
142     }
143   else if (!tp_strdiff (type, "windows_live"))
144     {
145       PARAM ("manager", "gabble");
146       PARAM ("protocol", "jabber");
147       PARAM ("Icon", "im-msn");
148       PARAM ("Service", "windows-live");
149
150       PARAM ("param-account", "messenger.live.com");
151       PARAM ("param-require-encryption", "true");
152     }
153   else
154     {
155       DEBUG ("Unknown account type %s", type);
156       g_hash_table_unref (params);
157       return NULL;
158     }
159
160   /* generic properties */
161   PARAM ("DisplayName", goa_account_get_presentation_identity (account));
162
163 #undef PARAM
164
165   return params;
166 }
167
168
169 static char *
170 get_tp_account_name (GoaAccount *account)
171 {
172   GHashTable *params = get_tp_parameters (account);
173   const char *type = goa_account_get_provider_type (account);
174   const char *id = goa_account_get_id (account);
175   char *name;
176
177   if (params == NULL)
178     return NULL;
179
180   name = g_strdup_printf ("%s/%s/goa_%s_%s",
181       (char *) g_hash_table_lookup (params, "manager"),
182       (char *) g_hash_table_lookup (params, "protocol"),
183       type, id);
184
185   g_hash_table_unref (params);
186
187   return name;
188 }
189
190 static void
191 object_chat_changed_cb (GoaObject *object,
192     GParamSpec *spec,
193     McpAccountManagerGoa *self)
194 {
195   GoaAccount *account = goa_object_peek_account (object);
196   char *name = get_tp_account_name (account);
197   gboolean enabled;
198
199   enabled = (goa_object_peek_chat (object) != NULL);
200
201   DEBUG ("%s %s", name, enabled ? "enabled" : "disabled");
202
203   if (self->priv->ready)
204     g_signal_emit_by_name (self, "toggled", name, enabled);
205 }
206
207 static void
208 _new_account (McpAccountManagerGoa *self,
209     GoaObject *object)
210 {
211   GoaAccount *account = goa_object_peek_account (object);
212   char *account_name = get_tp_account_name (account);
213
214   if (account_name == NULL)
215     return;
216
217   /* @account_name now is owned by the hash table */
218   g_hash_table_insert (self->priv->accounts, account_name,
219       g_object_ref (object));
220
221   if (self->priv->ready)
222     g_signal_emit_by_name (self, "created", account_name);
223
224   tp_g_signal_connect_object (object, "notify::chat",
225       G_CALLBACK (object_chat_changed_cb), self, 0);
226 }
227
228
229 DECLARE_GASYNC_CALLBACK (_goa_client_new_cb);
230
231 static void
232 load_store (McpAccountManagerGoa *self)
233 {
234   GError *error = NULL;
235
236   if (!g_key_file_load_from_file (self->priv->store, self->priv->filename,
237         G_KEY_FILE_KEEP_COMMENTS, &error))
238     {
239       gchar *dir;
240
241       DEBUG ("Failed to load keyfile, creating a new one: %s", error->message);
242
243       dir = g_path_get_dirname (self->priv->filename);
244
245       g_mkdir_with_parents (dir, 0700);
246       g_free (dir);
247
248       g_key_file_set_comment (self->priv->store, NULL, NULL, INITIAL_COMMENT,
249           NULL);
250
251       g_error_free (error);
252     }
253 }
254
255 static void
256 mcp_account_manager_goa_init (McpAccountManagerGoa *self)
257 {
258   DEBUG ("GOA MC plugin initialised");
259
260   self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
261       MCP_TYPE_ACCOUNT_MANAGER_GOA, McpAccountManagerGoaPrivate);
262
263   self->priv->accounts = g_hash_table_new_full (g_str_hash, g_str_equal,
264       g_free, g_object_unref);
265
266   goa_client_new (NULL, _goa_client_new_cb, self);
267
268   /* key file store */
269   self->priv->store = g_key_file_new ();
270   self->priv->filename = g_build_filename (g_get_user_data_dir (), "telepathy",
271       "mission-control", "accounts-goa.cfg", NULL);
272
273   load_store (self);
274 }
275
276
277 static void
278 _account_added_cb (GoaClient *client,
279     GoaObject *object,
280     McpAccountManagerGoa *self)
281 {
282   _new_account (self, object);
283 }
284
285
286 static void
287 _account_removed_cb (GoaClient *client,
288     GoaObject *object,
289     McpAccountManagerGoa *self)
290 {
291   GoaAccount *account = goa_object_peek_account (object);
292   char *name = get_tp_account_name (account);
293
294   if (self->priv->ready)
295     g_signal_emit_by_name (self, "deleted", name);
296
297   g_hash_table_remove (self->priv->accounts, name);
298
299   g_free (name);
300 }
301
302 static void
303 _goa_client_new_cb (GObject *obj,
304     GAsyncResult *result,
305     gpointer user_data)
306 {
307   McpAccountManagerGoa *self = user_data;
308   GList *accounts, *ptr;
309   GError *error = NULL;
310
311   self->priv->client = goa_client_new_finish (result, &error);
312
313   if (error != NULL)
314     {
315       DEBUG ("Failed to connect to GOA");
316       return;
317     }
318
319   accounts = goa_client_get_accounts (self->priv->client);
320
321   for (ptr = accounts; ptr != NULL; ptr = ptr->next)
322     {
323       _new_account (self, ptr->data);
324     }
325
326   g_list_free_full (accounts, g_object_unref);
327
328   g_signal_connect (self->priv->client, "account-added",
329       G_CALLBACK (_account_added_cb), self);
330   g_signal_connect (self->priv->client, "account-removed",
331       G_CALLBACK (_account_removed_cb), self);
332 }
333
334
335 static GList *
336 mcp_account_manager_goa_list (const McpAccountStorage *self,
337     const McpAccountManager *am)
338 {
339   McpAccountManagerGoaPrivate *priv = GET_PRIVATE (self);
340   GList *accounts = NULL;
341   GHashTableIter iter;
342   gpointer key;
343
344   DEBUG (G_STRFUNC);
345
346   g_hash_table_iter_init (&iter, priv->accounts);
347   while (g_hash_table_iter_next (&iter, &key, NULL))
348     accounts = g_list_prepend (accounts, g_strdup (key));
349
350   return accounts;
351 }
352
353
354 static void
355 get_enabled (const McpAccountStorage *self,
356     const McpAccountManager *am,
357     const gchar *acc,
358     GoaObject *object)
359 {
360   mcp_account_manager_set_value (am, acc, "Enabled",
361       goa_object_peek_chat (object) != NULL ? "true" : "false");
362 }
363
364
365 static gboolean
366 mcp_account_manager_goa_get (const McpAccountStorage *self,
367     const McpAccountManager *am,
368     const gchar *acc,
369     const gchar *key)
370 {
371   McpAccountManagerGoaPrivate *priv = GET_PRIVATE (self);
372   GoaObject *object;
373   GoaAccount *account;
374
375   DEBUG ("%s: %s, %s", G_STRFUNC, acc, key);
376
377   object = g_hash_table_lookup (priv->accounts, acc);
378
379   if (object == NULL)
380     return FALSE;
381
382   account = goa_object_peek_account (object);
383
384   if (account == NULL)
385     return FALSE;
386
387   if (key == NULL)
388     {
389       /* load all keys */
390       GHashTable *params = get_tp_parameters (account);
391       GHashTableIter iter;
392       gpointer k, value;
393       GStrv keys;
394       guint i;
395       gssize nkeys = 0;
396
397       /* Properties from GOA */
398       g_hash_table_iter_init (&iter, params);
399       while (g_hash_table_iter_next (&iter, &k, &value))
400         mcp_account_manager_set_value (am, acc, k, value);
401
402       g_hash_table_unref (params);
403
404       /* Stored properties */
405       keys = g_key_file_get_keys (priv->store, acc, &nkeys, NULL);
406
407       for (i = 0; i < nkeys; i++)
408         {
409           gchar *v = g_key_file_get_value (priv->store, acc, keys[i], NULL);
410
411           if (v != NULL)
412             {
413               mcp_account_manager_set_value (am, acc, keys[i], v);
414               g_free (v);
415             }
416         }
417
418       g_strfreev (keys);
419
420       /* Enabled */
421       get_enabled (self, am, acc, object);
422     }
423   else if (!tp_strdiff (key, "Enabled"))
424     {
425       get_enabled (self, am, acc, object);
426     }
427   else
428     {
429       /* get a specific key */
430       GHashTable *params = get_tp_parameters (account);
431       gchar *value;
432
433       value = g_hash_table_lookup (params, key);
434
435       if (value == NULL)
436         value = g_key_file_get_value (priv->store, acc, key, NULL);
437       else
438         value = g_strdup (value);
439
440       mcp_account_manager_set_value (am, acc, key, value);
441
442       g_hash_table_unref (params);
443       g_free (value);
444     }
445
446   return TRUE;
447 }
448
449 static gboolean
450 account_is_in_goa (const McpAccountStorage *self,
451     const gchar *account)
452 {
453   McpAccountManagerGoaPrivate *priv = GET_PRIVATE (self);
454
455   return (g_hash_table_lookup (priv->accounts, acct) != NULL);
456 }
457
458 static gboolean
459 mcp_account_manager_goa_set (const McpAccountStorage *self,
460     const McpAccountManager *am,
461     const gchar *account,
462     const gchar *key,
463     const gchar *val)
464 {
465   McpAccountManagerGoaPrivate *priv = GET_PRIVATE (self);
466
467   if (!account_is_in_goa (self, account))
468     return FALSE;
469
470   /* No need to save Enabled, it's up to the GOA configuration if the account
471    * is configured or not. */
472   if (!tp_strdiff (key, "Enabled"))
473     return TRUE;
474
475   DEBUG ("%s: (%s, %s, %s)", G_STRFUNC, account, key, val);
476
477   if (val != NULL)
478     g_key_file_set_value (priv->store, account, key, val);
479   else
480     g_key_file_remove_key (priv->store, account, key, NULL);
481
482   /* Pretend we save everything so MC won't save this in accounts.cfg */
483   return TRUE;
484 }
485
486
487 static gboolean
488 mcp_account_manager_goa_delete (const McpAccountStorage *self,
489     const McpAccountManager *am,
490     const gchar *account,
491     const gchar *key)
492 {
493   McpAccountManagerGoaPrivate *priv = GET_PRIVATE (self);
494
495   if (!account_is_in_goa (self, account))
496     return FALSE;
497
498   DEBUG ("%s: (%s, %s)", G_STRFUNC, account, key);
499
500   if (key == NULL)
501     {
502       g_key_file_remove_group (priv->store, account, NULL);
503     }
504   else
505     {
506       g_key_file_remove_key (priv->store, account, key, NULL);
507     }
508
509   /* Pretend we deleted everything */
510   return TRUE;
511 }
512
513
514 static gboolean
515 mcp_account_manager_goa_commit (const McpAccountStorage *self,
516     const McpAccountManager *am)
517 {
518   McpAccountManagerGoaPrivate *priv = GET_PRIVATE (self);
519   gchar *data;
520   gsize len;
521   GError *error = NULL;
522
523   DEBUG ("Save config to %s", priv->filename);
524
525   data = g_key_file_to_data (priv->store, &len, &error);
526   if (data == NULL)
527     {
528       DEBUG ("Failed to get data from store: %s", error->message);
529
530       g_error_free (error);
531       return FALSE;
532     }
533
534   if (!g_file_set_contents (priv->filename, data, len, &error))
535     {
536       DEBUG ("Failed to write file: %s", error->message);
537
538       g_free (data);
539       g_error_free (error);
540       return FALSE;
541     }
542
543   g_free (data);
544
545   return TRUE;
546 }
547
548
549 static void
550 mcp_account_manager_goa_ready (const McpAccountStorage *self,
551     const McpAccountManager *am)
552 {
553   McpAccountManagerGoaPrivate *priv = GET_PRIVATE (self);
554
555   priv->ready = TRUE;
556 }
557
558
559 static guint
560 mcp_account_manager_goa_get_restrictions (const McpAccountStorage *self,
561     const gchar *account)
562 {
563   return TP_STORAGE_RESTRICTION_FLAG_CANNOT_SET_PARAMETERS |
564          TP_STORAGE_RESTRICTION_FLAG_CANNOT_SET_SERVICE |
565          TP_STORAGE_RESTRICTION_FLAG_CANNOT_SET_ENABLED;
566 }
567
568
569 static void
570 mcp_account_manager_goa_get_identifier (const McpAccountStorage *self,
571     const gchar *acc,
572     GValue *identifier)
573 {
574   McpAccountManagerGoaPrivate *priv = GET_PRIVATE (self);
575   GoaObject *object;
576   GoaAccount *account;
577
578   object = g_hash_table_lookup (priv->accounts, acc);
579   g_return_if_fail (object != NULL);
580
581   account = goa_object_peek_account (object);
582   g_return_if_fail (account != NULL);
583
584   g_value_init (identifier, G_TYPE_STRING);
585   g_value_set_string (identifier, goa_account_get_id (account));
586 }
587
588
589 static void
590 account_storage_iface_init (McpAccountStorageIface *iface)
591 {
592   mcp_account_storage_iface_set_name (iface, PLUGIN_NAME);
593   mcp_account_storage_iface_set_desc (iface, PLUGIN_DESCRIPTION);
594   mcp_account_storage_iface_set_priority (iface, PLUGIN_PRIORITY);
595   mcp_account_storage_iface_set_provider (iface, PLUGIN_PROVIDER);
596
597 #define IMPLEMENT(x) mcp_account_storage_iface_implement_##x(iface, \
598     mcp_account_manager_goa_##x)
599   IMPLEMENT (get);
600   IMPLEMENT (list);
601   IMPLEMENT (set);
602   IMPLEMENT (delete);
603   IMPLEMENT (commit);
604   IMPLEMENT (ready);
605   IMPLEMENT (get_restrictions);
606   IMPLEMENT (get_identifier);
607 #undef IMPLEMENT
608 }