aboutsummaryrefslogtreecommitdiffstats
path: root/ubuntu-online-accounts
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.co.uk>2012-07-16 20:51:51 +0800
committerXavier Claessens <xavier.claessens@collabora.co.uk>2012-07-23 20:34:17 +0800
commitfb37d92e195871b3e5a485d513bf6a7618a8eb60 (patch)
treed955e24ac4991fdd66daf03aa3c470532bad8749 /ubuntu-online-accounts
parent8671084e03f71a709b12ba6e813ae77f62cc0732 (diff)
downloadgsoc2013-empathy-fb37d92e195871b3e5a485d513bf6a7618a8eb60.tar
gsoc2013-empathy-fb37d92e195871b3e5a485d513bf6a7618a8eb60.tar.gz
gsoc2013-empathy-fb37d92e195871b3e5a485d513bf6a7618a8eb60.tar.bz2
gsoc2013-empathy-fb37d92e195871b3e5a485d513bf6a7618a8eb60.tar.lz
gsoc2013-empathy-fb37d92e195871b3e5a485d513bf6a7618a8eb60.tar.xz
gsoc2013-empathy-fb37d92e195871b3e5a485d513bf6a7618a8eb60.tar.zst
gsoc2013-empathy-fb37d92e195871b3e5a485d513bf6a7618a8eb60.zip
Add skeleton of an MC plugin to import Ubuntu Online Accounts
Diffstat (limited to 'ubuntu-online-accounts')
-rw-r--r--ubuntu-online-accounts/Makefile.am2
-rw-r--r--ubuntu-online-accounts/mc-plugin/Makefile.am19
-rw-r--r--ubuntu-online-accounts/mc-plugin/mcp-account-manager-uoa.c160
-rw-r--r--ubuntu-online-accounts/mc-plugin/mcp-account-manager-uoa.h68
-rw-r--r--ubuntu-online-accounts/mc-plugin/mission-control-plugin.c47
5 files changed, 296 insertions, 0 deletions
diff --git a/ubuntu-online-accounts/Makefile.am b/ubuntu-online-accounts/Makefile.am
new file mode 100644
index 000000000..a3ab1b8f8
--- /dev/null
+++ b/ubuntu-online-accounts/Makefile.am
@@ -0,0 +1,2 @@
+SUBDIRS = mc-plugin
+
diff --git a/ubuntu-online-accounts/mc-plugin/Makefile.am b/ubuntu-online-accounts/mc-plugin/Makefile.am
new file mode 100644
index 000000000..2123e526d
--- /dev/null
+++ b/ubuntu-online-accounts/mc-plugin/Makefile.am
@@ -0,0 +1,19 @@
+AM_CPPFLAGS = \
+ $(UOA_CFLAGS) \
+ $(ERROR_CFLAGS)
+
+pluginsdir = $(MISSION_CONTROL_PLUGINS_DIR)
+plugins_LTLIBRARIES = \
+ mcp-account-manager-uoa.la
+
+mcp_account_manager_uoa_la_SOURCES = \
+ mission-control-plugin.c \
+ mcp-account-manager-uoa.c mcp-account-manager-uoa.h \
+ $(NULL)
+
+mcp_account_manager_uoa_la_LIBADD = \
+ $(UOA_LIBS)
+
+mcp_account_manager_uoa_la_LDFLAGS = \
+ -module \
+ -avoid-version
diff --git a/ubuntu-online-accounts/mc-plugin/mcp-account-manager-uoa.c b/ubuntu-online-accounts/mc-plugin/mcp-account-manager-uoa.c
new file mode 100644
index 000000000..e38067718
--- /dev/null
+++ b/ubuntu-online-accounts/mc-plugin/mcp-account-manager-uoa.c
@@ -0,0 +1,160 @@
+/*
+ * Copyright © 2012 Collabora Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include "config.h"
+#include "mcp-account-manager-uoa.h"
+
+#include <telepathy-glib/telepathy-glib.h>
+
+#include <string.h>
+#include <ctype.h>
+
+#define PLUGIN_NAME "uoa"
+#define PLUGIN_PRIORITY (MCP_ACCOUNT_STORAGE_PLUGIN_PRIO_KEYRING + 10)
+#define PLUGIN_DESCRIPTION "Provide Telepathy Accounts from UOA via libaccounts-glib"
+#define PLUGIN_PROVIDER EMPATHY_UOA_PROVIDER
+
+#define DEBUG g_debug
+
+static void account_storage_iface_init (McpAccountStorageIface *iface);
+
+G_DEFINE_TYPE_WITH_CODE (McpAccountManagerUoa, mcp_account_manager_uoa,
+ G_TYPE_OBJECT,
+ G_IMPLEMENT_INTERFACE (MCP_TYPE_ACCOUNT_STORAGE,
+ account_storage_iface_init));
+
+struct _McpAccountManagerUoaPrivate
+{
+};
+
+static void
+mcp_account_manager_uoa_dispose (GObject *object)
+{
+ G_OBJECT_CLASS (mcp_account_manager_uoa_parent_class)->dispose (object);
+}
+
+static void
+mcp_account_manager_uoa_init (McpAccountManagerUoa *self)
+{
+ DEBUG ("UOA MC plugin initialised");
+
+ self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self,
+ MCP_TYPE_ACCOUNT_MANAGER_UOA, McpAccountManagerUoaPrivate);
+}
+
+static void
+mcp_account_manager_uoa_class_init (McpAccountManagerUoaClass *klass)
+{
+ GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
+
+ gobject_class->dispose = mcp_account_manager_uoa_dispose;
+
+ g_type_class_add_private (gobject_class,
+ sizeof (McpAccountManagerUoaPrivate));
+}
+
+static GList *
+account_manager_uoa_list (const McpAccountStorage *storage,
+ const McpAccountManager *am)
+{
+ return NULL;
+}
+
+static gboolean
+account_manager_uoa_get (const McpAccountStorage *storage,
+ const McpAccountManager *am,
+ const gchar *acc,
+ const gchar *key)
+{
+ return FALSE;
+}
+
+static gboolean
+account_manager_uoa_set (const McpAccountStorage *storage,
+ const McpAccountManager *am,
+ const gchar *acc,
+ const gchar *key,
+ const gchar *val)
+{
+ return FALSE;
+}
+
+static gboolean
+account_manager_uoa_delete (const McpAccountStorage *storage,
+ const McpAccountManager *am,
+ const gchar *acc,
+ const gchar *key)
+{
+ return FALSE;
+}
+
+static gboolean
+account_manager_uoa_commit (const McpAccountStorage *storage,
+ const McpAccountManager *am)
+{
+ return FALSE;
+}
+
+static void
+account_manager_uoa_ready (const McpAccountStorage *storage,
+ const McpAccountManager *am)
+{
+}
+
+static void
+account_manager_uoa_get_identifier (const McpAccountStorage *storage,
+ const gchar *acc,
+ GValue *identifier)
+{
+}
+
+static gchar *
+account_manager_uoa_create_account (const McpAccountStorage *storage,
+ const gchar *cm_name,
+ const gchar *protocol_name,
+ GHashTable *params)
+{
+ return NULL;
+}
+
+static void
+account_storage_iface_init (McpAccountStorageIface *iface)
+{
+ mcp_account_storage_iface_set_name (iface, PLUGIN_NAME);
+ mcp_account_storage_iface_set_desc (iface, PLUGIN_DESCRIPTION);
+ mcp_account_storage_iface_set_priority (iface, PLUGIN_PRIORITY);
+ mcp_account_storage_iface_set_provider (iface, PLUGIN_PROVIDER);
+
+#define IMPLEMENT(x) mcp_account_storage_iface_implement_##x(iface, \
+ account_manager_uoa_##x)
+ IMPLEMENT (get);
+ IMPLEMENT (list);
+ IMPLEMENT (set);
+ IMPLEMENT (delete);
+ IMPLEMENT (commit);
+ IMPLEMENT (ready);
+ IMPLEMENT (get_identifier);
+ IMPLEMENT (create_account);
+#undef IMPLEMENT
+}
+
+McpAccountManagerUoa *
+mcp_account_manager_uoa_new (void)
+{
+ return g_object_new (MCP_TYPE_ACCOUNT_MANAGER_UOA, NULL);
+}
diff --git a/ubuntu-online-accounts/mc-plugin/mcp-account-manager-uoa.h b/ubuntu-online-accounts/mc-plugin/mcp-account-manager-uoa.h
new file mode 100644
index 000000000..291aeb888
--- /dev/null
+++ b/ubuntu-online-accounts/mc-plugin/mcp-account-manager-uoa.h
@@ -0,0 +1,68 @@
+/*
+ * Copyright © 2012 Collabora Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include <mission-control-plugins/mission-control-plugins.h>
+
+#ifndef __MCP_ACCOUNT_MANAGER_UOA_H__
+#define __MCP_ACCOUNT_MANAGER_UOA_H__
+
+G_BEGIN_DECLS
+
+#define MCP_TYPE_ACCOUNT_MANAGER_UOA \
+ (mcp_account_manager_uoa_get_type ())
+
+#define MCP_ACCOUNT_MANAGER_UOA(o) \
+ (G_TYPE_CHECK_INSTANCE_CAST ((o), MCP_TYPE_ACCOUNT_MANAGER_UOA, \
+ McpAccountManagerUoa))
+
+#define MCP_ACCOUNT_MANAGER_UOA_CLASS(k) \
+ (G_TYPE_CHECK_CLASS_CAST((k), MCP_TYPE_ACCOUNT_MANAGER_UOA, \
+ McpAccountManagerUoaClass))
+
+#define MCP_IS_ACCOUNT_MANAGER_UOA(o) \
+ (G_TYPE_CHECK_INSTANCE_TYPE ((o), MCP_TYPE_ACCOUNT_MANAGER_UOA))
+
+#define MCP_IS_ACCOUNT_MANAGER_UOA_CLASS(k) \
+ (G_TYPE_CHECK_CLASS_TYPE ((k), MCP_TYPE_ACCOUNT_MANAGER_UOA))
+
+#define MCP_ACCOUNT_MANAGER_UOA_GET_CLASS(o) \
+ (G_TYPE_INSTANCE_GET_CLASS ((o), MCP_TYPE_ACCOUNT_MANAGER_UOA, \
+ McpAccountManagerUoaClass))
+
+typedef struct _McpAccountManagerUoaPrivate McpAccountManagerUoaPrivate;
+
+typedef struct {
+ GObject parent;
+
+ McpAccountManagerUoaPrivate *priv;
+} _McpAccountManagerUoa;
+
+typedef struct {
+ GObjectClass parent_class;
+} _McpAccountManagerUoaClass;
+
+typedef _McpAccountManagerUoa McpAccountManagerUoa;
+typedef _McpAccountManagerUoaClass McpAccountManagerUoaClass;
+
+GType mcp_account_manager_uoa_get_type (void) G_GNUC_CONST;
+
+McpAccountManagerUoa *mcp_account_manager_uoa_new (void);
+
+G_END_DECLS
+
+#endif
diff --git a/ubuntu-online-accounts/mc-plugin/mission-control-plugin.c b/ubuntu-online-accounts/mc-plugin/mission-control-plugin.c
new file mode 100644
index 000000000..d7a33fd43
--- /dev/null
+++ b/ubuntu-online-accounts/mc-plugin/mission-control-plugin.c
@@ -0,0 +1,47 @@
+/*
+ * mission-control-plugin.c
+ *
+ * A Mission Control plugin to expose Ubuntu Online Accounts with chat
+ * capabilities (e.g. Facebook) to Mission Control
+ *
+ * Copyright (C) 2012 Collabora Ltd.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, see <http://www.gnu.org/licenses/>.
+ *
+ * Authors: Xavier Claessens <xavier.claessens@collabora.co.uk>
+ */
+
+#include <mission-control-plugins/mission-control-plugins.h>
+
+#include "mcp-account-manager-uoa.h"
+
+GObject *
+mcp_plugin_ref_nth_object (guint n)
+{
+ static void *plugin_0 = NULL;
+
+ switch (n)
+ {
+ case 0:
+ if (plugin_0 == NULL)
+ plugin_0 = g_object_new (MCP_TYPE_ACCOUNT_MANAGER_UOA, NULL);
+ else
+ g_object_ref (plugin_0);
+
+ return plugin_0;
+
+ default:
+ return NULL;
+ }
+}