Blame gfbgraph/gfbgraph-authorizer.h

Packit 87b8d1
/* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 8; tab-width: 8 -*-  */
Packit 87b8d1
/*
Packit 87b8d1
 * libgfbgraph - GObject library for Facebook Graph API
Packit 87b8d1
 * Copyright (C) 2013 Álvaro Peña <alvaropg@gmail.com>
Packit 87b8d1
 *
Packit 87b8d1
 * GFBGraph is free software; you can redistribute it and/or
Packit 87b8d1
 * modify it under the terms of the GNU Lesser General Public
Packit 87b8d1
 * License as published by the Free Software Foundation; either
Packit 87b8d1
 * version 2.1 of the License, or (at your option) any later version.
Packit 87b8d1
 *
Packit 87b8d1
 * GFBGraph is distributed in the hope that it will be useful,
Packit 87b8d1
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 87b8d1
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 87b8d1
 * Lesser General Public License for more details.
Packit 87b8d1
 *
Packit 87b8d1
 * You should have received a copy of the GNU Lesser General Public
Packit 87b8d1
 * License along with GFBGraph.  If not, see <http://www.gnu.org/licenses/>.
Packit 87b8d1
 */
Packit 87b8d1
Packit 87b8d1
#ifndef __GFBGRAPH_AUTHORIZER_H__
Packit 87b8d1
#define __GFBGRAPH_AUTHORIZER_H__
Packit 87b8d1
Packit 87b8d1
#include <glib-object.h>
Packit 87b8d1
#include <gio/gio.h>
Packit 87b8d1
#include <libsoup/soup.h>
Packit 87b8d1
#include <rest/rest-proxy-call.h>
Packit 87b8d1
Packit 87b8d1
G_BEGIN_DECLS
Packit 87b8d1
Packit 87b8d1
#define GFBGRAPH_TYPE_AUTHORIZER          (gfbgraph_authorizer_get_type ())
Packit 87b8d1
#define GFBGRAPH_AUTHORIZER(o)            (G_TYPE_CHECK_INSTANCE_CAST ((o), GFBGRAPH_TYPE_AUTHORIZER, GFBGraphAuthorizer))
Packit 87b8d1
#define GFBGRAPH_IS_AUTHORIZER(o)         (G_TYPE_CHECK_INSTANCE_TYPE ((o), GFBGRAPH_TYPE_AUTHORIZER))
Packit 87b8d1
#define GFBGRAPH_AUTHORIZER_GET_IFACE(o)  (G_TYPE_INSTANCE_GET_INTERFACE ((o), GFBGRAPH_TYPE_AUTHORIZER, GFBGraphAuthorizerInterface))
Packit 87b8d1
Packit 87b8d1
typedef struct _GFBGraphAuthorizer          GFBGraphAuthorizer;
Packit 87b8d1
typedef struct _GFBGraphAuthorizerInterface GFBGraphAuthorizerInterface;
Packit 87b8d1
Packit 87b8d1
/**
Packit 87b8d1
 * GFBGraphAuthorizerInterface:
Packit 87b8d1
 * @parent: The parent interface.
Packit 87b8d1
 * @process_call: A method to append authorization headers to a a #RestProxyCall.
Packit 87b8d1
 * @process_message: A method to append authorization headers to a #SoupMessage.
Packit 87b8d1
 * @refresh_authorization: A synchronous method to force a refresh of any authorization
Packit 87b8d1
 *  tokes held by the authorizer. It should return %TRUE on succes.
Packit 87b8d1
 *
Packit 87b8d1
 * Interface structure for #GFBGraphAuthorizer. All methos should be thread safe.
Packit 87b8d1
 **/
Packit 87b8d1
struct _GFBGraphAuthorizerInterface {
Packit 87b8d1
        GTypeInterface parent;
Packit 87b8d1
Packit 87b8d1
        void        (*process_call)          (GFBGraphAuthorizer *iface,
Packit 87b8d1
                                              RestProxyCall *call);
Packit 87b8d1
        void        (*process_message)       (GFBGraphAuthorizer *iface,
Packit 87b8d1
                                              SoupMessage *message);
Packit 87b8d1
        gboolean    (*refresh_authorization) (GFBGraphAuthorizer *iface,
Packit 87b8d1
                                              GCancellable *cancellable,
Packit 87b8d1
                                              GError **error);
Packit 87b8d1
};
Packit 87b8d1
Packit 87b8d1
GType    gfbgraph_authorizer_get_type              (void) G_GNUC_CONST;
Packit 87b8d1
Packit 87b8d1
void     gfbgraph_authorizer_process_call          (GFBGraphAuthorizer *iface,
Packit 87b8d1
                                                    RestProxyCall *call);
Packit 87b8d1
void     gfbgraph_authorizer_process_message       (GFBGraphAuthorizer *iface,
Packit 87b8d1
                                                    SoupMessage *message);
Packit 87b8d1
gboolean gfbgraph_authorizer_refresh_authorization (GFBGraphAuthorizer *iface,
Packit 87b8d1
                                                    GCancellable *cancellable,
Packit 87b8d1
                                                    GError **error);
Packit 87b8d1
Packit 87b8d1
G_END_DECLS
Packit 87b8d1
Packit 87b8d1
#endif /* __GFBGRAPH_AUTHORIZER_H__ */