1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
/* vi: set et sw=4 ts=4 cino=t0,(0: */
/* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of gsignond
*
* Copyright (C) 2012 Intel Corporation.
*
* Contact: Amarnath Valluri <amarnath.valluri@linux.intel.com>
*
* 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
*/
#ifndef __GSIGNOND_IDENTITY_H_
#define __GSIGNOND_IDENTITY_H_
#include <glib.h>
#include <glib-object.h>
#include "gsignond-types.h"
#include <gsignond/gsignond-identity-info.h>
#include <gsignond/gsignond-access-control-manager.h>
G_BEGIN_DECLS
#define GSIGNOND_TYPE_IDENTITY (gsignond_identity_get_type())
#define GSIGNOND_IDENTITY(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GSIGNOND_TYPE_IDENTITY, GSignondIdentity))
#define GSIGNOND_IDENTITY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GSIGNOND_TYPE_IDENTITY, GSignondIdentityClass))
#define GSIGNOND_IS_IDENTITY(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GSIGNOND_TYPE_IDENTITY))
#define GSIGNOND_IS_IDENTITY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), GSIGNOND_TYPE_IDENTITY))
#define GSIGNOND_IDENTITY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), GSIGNOND_TYPE_IDENTITY, GSignondIdentityClass))
typedef struct _GSignondIdentityPrivate GSignondIdentityPrivate;
typedef enum {
GSIGNOND_IDENTITY_DATA_UPDATED = 0,
GSIGNOND_IDENTITY_REMOVED,
GSIGNOND_IDENTITY_SIGNED_OUT
} IdentityChangeType;
typedef IdentityChangeType GSignondIdentityChangeType;
struct _GSignondIdentity
{
GObject parent;
/* priv */
GSignondIdentityPrivate *priv;
};
struct _GSignondIdentityClass
{
GObjectClass parent_class;
};
GType
gsignond_identity_get_type (void) G_GNUC_CONST;
GSignondIdentity *
gsignond_identity_new (GSignondDaemon *owner,
GSignondIdentityInfo *info);
GVariant *
gsignond_identity_get_info (GSignondIdentity *identity,
const GSignondSecurityContext *ctx,
GError **error);
GSignondAuthSession *
gsignond_identity_get_auth_session (GSignondIdentity *identity,
const gchar *method,
const GSignondSecurityContext *ctx,
GError **error);
gboolean
gsignond_identity_request_credentials_update (GSignondIdentity *identity,
const gchar *message,
const GSignondSecurityContext *ctx,
GError **error);
gboolean
gsignond_identity_verify_user (GSignondIdentity *identity,
GVariant *params,
const GSignondSecurityContext *ctx,
GError **error);
gboolean
gsignond_identity_verify_secret (GSignondIdentity *identity,
const gchar *secret,
const GSignondSecurityContext *ctx,
GError **error);
guint32
gsignond_identity_store (GSignondIdentity *identity,
const GVariant *info,
const GSignondSecurityContext *ctx,
GError **error);
gboolean
gsignond_identity_remove (GSignondIdentity *identity,
const GSignondSecurityContext *ctx,
GError **error);
gboolean
gsignond_identity_clear (GSignondIdentity *identity);
gboolean
gsignond_identity_sign_out (GSignondIdentity *identity,
const GSignondSecurityContext *ctx,
GError **error);
guint32
gsignond_identity_add_reference (GSignondIdentity *identity,
const gchar *reference,
const GSignondSecurityContext *ctx,
GError **error);
guint32
gsignond_identity_remove_reference (GSignondIdentity *identity,
const gchar *reference,
const GSignondSecurityContext *ctx,
GError **error);
guint
gsignond_identity_get_auth_session_timeout (GSignondIdentity *identity);
GSignondAccessControlManager *
gsignond_identity_get_acm (GSignondIdentity *identity);
guint32
gsignond_identity_get_id (GSignondIdentity *identity);
GSignondIdentityInfo *
gsignond_identity_get_identity_info (GSignondIdentity *identity);
G_END_DECLS
#endif /* __GSIGNOND_IDENTITY_H_ */
|