/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* * Copyright © 2012 Igalia S.L. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "config.h" #include "ephy-web-extension.h" #include "ephy-web-dom-utils.h" #include #include static const char introspection_xml[] = "" " " " " " " " " " " " " ""; static void handle_method_call (GDBusConnection *connection, const char *sender, const char *object_path, const char *interface_name, const char *method_name, GVariant *parameters, GDBusMethodInvocation *invocation, gpointer user_data) { WebKitWebExtension *web_extension = WEBKIT_WEB_EXTENSION (user_data); WebKitWebPage *web_page; guint64 page_id; if (g_strcmp0 (interface_name, EPHY_WEB_EXTENSION_INTERFACE) != 0) return; g_variant_get(parameters, "(t)", &page_id); web_page = webkit_web_extension_get_page (web_extension, page_id); if (!web_page) { g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "Invalid page ID: %"G_GUINT64_FORMAT, page_id); return; } if (g_strcmp0 (method_name, "HasModifiedForms") == 0) { WebKitDOMDocument *document = webkit_web_page_get_dom_document (web_page); gboolean has_modifed_forms = ephy_web_dom_has_modified_forms (document); g_dbus_method_invocation_return_value (invocation, g_variant_new ("(b)", has_modifed_forms)); } } static const GDBusInterfaceVTable interface_vtable = { handle_method_call, NULL, NULL }; static void bus_acquired_cb (GDBusConnection *connection, const char *name, gpointer user_data) { guint registration_id; GError *error = NULL; static GDBusNodeInfo *introspection_data = NULL; if (!introspection_data) introspection_data = g_dbus_node_info_new_for_xml (introspection_xml, NULL); registration_id = g_dbus_connection_register_object (connection, EPHY_WEB_EXTENSION_OBJECT_PATH, introspection_data->interfaces[0], &interface_vtable, g_object_ref (user_data), (GDestroyNotify)g_object_unref, &error); if (!registration_id) { g_warning ("Failed to register object: %s\n", error->message); g_error_free (error); } } G_MODULE_EXPORT void webkit_web_extension_initialize (WebKitWebExtension *extension) { char *service_name; service_name = g_strdup_printf ("%s-%s", EPHY_WEB_EXTENSION_SERVICE_NAME, g_getenv ("EPHY_WEB_EXTENSION_ID")); g_bus_own_name (G_BUS_TYPE_SESSION, service_name, G_BUS_NAME_OWNER_FLAGS_NONE, bus_acquired_cb, NULL, NULL, g_object_ref (extension), (GDestroyNotify)g_object_unref); g_free (service_name); }