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