summaryrefslogtreecommitdiff
path: root/src/goa/goabackendprovider.h
blob: e1a4fa2fb197e5ac0c6094faa3a28f21b88c5fe5 (plain)
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
/*
 * Copyright (C) 2011 Red Hat, Inc.
 *
 * 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 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., 59 Temple Place, Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 * Author: David Zeuthen <davidz@redhat.com>
 */

#if !defined (__GOA_BACKEND_INSIDE_GOA_BACKEND_H__) && !defined (GOA_BACKEND_COMPILATION)
#error "Only <goa/goabackend.h> can be included directly."
#endif

#ifndef __GOA_BACKEND_PROVIDER_H__
#define __GOA_BACKEND_PROVIDER_H__

#include <goa/goabackendtypes.h>

G_BEGIN_DECLS

#define GOA_TYPE_BACKEND_PROVIDER         (goa_backend_provider_get_type ())
#define GOA_BACKEND_PROVIDER(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), GOA_TYPE_BACKEND_PROVIDER, GoaBackendProvider))
#define GOA_BACKEND_PROVIDER_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST ((k), GOA_TYPE_BACKEND_PROVIDER, GoaBackendProviderClass))
#define GOA_BACKEND_PROVIDER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GOA_TYPE_BACKEND_PROVIDER, GoaBackendProviderClass))
#define GOA_IS_BACKEND_PROVIDER(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), GOA_TYPE_BACKEND_PROVIDER))
#define GOA_IS_BACKEND_PROVIDER_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), GOA_TYPE_BACKEND_PROVIDER))

typedef struct _GoaBackendProviderClass GoaBackendProviderClass;
typedef struct _GoaBackendProviderPrivate GoaBackendProviderPrivate;

/**
 * GoaBackendProvider:
 *
 * The #GoaBackendProvider structure contains only private data and should
 * only be accessed using the provided API.
 */
struct _GoaBackendProvider
{
  /*< private >*/
  GObject parent_instance;
  GoaBackendProviderPrivate *priv;
};

/**
 * GoaBackendProviderClass:
 * @parent_class: The parent class.
 * @get_provider_type: Virtual function for goa_backend_provider_get_provider_type().
 * @get_name: Virtual function for goa_backend_provider_get_name().
 * @add_account: Virtual function for goa_backend_provider_add_account().
 * @refresh_account: Virtual function for goa_backend_provider_refresh_account().
 * @build_object: Virtual function for goa_backend_provider_build_object().
 * @ensure_credentials_sync: Virtual function for goa_backend_provider_ensure_credentials_sync().
 *
 * Class structure for #GoaBackendProvider.
 */
struct _GoaBackendProviderClass
{
  GObjectClass parent_class;

  /* pure virtual */
  const gchar *(*get_provider_type) (GoaBackendProvider *provider);
  const gchar *(*get_name)          (GoaBackendProvider *provider);
  GoaObject   *(*add_account)       (GoaBackendProvider *provider,
                                     GoaClient          *client,
                                     GtkDialog          *dialog,
                                     GtkBox             *vbox,
                                     GError            **error);
  gboolean     (*refresh_account)   (GoaBackendProvider *provider,
                                     GoaClient          *client,
                                     GoaObject          *object,
                                     GtkWindow          *parent,
                                     GError            **error);
  gboolean     (*build_object)      (GoaBackendProvider *provider,
                                     GoaObjectSkeleton  *object,
                                     GKeyFile           *key_file,
                                     const gchar        *group,
                                     GError            **error);

  /* virtual but with default implementation */
  gboolean (*ensure_credentials_sync) (GoaBackendProvider  *provider,
                                       GoaObject           *object,
                                       gint                *out_expires_in,
                                       GCancellable        *cancellable,
                                       GError             **error);

  /*< private >*/
  /* Padding for future expansion */
  gpointer goa_reserved[32];
};

GType               goa_backend_provider_get_type          (void) G_GNUC_CONST;
const gchar        *goa_backend_provider_get_provider_type (GoaBackendProvider  *provider);
const gchar        *goa_backend_provider_get_name          (GoaBackendProvider  *provider);
GoaObject          *goa_backend_provider_add_account       (GoaBackendProvider  *provider,
                                                            GoaClient           *client,
                                                            GtkDialog           *dialog,
                                                            GtkBox              *vbox,
                                                            GError             **error);
gboolean            goa_backend_provider_refresh_account   (GoaBackendProvider  *provider,
                                                            GoaClient           *client,
                                                            GoaObject           *object,
                                                            GtkWindow           *parent,
                                                            GError             **error);
gboolean            goa_backend_provider_build_object      (GoaBackendProvider  *provider,
                                                            GoaObjectSkeleton   *object,
                                                            GKeyFile            *key_file,
                                                            const gchar         *group,
                                                            GError             **error);

gboolean goa_backend_provider_store_credentials_sync (GoaBackendProvider   *provider,
                                                      const gchar          *identity,
                                                      GVariant             *credentials,
                                                      GCancellable         *cancellable,
                                                      GError              **error);

GVariant *goa_backend_provider_lookup_credentials_sync (GoaBackendProvider   *provider,
                                                        const gchar          *identity,
                                                        GCancellable         *cancellable,
                                                        GError              **error);

void goa_backend_provider_ensure_credentials (GoaBackendProvider   *provider,
                                              GoaObject            *object,
                                              GCancellable         *cancellable,
                                              GAsyncReadyCallback   callback,
                                              gpointer              user_data);

gboolean goa_backend_provider_ensure_credentials_finish (GoaBackendProvider  *provider,
                                                         gint                *out_expires_in,
                                                         GAsyncResult        *res,
                                                         GError             **error);

gboolean goa_backend_provider_ensure_credentials_sync (GoaBackendProvider     *provider,
                                                       GoaObject              *object,
                                                       gint                   *out_expires_in,
                                                       GCancellable           *cancellable,
                                                       GError                **error);


/**
 * GOA_BACKEND_PROVIDER_EXTENSION_POINT_NAME:
 *
 * Extension point for #GoaBackendProvider implementations.
 */
#define GOA_BACKEND_PROVIDER_EXTENSION_POINT_NAME "goa-backend-provider"

GList               *goa_backend_provider_get_all (void);
GoaBackendProvider  *goa_backend_provider_get_for_provider_type (const gchar *provider_type);

G_END_DECLS

#endif /* __GOA_BACKEND_PROVIDER_H__ */