]> git.0d.be Git - empathy.git/blob - goa-mc-plugin/mcp-account-manager-goa.c
Document hashtable allocation/reffing
[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 <glib/gi18n.h>
27
28 #include <telepathy-glib/util.h>
29
30 #define GOA_API_IS_SUBJECT_TO_CHANGE /* awesome! */
31 #include <goa/goa.h>
32
33 #include "mcp-account-manager-goa.h"
34
35 #define DEBUG g_debug
36 #define GET_PRIVATE(self) (((McpAccountManagerGoa *) self)->priv)
37 #define DECLARE_GASYNC_CALLBACK(name) \
38   static void name (GObject *, GAsyncResult *, gpointer);
39
40 #define PLUGIN_NAME "goa"
41 #define PLUGIN_PRIORITY (MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_KEYRING + 10)
42 #define PLUGIN_DESCRIPTION "Provide Telepathy Accounts from GOA"
43 #define PLUGIN_PROVIDER "org.gnome.OnlineAccounts"
44
45 static void account_storage_iface_init (McpAccountStorageIface *iface);
46
47 G_DEFINE_TYPE_WITH_CODE (McpAccountManagerGoa,
48     mcp_account_manager_goa,
49     G_TYPE_OBJECT,
50     G_IMPLEMENT_INTERFACE (MCP_TYPE_ACCOUNT_STORAGE,
51       account_storage_iface_init))
52
53 struct _McpAccountManagerGoaPrivate
54 {
55   gboolean ready;
56
57   GoaClient *client;
58   GHashTable *accounts; /* alloc'ed string -> ref'ed GoaAccount */
59 };
60
61
62 static void
63 mcp_account_manager_goa_dispose (GObject *self)
64 {
65   McpAccountManagerGoaPrivate *priv = GET_PRIVATE (self);
66
67   tp_clear_object (&priv->client);
68
69   G_OBJECT_CLASS (mcp_account_manager_goa_parent_class)->dispose (self);
70 }
71
72
73 static void
74 mcp_account_manager_goa_finalize (GObject *self)
75 {
76   McpAccountManagerGoaPrivate *priv = GET_PRIVATE (self);
77
78   g_hash_table_destroy (priv->accounts);
79
80   G_OBJECT_CLASS (mcp_account_manager_goa_parent_class)->finalize (self);
81 }
82
83
84 static void
85 mcp_account_manager_goa_class_init (McpAccountManagerGoaClass *klass)
86 {
87   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
88
89   gobject_class->dispose = mcp_account_manager_goa_dispose;
90   gobject_class->finalize = mcp_account_manager_goa_finalize;
91
92   g_type_class_add_private (gobject_class,
93       sizeof (McpAccountManagerGoaPrivate));
94 }
95
96
97 // static void
98 // _enable_chat_toggled (GConfClient *client,
99 //     guint cnxn_id,
100 //     GConfEntry *entry,
101 //     gpointer user_data)
102 // {
103 //   McpAccountStorage *self = MCP_ACCOUNT_STORAGE (user_data);
104 //   McpAccountManagerGoaPrivate *priv = GET_PRIVATE (self);
105 //   gboolean enabled = gconf_value_get_bool (gconf_entry_get_value (entry));
106 // 
107 //   DEBUG ("%s: %s", G_STRFUNC, enabled ? "enabled" : "disabled");
108 // 
109 //   if (priv->ready && priv->facebook_available)
110 //     {
111 //       DEBUG ("Emitting toggled signal");
112 // 
113 //       g_signal_emit_by_name (self, "toggled", FACEBOOK_ACCOUNT_NAME, enabled);
114 //     }
115 // }
116
117
118 static GHashTable *
119 get_tp_parameters (GoaAccount *account)
120 {
121   GHashTable *params = g_hash_table_new_full (g_str_hash, g_str_equal,
122       NULL, g_free);
123   const char *type = goa_account_get_provider_type (account);
124
125 #define PARAM(key, value) g_hash_table_insert (params, key, g_strdup (value));
126
127  // { "param-account", "chat.facebook.com" },
128  // { "param-server", "chat.facebook.com" },
129
130   if (!tp_strdiff (type, "google"))
131     {
132       PARAM ("manager", "gabble");
133       PARAM ("protocol", "jabber");
134       PARAM ("Icon", "im-google-talk");
135       PARAM ("Service", "google-talk");
136
137       PARAM ("param-account", goa_account_get_identity (account));
138       PARAM ("param-server", "talk.google.com");
139     }
140   else
141     {
142       /* unknown account type */
143       g_hash_table_destroy (params);
144       return NULL;
145     }
146
147   /* generic properties */
148   PARAM ("DisplayName", goa_account_get_presentation_identity (account));
149   PARAM ("ConnectAutomatically", "true");
150
151 #undef PARAM
152
153   return params;
154 }
155
156
157 static char *
158 get_tp_account_name (GoaAccount *account)
159 {
160   GHashTable *params = get_tp_parameters (account);
161   const char *type = goa_account_get_provider_type (account);
162   const char *id = goa_account_get_id (account);
163   char *name;
164
165   if (params == NULL)
166     return NULL;
167
168   name = g_strdup_printf ("%s/%s/goa_%s_%s",
169       (char *) g_hash_table_lookup (params, "manager"),
170       (char *) g_hash_table_lookup (params, "protocol"),
171       type, id);
172
173   g_hash_table_destroy (params);
174
175   return name;
176 }
177
178
179 static void
180 _new_account (McpAccountManagerGoa *self,
181     GoaAccount *account)
182 {
183   char *account_name = get_tp_account_name (account);
184
185   if (account_name == NULL)
186     return;
187
188   /* @account_name now is owned by the hash table */
189   g_hash_table_insert (self->priv->accounts, account_name,
190       g_object_ref (account));
191
192   if (self->priv->ready)
193     g_signal_emit_by_name (self, "created", account_name);
194 }
195
196
197 DECLARE_GASYNC_CALLBACK (_goa_client_new_cb);
198
199 static void
200 mcp_account_manager_goa_init (McpAccountManagerGoa *self)
201 {
202   DEBUG ("GOA MC plugin initialised");
203
204   self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
205       MCP_TYPE_ACCOUNT_MANAGER_GOA, McpAccountManagerGoaPrivate);
206
207   self->priv->accounts = g_hash_table_new_full (g_str_hash, g_str_equal,
208       g_free, g_object_unref);
209
210   goa_client_new (NULL, _goa_client_new_cb, self);
211 }
212
213
214 static void
215 _account_added_cb (GoaClient *client,
216     GoaObject *object,
217     McpAccountManagerGoa *self)
218 {
219       GoaAccount *account = goa_object_peek_account (object);
220
221       _new_account (self, account);
222 }
223
224
225 static void
226 _account_removed_cb (GoaClient *client,
227     GoaObject *object,
228     McpAccountManagerGoa *self)
229 {
230   GoaAccount *account = goa_object_peek_account (object);
231   char *name = get_tp_account_name (account);
232
233   if (self->priv->ready)
234     g_signal_emit_by_name (self, "deleted", name);
235
236   g_hash_table_remove (self->priv->accounts, name);
237
238   g_free (name);
239 }
240
241
242 static void
243 _goa_client_new_cb (GObject *obj,
244     GAsyncResult *result,
245     gpointer user_data)
246 {
247   McpAccountManagerGoa *self = user_data;
248   GoaClient *client;
249   GList *accounts, *ptr;
250   GError *error = NULL;
251
252   self->priv->client = goa_client_new_finish (result, &error);
253
254   if (error != NULL)
255     {
256       DEBUG ("Failed to connect to GOA");
257       return;
258     }
259
260   accounts = goa_client_get_accounts (self->priv->client);
261
262   for (ptr = accounts; ptr != NULL; ptr = ptr->next)
263     {
264       GoaAccount *account = goa_object_peek_account (ptr->data);
265
266       _new_account (self, account);
267     }
268
269   g_list_free_full (accounts, g_object_unref);
270
271   g_signal_connect (self->priv->client, "account-added",
272       G_CALLBACK (_account_added_cb), self);
273   g_signal_connect (self->priv->client, "account-removed",
274       G_CALLBACK (_account_removed_cb), self);
275   /* FIXME: do we need to support account-changed ? */
276 }
277
278
279 static GList *
280 mcp_account_manager_goa_list (const McpAccountStorage *self,
281     const McpAccountManager *am)
282 {
283   McpAccountManagerGoaPrivate *priv = GET_PRIVATE (self);
284   GList *accounts = NULL;
285   GHashTableIter iter;
286   gpointer key;
287
288   DEBUG (G_STRFUNC);
289
290   g_hash_table_iter_init (&iter, priv->accounts);
291   while (g_hash_table_iter_next (&iter, &key, NULL))
292     accounts = g_list_prepend (accounts, g_strdup (key));
293
294   return accounts;
295 }
296
297
298 static void
299 get_enabled (const McpAccountStorage *self,
300     const McpAccountManager *am,
301     const gchar *acct)
302 {
303   // McpAccountManagerGoaPrivate *priv = GET_PRIVATE (self);
304   // GError *error = NULL;
305   // gboolean enabled;
306   // const char *value;
307
308   // enabled = gconf_client_get_bool (priv->gconf,
309   //     BISHO_FB_GCONF_ENABLE_CHAT_KEY, &error);
310   // if (error != NULL)
311   //   {
312   //     g_warning ("Unabled to get value for %s/Enabled from GConf: %s",
313   //         acct, error->message);
314   //     g_clear_error (&error);
315   //   }
316
317   // value = enabled ? "true" : "false";
318
319   // DEBUG ("Facebook Chat enabled = %s", value);
320
321   mcp_account_manager_set_value (am, acct, "Enabled", "true");
322 }
323
324
325 static gboolean
326 mcp_account_manager_goa_get (const McpAccountStorage *self,
327     const McpAccountManager *am,
328     const gchar *acct,
329     const gchar *key)
330 {
331   McpAccountManagerGoaPrivate *priv = GET_PRIVATE (self);
332   GoaAccount *account;
333
334   DEBUG ("%s: %s, %s", G_STRFUNC, acct, key);
335
336   account = g_hash_table_lookup (priv->accounts, acct);
337
338   if (account == NULL)
339     return FALSE;
340
341   if (key == NULL)
342     {
343       /* load all keys */
344       GHashTable *params = get_tp_parameters (account);
345       GHashTableIter iter;
346       gpointer key, value;
347
348       g_hash_table_iter_init (&iter, params);
349       while (g_hash_table_iter_next (&iter, &key, &value))
350         mcp_account_manager_set_value (am, acct, key, value);
351
352       g_hash_table_destroy (params);
353
354       get_enabled (self, am, acct);
355     }
356   else if (!tp_strdiff (key, "Enabled"))
357     {
358       get_enabled (self, am, acct);
359     }
360   else
361     {
362       /* get a specific key */
363       GHashTable *params = get_tp_parameters (account);
364
365       mcp_account_manager_set_value (am, acct, key,
366           g_hash_table_lookup (params, key));
367
368       g_hash_table_destroy (params);
369     }
370
371   return TRUE;
372 }
373
374
375 static gboolean
376 mcp_account_manager_goa_set (const McpAccountStorage *self,
377     const McpAccountManager *am,
378     const gchar *acct,
379     const gchar *key,
380     const gchar *val)
381 {
382   GError *error = NULL;
383
384   DEBUG ("%s: (%s, %s, %s)", G_STRFUNC, acct, key, val);
385
386   // if (!tp_strdiff (acct, FACEBOOK_ACCOUNT_NAME))
387   //   {
388   //     if (!tp_strdiff (key, "Enabled"))
389   //       {
390   //         gboolean enabled = !tp_strdiff (val, "true");
391
392   //         DEBUG ("set Enabled to %s", enabled ? "enabled" : "disabled");
393
394   //         gconf_client_set_bool (priv->gconf, BISHO_FB_GCONF_ENABLE_CHAT_KEY,
395   //             enabled, &error);
396   //         if (error != NULL)
397   //           {
398   //             g_warning ("Unable to save %s/Enable state in GConf: %s",
399   //                 acct, error->message);
400   //             g_clear_error (&error);
401   //           }
402
403   //         return TRUE;
404   //       }
405   //     else
406   //       /* pretend we saved everything else */
407   //       return TRUE;
408   //   }
409   // else
410   //   {
411   //     return FALSE;
412   //   }
413 }
414
415
416 static gboolean
417 mcp_account_manager_goa_delete (const McpAccountStorage *self,
418     const McpAccountManager *am,
419     const gchar *acct,
420     const gchar *key)
421 {
422   DEBUG ("%s: (%s, %s)", G_STRFUNC, acct, key);
423
424 //  if (!tp_strdiff (acct, FACEBOOK_ACCOUNT_NAME))
425 //    {
426 //      if (!tp_strdiff (key, "Enabled"))
427 //        return TRUE;
428 //      else
429 //        /* pretend we deleted everything else */
430 //        return TRUE;
431 //    }
432 //  else
433 //    {
434 //      return FALSE;
435 //    }
436 }
437
438
439 static gboolean
440 mcp_account_manager_goa_commit (const McpAccountStorage *self,
441     const McpAccountManager *am)
442 {
443   DEBUG ("%s", G_STRFUNC);
444
445   return TRUE;
446 }
447
448
449 static void
450 mcp_account_manager_goa_ready (const McpAccountStorage *self,
451     const McpAccountManager *am)
452 {
453   McpAccountManagerGoaPrivate *priv = GET_PRIVATE (self);
454
455   priv->ready = TRUE;
456 }
457
458
459 static guint
460 mcp_account_manager_goa_get_restrictions (const McpAccountStorage *self,
461     const gchar *account)
462 {
463   return TP_STORAGE_RESTRICTION_FLAG_CANNOT_SET_PARAMETERS |
464          TP_STORAGE_RESTRICTION_FLAG_CANNOT_SET_SERVICE;
465 }
466
467
468 static void
469 mcp_account_manager_goa_get_identifier (const McpAccountStorage *self,
470     const gchar *acct,
471     GValue *identifier)
472 {
473   McpAccountManagerGoaPrivate *priv = GET_PRIVATE (self);
474   GoaAccount *account;
475
476   account = g_hash_table_lookup (priv->accounts, acct);
477
478   g_return_if_fail (account != NULL);
479
480   g_value_init (identifier, G_TYPE_STRING);
481   g_value_set_string (identifier, goa_account_get_id (account));
482 }
483
484
485 static void
486 account_storage_iface_init (McpAccountStorageIface *iface)
487 {
488   mcp_account_storage_iface_set_name (iface, PLUGIN_NAME);
489   mcp_account_storage_iface_set_desc (iface, PLUGIN_DESCRIPTION);
490   mcp_account_storage_iface_set_priority (iface, PLUGIN_PRIORITY);
491   mcp_account_storage_iface_set_provider (iface, PLUGIN_PROVIDER);
492
493 #define IMPLEMENT(x) mcp_account_storage_iface_implement_##x(iface, \
494     mcp_account_manager_goa_##x)
495   IMPLEMENT (get);
496   IMPLEMENT (list);
497   IMPLEMENT (set);
498   IMPLEMENT (delete);
499   IMPLEMENT (commit);
500   IMPLEMENT (ready);
501   IMPLEMENT (get_restrictions);
502   IMPLEMENT (get_identifier);
503 #undef IMPLEMENT
504 }