aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-permission-manager.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2003-11-22 07:03:32 +0800
committerChristian Persch <chpe@src.gnome.org>2003-11-22 07:03:32 +0800
commitfd4f7ff174621461810cf76597a73250ab2cf6fd (patch)
tree394857e51657d369826ce21a918e8a062472ac36 /embed/ephy-permission-manager.c
parentf332569e59ed36ce9f00dc0e9557e8889d0f2651 (diff)
downloadgsoc2013-epiphany-fd4f7ff174621461810cf76597a73250ab2cf6fd.tar
gsoc2013-epiphany-fd4f7ff174621461810cf76597a73250ab2cf6fd.tar.gz
gsoc2013-epiphany-fd4f7ff174621461810cf76597a73250ab2cf6fd.tar.bz2
gsoc2013-epiphany-fd4f7ff174621461810cf76597a73250ab2cf6fd.tar.lz
gsoc2013-epiphany-fd4f7ff174621461810cf76597a73250ab2cf6fd.tar.xz
gsoc2013-epiphany-fd4f7ff174621461810cf76597a73250ab2cf6fd.tar.zst
gsoc2013-epiphany-fd4f7ff174621461810cf76597a73250ab2cf6fd.zip
New interfaces: EphyCookieManager, EphyPermissionManager,
2003-11-21 Christian Persch <chpe@cvs.gnome.org> * embed/Makefile.am: * embed/ephy-cookie-manager.c: (ephy_cookie_get_type), (ephy_cookie_new), (ephy_cookie_copy), (ephy_cookie_free), (ephy_cookie_manager_get_type), (ephy_cookie_manager_base_init), (ephy_cookie_manager_list_cookies), (ephy_cookie_manager_remove_cookie), (ephy_cookie_manager_clear): * embed/ephy-cookie-manager.h: * embed/ephy-embed-single.c: (ephy_embed_single_get_type), (ephy_embed_single_class_init), (ephy_embed_single_clear_cache), (ephy_embed_single_set_offline_mode), (ephy_embed_single_load_proxy_autoconf), (ephy_embed_single_get_font_list): * embed/ephy-embed-single.h: * embed/ephy-password-manager.c: (ephy_password_info_get_type), (ephy_password_info_new), (ephy_password_info_copy), (ephy_password_info_free), (ephy_password_manager_get_type), (ephy_password_manager_add), (ephy_password_manager_remove), (ephy_password_manager_list): * embed/ephy-password-manager.h: * embed/ephy-permission-manager.c: (ephy_permission_info_get_type), (ephy_permission_info_new), (ephy_permission_info_copy), (ephy_permission_info_free), (ephy_permission_manager_get_type), (ephy_permission_manager_base_init), (ephy_permission_manager_add), (ephy_permission_manager_remove), (ephy_permission_manager_clear), (ephy_permission_manager_test), (ephy_permission_manager_list): * embed/ephy-permission-manager.h: * embed/mozilla/mozilla-embed-single.cpp: * embed/mozilla/mozilla-embed-single.h: * embed/mozilla/mozilla-notifiers.cpp: * src/Makefile.am: * src/pdm-dialog.c: (pdm_dialog_get_type), (pdm_dialog_cookie_add), (pdm_dialog_password_add), (pdm_dialog_cookie_remove), (pdm_dialog_password_remove), (pdm_dialog_cookies_free), (pdm_dialog_passwords_free), (pdm_dialog_init), (pdm_dialog_new), (show_cookies_properties), (pdm_dialog_cookies_properties_button_clicked_cb): * src/pdm-dialog.h: New interfaces: EphyCookieManager, EphyPermissionManager, EphyPasswordManager. Port all callers to new interfaces. Change linking order to make it link. Only set autoconf proxy url if it's non-empty.
Diffstat (limited to 'embed/ephy-permission-manager.c')
-rw-r--r--embed/ephy-permission-manager.c295
1 files changed, 295 insertions, 0 deletions
diff --git a/embed/ephy-permission-manager.c b/embed/ephy-permission-manager.c
new file mode 100644
index 000000000..878ead738
--- /dev/null
+++ b/embed/ephy-permission-manager.c
@@ -0,0 +1,295 @@
+/*
+ * Copyright (C) 2003 Marco Pesenti Gritti
+ * Copyright (C) 2003 Christian Persch
+ *
+ * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Id$
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include "ephy-permission-manager.h"
+#include "ephy-marshal.h"
+#include "ephy-debug.h"
+
+/* EphyPermissionInfo */
+
+GType
+ephy_permission_info_get_type (void)
+{
+ static GType type = 0;
+
+ if (type == 0)
+ {
+ type = g_boxed_type_register_static ("EphyPermissionInfo",
+ (GBoxedCopyFunc) ephy_permission_info_copy,
+ (GBoxedFreeFunc) ephy_permission_info_free);
+ }
+
+ return type;
+}
+
+/**
+ * ephy_permission_info_new:
+ * @host: a host name
+ * @type: a #EphyPermissionType
+ * @allowed: whether @host should be allowed to do what @type specifies
+ *
+ * Return value: the new #EphyPermissionInfo
+ **/
+EphyPermissionInfo *
+ephy_permission_info_new (const char *host,
+ EphyPermissionType type,
+ gboolean allowed)
+{
+ EphyPermissionInfo *info = g_new0 (EphyPermissionInfo, 1);
+
+ info->host = g_strdup (host);
+ info->type = type;
+ info->allowed = allowed;
+
+ return info;
+}
+
+/**
+ * ephy_permission_info_copy:
+ * @info: a #EphyPermissionInfo
+ *
+ * Return value: a copy of @info
+ **/
+EphyPermissionInfo *
+ephy_permission_info_copy (EphyPermissionInfo *info)
+{
+ EphyPermissionInfo *copy = g_new0 (EphyPermissionInfo, 1);
+
+ copy->host = g_strdup (info->host);
+ copy->type = info->type;
+ copy->allowed = info->allowed;
+
+ return copy;
+}
+
+/**
+ * ephy_permission_info_free:
+ * @info: a #EphyPermissionInfo
+ *
+ * Frees @info.
+ **/
+void
+ephy_permission_info_free (EphyPermissionInfo *info)
+{
+ if (info != NULL)
+ {
+ g_free (info->host);
+ g_free (info);
+ }
+}
+
+/* EphyPermissionManager */
+
+static void ephy_permission_manager_base_init (gpointer g_class);
+
+GType
+ephy_permission_manager_get_type (void)
+{
+ static GType type = 0;
+
+ if (type == 0)
+ {
+ static const GTypeInfo our_info =
+ {
+ sizeof (EphyPermissionManagerIFace),
+ ephy_permission_manager_base_init,
+ NULL,
+ };
+
+ type = g_type_register_static (G_TYPE_INTERFACE,
+ "EphyPermissionManager",
+ &our_info,
+ (GTypeFlags) 0);
+ }
+
+ return type;
+}
+
+static void
+ephy_permission_manager_base_init (gpointer g_class)
+{
+ static gboolean initialised = FALSE;
+
+ if (initialised == FALSE)
+ {
+ /**
+ * EphyPermissionManager::added
+ * @manager: the #EphyPermissionManager
+ * @info: a #EphyPermissionInfo
+ *
+ * The added signal is emitted when a permission entry has been added.
+ */
+ g_signal_new ("added",
+ EPHY_TYPE_PERMISSION_MANAGER,
+ G_SIGNAL_RUN_FIRST,
+ G_STRUCT_OFFSET (EphyPermissionManagerIFace, added),
+ NULL, NULL,
+ g_cclosure_marshal_VOID__BOXED,
+ G_TYPE_NONE,
+ 1,
+ EPHY_TYPE_PERMISSION_INFO);
+
+ /**
+ * EphyPermissionManager::changed
+ * @manager: the #EphyPermissionManager
+ * @info: a #EphyPermissionInfo
+ *
+ * The changed signal is emitted when a permission entry has been
+ * changed.
+ */
+ g_signal_new ("changed",
+ EPHY_TYPE_PERMISSION_MANAGER,
+ G_SIGNAL_RUN_FIRST,
+ G_STRUCT_OFFSET (EphyPermissionManagerIFace, changed),
+ NULL, NULL,
+ g_cclosure_marshal_VOID__BOXED,
+ G_TYPE_NONE,
+ 1,
+ EPHY_TYPE_PERMISSION_INFO);
+
+ /**
+ * EphyPermissionManager::deleted
+ * @manager: the #EphyPermissionManager
+ * @info: a #EphyPermissionInfo
+ *
+ * The deleted signal is emitted when a permission entry has been
+ * deleted.
+ */
+ g_signal_new ("deleted",
+ EPHY_TYPE_PERMISSION_MANAGER,
+ G_SIGNAL_RUN_FIRST,
+ G_STRUCT_OFFSET (EphyPermissionManagerIFace, deleted),
+ NULL, NULL,
+ g_cclosure_marshal_VOID__BOXED,
+ G_TYPE_NONE,
+ 1,
+ EPHY_TYPE_PERMISSION_INFO);
+
+ /**
+ * EphyPermissionManager::cleared
+ * @manager: the #EphyPermissionManager
+ *
+ * The cleared signal is emitted when the permissions database has
+ * been cleared.
+ */
+ g_signal_new ("cleared",
+ EPHY_TYPE_PERMISSION_MANAGER,
+ G_SIGNAL_RUN_FIRST,
+ G_STRUCT_OFFSET (EphyPermissionManagerIFace, cleared),
+ NULL, NULL,
+ g_cclosure_marshal_VOID__VOID,
+ G_TYPE_NONE,
+ 0);
+
+ initialised = TRUE;
+ }
+}
+
+/**
+ * ephy_permission_manager_add:
+ * @manager: the #EphyPermissionManager
+ * @host: a host name
+ * @type: a #EphyPermissionType
+ * @allow: the permission itself
+ *
+ * Adds the permission @allow of type @type for host @host to the permissions
+ * database.
+ **/
+void
+ephy_permission_manager_add (EphyPermissionManager *manager,
+ const char *host,
+ EphyPermissionType type,
+ gboolean allow)
+{
+ EphyPermissionManagerIFace *iface = EPHY_PERMISSION_MANAGER_GET_IFACE (manager);
+ iface->add (manager, host, type, allow);
+}
+
+/**
+ * ephy_permission_manager_remove:
+ * @manager: the #EphyPermissionManager
+ * @host: a host name
+ * @type: a #EphyPermissionType
+ *
+ * Removes the permission of type @type for host @host from the permissions
+ * database.
+ **/
+void
+ephy_permission_manager_remove (EphyPermissionManager *manager,
+ const char *host,
+ EphyPermissionType type)
+{
+ EphyPermissionManagerIFace *iface = EPHY_PERMISSION_MANAGER_GET_IFACE (manager);
+ iface->remove (manager, host, type);
+}
+
+/**
+ * ephy_permission_manager_clear:
+ * @manager: the #EphyPermissionManager
+ *
+ * Clears the permissions database.
+ **/
+void
+ephy_permission_manager_clear (EphyPermissionManager *manager)
+{
+ EphyPermissionManagerIFace *iface = EPHY_PERMISSION_MANAGER_GET_IFACE (manager);
+ iface->clear (manager);
+}
+
+/**
+ * ephy_permission_manager_test:
+ * @manager: the #EphyPermissionManager
+ * @host: a host name
+ * @type: a #EphyPermissionType
+ *
+ * Tests whether the host @host is allowed to do the action specified by @type.
+ *
+ * Return value: TRUE if allowed
+ **/
+gboolean
+ephy_permission_manager_test (EphyPermissionManager *manager,
+ const char *host,
+ EphyPermissionType type)
+{
+ EphyPermissionManagerIFace *iface = EPHY_PERMISSION_MANAGER_GET_IFACE (manager);
+ return iface->test (manager, host, type);
+}
+
+/**
+ * ephy_permission_manager_list:
+ * @manager: the #EphyPermissionManager
+ * @type: a #EphyPermissionType
+ *
+ * Lists all permission entries of type @type in the permissions database.
+ *
+ * Return value: the list of permission entries
+ **/
+GList *
+ephy_permission_manager_list (EphyPermissionManager *manager,
+ EphyPermissionType type)
+{
+ EphyPermissionManagerIFace *iface = EPHY_PERMISSION_MANAGER_GET_IFACE (manager);
+ return iface->list (manager, type);
+}