2012-02-01 13:34:08 +01:00
|
|
|
/* libsecret - GLib wrapper for Secret Service
|
2011-09-25 08:22:36 +02:00
|
|
|
*
|
|
|
|
* Copyright 2011 Collabora Ltd.
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as published
|
2012-03-31 15:32:43 +02:00
|
|
|
* by the Free Software Foundation; either version 2.1 of the licence or (at
|
2011-09-25 08:22:36 +02:00
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* See the included COPYING file for more information.
|
2012-03-31 15:32:43 +02:00
|
|
|
*
|
|
|
|
* Author: Stef Walter <stefw@gnome.org>
|
2011-09-25 08:22:36 +02:00
|
|
|
*/
|
2012-03-31 15:32:43 +02:00
|
|
|
|
2012-02-01 13:34:08 +01:00
|
|
|
#ifndef __SECRET_PRIVATE_H__
|
|
|
|
#define __SECRET_PRIVATE_H__
|
2011-09-25 08:22:36 +02:00
|
|
|
|
|
|
|
#include <gio/gio.h>
|
|
|
|
|
2012-02-01 13:34:08 +01:00
|
|
|
#include "secret-service.h"
|
|
|
|
#include "secret-value.h"
|
2011-09-25 08:22:36 +02:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2011-11-12 08:08:12 +01:00
|
|
|
typedef struct {
|
2012-01-20 15:10:35 +01:00
|
|
|
GAsyncResult *result;
|
|
|
|
GMainContext *context;
|
|
|
|
GMainLoop *loop;
|
2012-02-01 13:34:08 +01:00
|
|
|
} SecretSync;
|
2011-11-12 08:08:12 +01:00
|
|
|
|
2012-02-01 13:34:08 +01:00
|
|
|
typedef struct _SecretSession SecretSession;
|
2012-01-23 17:20:18 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
#define SECRET_SERVICE_PATH "/org/freedesktop/secrets"
|
2011-09-25 18:39:03 +02:00
|
|
|
|
2012-03-25 12:24:34 +02:00
|
|
|
#define SECRET_SERVICE_BUS_NAME "org.freedesktop.secrets"
|
2011-09-25 18:39:03 +02:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
#define SECRET_ITEM_INTERFACE "org.freedesktop.Secret.Item"
|
|
|
|
#define SECRET_COLLECTION_INTERFACE "org.freedesktop.Secret.Collection"
|
|
|
|
#define SECRET_PROMPT_INTERFACE "org.freedesktop.Secret.Prompt"
|
|
|
|
#define SECRET_SERVICE_INTERFACE "org.freedesktop.Secret.Service"
|
2011-09-25 18:39:03 +02:00
|
|
|
|
2012-02-19 13:09:07 +01:00
|
|
|
#define SECRET_SIGNAL_COLLECTION_CREATED "CollectionCreated"
|
|
|
|
#define SECRET_SIGNAL_COLLECTION_CHANGED "CollectionChanged"
|
|
|
|
#define SECRET_SIGNAL_COLLECTION_DELETED "CollectionDeleted"
|
|
|
|
#define SECRET_SIGNAL_ITEM_CREATED "ItemCreated"
|
|
|
|
#define SECRET_SIGNAL_ITEM_CHANGED "ItemChanged"
|
|
|
|
#define SECRET_SIGNAL_ITEM_DELETED "ItemDeleted"
|
|
|
|
#define SECRET_PROMPT_SIGNAL_COMPLETED "Completed"
|
2011-09-25 08:22:36 +02:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
#define SECRET_PROPERTIES_INTERFACE "org.freedesktop.DBus.Properties"
|
2012-01-16 15:08:46 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
SecretSync * _secret_sync_new (void);
|
2011-11-12 08:08:12 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
void _secret_sync_free (gpointer data);
|
2012-01-20 15:10:35 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
void _secret_sync_on_result (GObject *source,
|
2012-02-02 13:40:47 +01:00
|
|
|
GAsyncResult *result,
|
|
|
|
gpointer user_data);
|
2011-11-12 08:08:12 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
SecretPrompt * _secret_prompt_instance (SecretService *service,
|
2012-02-02 13:40:47 +01:00
|
|
|
const gchar *prompt_path);
|
2012-01-11 07:44:32 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
gchar * _secret_util_parent_path (const gchar *path);
|
2011-09-25 08:22:36 +02:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
gboolean _secret_util_empty_path (const gchar *path);
|
2012-01-11 07:44:32 +01:00
|
|
|
|
2012-02-19 13:09:07 +01:00
|
|
|
gint _secret_util_array_index_of (GVariant *array,
|
|
|
|
GVariant *value);
|
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
GType _secret_list_get_type (void) G_GNUC_CONST;
|
2012-01-20 15:10:35 +01:00
|
|
|
|
2012-03-18 19:04:44 +01:00
|
|
|
GVariant * _secret_util_variant_for_attributes (GHashTable *attributes,
|
|
|
|
const gchar *schema_name);
|
2011-11-05 21:50:01 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
GHashTable * _secret_util_attributes_for_variant (GVariant *variant);
|
2012-01-16 15:08:29 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
GHashTable * _secret_util_attributes_for_varargs (const SecretSchema *schema,
|
2012-02-02 13:40:47 +01:00
|
|
|
va_list va);
|
2012-01-11 07:44:32 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
GHashTable * _secret_util_attributes_copy (GHashTable *attributes);
|
2012-03-11 09:06:40 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
gboolean _secret_util_attributes_validate (const SecretSchema *schema,
|
2012-03-11 09:06:40 +01:00
|
|
|
GHashTable *attributes);
|
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
GVariant * _secret_util_variant_for_properties (GHashTable *properties);
|
2012-01-26 18:23:12 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
void _secret_util_get_properties (GDBusProxy *proxy,
|
2012-02-02 13:40:47 +01:00
|
|
|
gpointer result_tag,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
2012-01-20 15:10:35 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
gboolean _secret_util_get_properties_finish (GDBusProxy *proxy,
|
2012-02-02 13:40:47 +01:00
|
|
|
gpointer result_tag,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error);
|
2012-01-20 15:10:35 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
void _secret_util_set_property (GDBusProxy *proxy,
|
2012-02-02 13:40:47 +01:00
|
|
|
const gchar *property,
|
|
|
|
GVariant *value,
|
|
|
|
gpointer result_tag,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
2012-01-16 15:08:29 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
gboolean _secret_util_set_property_finish (GDBusProxy *proxy,
|
2012-02-02 13:40:47 +01:00
|
|
|
gpointer result_tag,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error);
|
2012-01-16 15:08:29 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
gboolean _secret_util_set_property_sync (GDBusProxy *proxy,
|
2012-02-02 13:40:47 +01:00
|
|
|
const gchar *property,
|
|
|
|
GVariant *value,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
2012-01-16 15:08:29 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
gboolean _secret_util_have_cached_properties (GDBusProxy *proxy);
|
2012-01-23 17:20:18 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
void _secret_service_set_default_bus_name (const gchar *bus_name);
|
2012-01-11 07:44:32 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
SecretSession * _secret_service_get_session (SecretService *self);
|
2011-09-25 08:22:36 +02:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
void _secret_service_take_session (SecretService *self,
|
2012-02-02 13:40:47 +01:00
|
|
|
SecretSession *session);
|
2011-09-25 08:22:36 +02:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
void _secret_service_delete_path (SecretService *self,
|
2012-02-02 13:40:47 +01:00
|
|
|
const gchar *object_path,
|
|
|
|
gboolean is_an_item,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
2012-03-18 19:04:44 +01:00
|
|
|
gpointer user_data);
|
|
|
|
|
|
|
|
void _secret_service_search_for_paths_variant (SecretService *self,
|
|
|
|
GVariant *attributes,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
2012-02-02 13:40:47 +01:00
|
|
|
gpointer user_data);
|
2012-01-26 14:34:37 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
SecretItem * _secret_service_find_item_instance (SecretService *self,
|
2012-02-02 13:40:47 +01:00
|
|
|
const gchar *item_path);
|
2012-01-20 15:10:35 +01:00
|
|
|
|
2012-06-23 14:09:50 +02:00
|
|
|
SecretCollection * _secret_service_find_collection_instance (SecretService *self,
|
|
|
|
const gchar *collection_path);
|
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
SecretItem * _secret_collection_find_item_instance (SecretCollection *self,
|
2012-02-02 13:40:47 +01:00
|
|
|
const gchar *item_path);
|
2012-01-20 15:10:35 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
gchar * _secret_value_unref_to_password (SecretValue *value);
|
2012-01-16 15:08:29 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
gchar * _secret_value_unref_to_string (SecretValue *value);
|
2012-03-11 09:06:40 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
void _secret_session_free (gpointer data);
|
2012-01-23 17:20:18 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
const gchar * _secret_session_get_algorithms (SecretSession *session);
|
2012-01-23 17:20:18 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
const gchar * _secret_session_get_path (SecretSession *session);
|
2012-01-23 17:20:18 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
void _secret_session_open (SecretService *service,
|
2012-02-02 13:40:47 +01:00
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
2012-01-23 17:20:18 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
gboolean _secret_session_open_finish (GAsyncResult *result,
|
2012-02-02 13:40:47 +01:00
|
|
|
GError **error);
|
2012-01-23 17:20:18 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
GVariant * _secret_session_encode_secret (SecretSession *session,
|
2012-02-02 13:40:47 +01:00
|
|
|
SecretValue *value);
|
2012-01-23 17:20:18 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
SecretValue * _secret_session_decode_secret (SecretSession *session,
|
2012-02-02 13:40:47 +01:00
|
|
|
GVariant *encoded);
|
2012-01-23 17:20:18 +01:00
|
|
|
|
2012-03-11 09:41:13 +01:00
|
|
|
const SecretSchema * _secret_schema_ref_if_nonstatic (const SecretSchema *schema);
|
|
|
|
|
|
|
|
void _secret_schema_unref_if_nonstatic (const SecretSchema *schema);
|
|
|
|
|
2011-09-25 08:22:36 +02:00
|
|
|
G_END_DECLS
|
|
|
|
|
2012-02-02 13:40:47 +01:00
|
|
|
#endif /* __SECRET_PRIVATE_H___ */
|