2012-06-07 00:58:27 +02:00
|
|
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
|
|
|
|
*
|
|
|
|
* Copyright 2012 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2012-09-17 10:42:31 +02:00
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
2012-06-07 00:58:27 +02:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2014-01-23 12:57:27 +01:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2012-06-07 00:58:27 +02:00
|
|
|
*
|
|
|
|
* Written by: Stef Walter <stefw@gnome.org>
|
|
|
|
*/
|
|
|
|
|
2018-05-31 10:44:37 +12:00
|
|
|
#pragma once
|
2012-06-07 00:58:27 +02:00
|
|
|
|
2018-11-08 10:56:19 +13:00
|
|
|
#include "cc-realm-generated.h"
|
2012-06-07 00:58:27 +02:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
typedef enum {
|
2018-11-08 10:56:19 +13:00
|
|
|
CC_REALM_ERROR_BAD_LOGIN,
|
|
|
|
CC_REALM_ERROR_BAD_PASSWORD,
|
|
|
|
CC_REALM_ERROR_CANNOT_AUTH,
|
2023-12-21 15:35:28 +01:00
|
|
|
CC_REALM_ERROR_BAD_HOSTNAME,
|
2018-11-08 10:56:19 +13:00
|
|
|
CC_REALM_ERROR_GENERIC,
|
|
|
|
} CcRealmErrors;
|
2012-06-07 00:58:27 +02:00
|
|
|
|
2018-11-08 10:56:19 +13:00
|
|
|
#define CC_REALM_ERROR (cc_realm_error_get_quark ())
|
2012-06-07 00:58:27 +02:00
|
|
|
|
2018-11-08 10:56:19 +13:00
|
|
|
GQuark cc_realm_error_get_quark (void) G_GNUC_CONST;
|
2012-06-07 00:58:27 +02:00
|
|
|
|
2018-11-08 10:56:19 +13:00
|
|
|
#define CC_TYPE_REALM_MANAGER (cc_realm_manager_get_type ())
|
|
|
|
G_DECLARE_FINAL_TYPE (CcRealmManager, cc_realm_manager, CC, REALM_MANAGER, CcRealmObjectManagerClient)
|
2012-06-07 00:58:27 +02:00
|
|
|
|
2018-11-08 10:56:19 +13:00
|
|
|
void cc_realm_manager_new (GCancellable *cancellable,
|
2012-06-07 00:58:27 +02:00
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
|
2018-11-08 10:56:19 +13:00
|
|
|
CcRealmManager * cc_realm_manager_new_finish (GAsyncResult *result,
|
2012-06-07 00:58:27 +02:00
|
|
|
GError **error);
|
|
|
|
|
2018-11-08 10:56:19 +13:00
|
|
|
void cc_realm_manager_discover (CcRealmManager *self,
|
2012-06-07 00:58:27 +02:00
|
|
|
const gchar *input,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
|
2018-11-08 10:56:19 +13:00
|
|
|
GList * cc_realm_manager_discover_finish (CcRealmManager *self,
|
2012-06-07 00:58:27 +02:00
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error);
|
|
|
|
|
2018-11-08 10:56:19 +13:00
|
|
|
GList * cc_realm_manager_get_realms (CcRealmManager *self);
|
2012-06-07 00:58:27 +02:00
|
|
|
|
2018-11-08 10:56:19 +13:00
|
|
|
void cc_realm_login (CcRealmObject *realm,
|
2012-06-07 00:58:27 +02:00
|
|
|
const gchar *login,
|
|
|
|
const gchar *password,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
|
2018-11-08 10:56:19 +13:00
|
|
|
GBytes * cc_realm_login_finish (GAsyncResult *result,
|
2012-06-07 00:58:27 +02:00
|
|
|
GError **error);
|
|
|
|
|
2018-11-08 10:56:19 +13:00
|
|
|
gboolean cc_realm_join_as_user (CcRealmObject *realm,
|
2012-07-31 09:17:34 +02:00
|
|
|
const gchar *login,
|
|
|
|
const gchar *password,
|
2012-06-07 00:58:27 +02:00
|
|
|
GBytes *credentials,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
2012-07-31 09:17:34 +02:00
|
|
|
gpointer user_data)
|
|
|
|
G_GNUC_WARN_UNUSED_RESULT;
|
|
|
|
|
2018-11-08 10:56:19 +13:00
|
|
|
gboolean cc_realm_join_as_admin (CcRealmObject *realm,
|
2012-07-31 09:17:34 +02:00
|
|
|
const gchar *login,
|
|
|
|
const gchar *password,
|
|
|
|
GBytes *credentials,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
|
|
|
G_GNUC_WARN_UNUSED_RESULT;
|
2012-06-07 00:58:27 +02:00
|
|
|
|
2018-11-08 10:56:19 +13:00
|
|
|
gboolean cc_realm_join_finish (CcRealmObject *realm,
|
2012-06-07 00:58:27 +02:00
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error);
|
|
|
|
|
2018-11-08 10:56:19 +13:00
|
|
|
gboolean cc_realm_is_configured (CcRealmObject *realm);
|
2012-08-17 16:58:10 +02:00
|
|
|
|
2018-11-08 10:56:19 +13:00
|
|
|
gchar * cc_realm_calculate_login (CcRealmCommon *realm,
|
2012-08-17 16:58:10 +02:00
|
|
|
const gchar *username);
|
2012-06-07 00:58:27 +02:00
|
|
|
|
|
|
|
G_END_DECLS
|