/usr/include/goa-1.0/goabackend/goaoauth2provider.h is in libgoa-1.0-dev 3.4.0-0ubuntu1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* -*- 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 <goabackend/goabackend.h> can be included directly."
#endif
#ifndef __GOA_OAUTH2_PROVIDER_H__
#define __GOA_OAUTH2_PROVIDER_H__
#include <goabackend/goabackendtypes.h>
G_BEGIN_DECLS
#define GOA_TYPE_OAUTH2_PROVIDER (goa_oauth2_provider_get_type ())
#define GOA_OAUTH2_PROVIDER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GOA_TYPE_OAUTH2_PROVIDER, GoaOAuth2Provider))
#define GOA_OAUTH2_PROVIDER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), GOA_TYPE_OAUTH2_PROVIDER, GoaOAuth2ProviderClass))
#define GOA_OAUTH2_PROVIDER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GOA_TYPE_OAUTH2_PROVIDER, GoaOAuth2ProviderClass))
#define GOA_IS_OAUTH2_PROVIDER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GOA_TYPE_OAUTH2_PROVIDER))
#define GOA_IS_OAUTH2_PROVIDER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GOA_TYPE_OAUTH2_PROVIDER))
typedef struct _GoaOAuth2ProviderClass GoaOAuth2ProviderClass;
typedef struct _GoaOAuth2ProviderPrivate GoaOAuth2ProviderPrivate;
/**
* GoaOAuth2Provider:
*
* The #GoaOAuth2Provider structure contains only private data and should
* only be accessed using the provided API.
*/
struct _GoaOAuth2Provider
{
/*< private >*/
GoaProvider parent_instance;
GoaOAuth2ProviderPrivate *priv;
};
/**
* GoaOAuth2ProviderClass:
* @parent_class: The parent class.
* @get_authorization_uri: Virtual function for goa_oauth2_provider_get_authorization_uri().
* @get_token_uri: Virtual function for goa_oauth2_provider_get_token_uri().
* @get_redirect_uri: Virtual function for goa_oauth2_provider_get_redirect_uri().
* @get_scope: Virtual function for goa_oauth2_provider_get_scope().
* @get_client_id: Virtual function for goa_oauth2_provider_get_client_id().
* @get_client_secret: Virtual function for goa_oauth2_provider_get_client_secret().
* @get_identity_sync: Virtual function for goa_oauth2_provider_get_identity_sync().
* @build_authorization_uri: Virtual function for goa_oauth2_provider_build_authorization_uri().
* @get_use_external_browser: Virtual function for goa_oauth2_provider_get_use_external_browser().
* @add_account_key_values: Virtual function for goa_oauth2_provider_add_account_key_values().
*
* Class structure for #GoaOAuth2Provider.
*/
struct _GoaOAuth2ProviderClass
{
GoaProviderClass parent_class;
/* pure virtual */
const gchar *(*get_authorization_uri) (GoaOAuth2Provider *provider);
const gchar *(*get_token_uri) (GoaOAuth2Provider *provider);
const gchar *(*get_redirect_uri) (GoaOAuth2Provider *provider);
const gchar *(*get_scope) (GoaOAuth2Provider *provider);
const gchar *(*get_client_id) (GoaOAuth2Provider *provider);
const gchar *(*get_client_secret) (GoaOAuth2Provider *provider);
gchar *(*get_identity_sync) (GoaOAuth2Provider *provider,
const gchar *access_token,
gchar **out_presentation_identity,
GCancellable *cancellable,
GError **error);
/* virtual but with default implementation */
gchar *(*build_authorization_uri) (GoaOAuth2Provider *provider,
const gchar *authorization_uri,
const gchar *escaped_redirect_uri,
const gchar *escaped_client_id,
const gchar *escaped_scope);
gboolean (*get_use_external_browser) (GoaOAuth2Provider *provider);
void (*add_account_key_values) (GoaOAuth2Provider *provider,
GVariantBuilder *builder);
/*< private >*/
/* Padding for future expansion */
gpointer goa_reserved[32];
};
GType goa_oauth2_provider_get_type (void) G_GNUC_CONST;
const gchar *goa_oauth2_provider_get_authorization_uri (GoaOAuth2Provider *provider);
const gchar *goa_oauth2_provider_get_token_uri (GoaOAuth2Provider *provider);
const gchar *goa_oauth2_provider_get_redirect_uri (GoaOAuth2Provider *provider);
const gchar *goa_oauth2_provider_get_scope (GoaOAuth2Provider *provider);
const gchar *goa_oauth2_provider_get_client_id (GoaOAuth2Provider *provider);
const gchar *goa_oauth2_provider_get_client_secret (GoaOAuth2Provider *provider);
gchar *goa_oauth2_provider_get_identity_sync (GoaOAuth2Provider *provider,
const gchar *access_token,
gchar **out_presentation_identity,
GCancellable *cancellable,
GError **error);
gchar *goa_oauth2_provider_get_access_token_sync (GoaOAuth2Provider *provider,
GoaObject *object,
gboolean force_refresh,
gint *out_access_token_expires_in,
GCancellable *cancellable,
GError **error);
gchar *goa_oauth2_provider_build_authorization_uri (GoaOAuth2Provider *provider,
const gchar *authorization_uri,
const gchar *escaped_redirect_uri,
const gchar *escaped_client_id,
const gchar *escaped_scope);
gboolean goa_oauth2_provider_get_use_external_browser (GoaOAuth2Provider *provider);
void goa_oauth2_provider_add_account_key_values (GoaOAuth2Provider *provider,
GVariantBuilder *builder);
G_END_DECLS
#endif /* __GOA_OAUTH2_PROVIDER_H__ */
|