/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */ /* * Copyright © 2012 – 2017 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, see . */ #if !defined (__GOA_BACKEND_INSIDE_GOA_BACKEND_H__) && !defined (GOA_BACKEND_COMPILATION) #error "Only can be included directly." #endif #ifndef __GOA_UTILS_H__ #define __GOA_UTILS_H__ #include #include #include #include #include "goaprovider.h" G_BEGIN_DECLS #define GOA_OAUTH2_ACCESS_DENIED "access_denied" #define GOA_SETTINGS_SCHEMA "org.gnome.online-accounts" #define GOA_SETTINGS_WHITELISTED_PROVIDERS "whitelisted-providers" typedef gpointer (*GoaPeekInterfaceFunc) (GoaObject *); void goa_utils_account_add_attention_needed (GoaClient *client, GoaObject *object, GoaProvider *provider, GtkBox *vbox); void goa_utils_account_add_header (GoaObject *object, GtkGrid *grid, gint row); void goa_utils_initialize_client_factory (void); gboolean goa_utils_check_duplicate (GoaClient *client, const gchar *identity, const gchar *presentation_identity, const gchar *provider_type, GoaPeekInterfaceFunc func, GError **error); gchar *goa_utils_data_input_stream_read_line (GDataInputStream *stream, gsize *length, GCancellable *cancellable, GError **error); void goa_utils_set_dialog_title (GoaProvider *provider, GtkDialog *dialog, gboolean add_account); gboolean goa_utils_delete_credentials_for_account_sync (GoaProvider *provider, GoaAccount *account, GCancellable *cancellable, GError **error); gboolean goa_utils_delete_credentials_for_id_sync (GoaProvider *provider, const gchar *id, GCancellable *cancellable, GError **error); GVariant *goa_utils_lookup_credentials_sync (GoaProvider *provider, GoaObject *object, GCancellable *cancellable, GError **error); gboolean goa_utils_store_credentials_for_id_sync (GoaProvider *provider, const gchar *id, GVariant *credentials, GCancellable *cancellable, GError **error); gboolean goa_utils_store_credentials_for_object_sync (GoaProvider *provider, GoaObject *object, GVariant *credentials, GCancellable *cancellable, GError **error); gboolean goa_utils_keyfile_copy_group (GKeyFile *src_key_file, const gchar *src_group_name, GKeyFile *dest_key_file, const gchar *dest_group_name); gboolean goa_utils_keyfile_get_boolean (GKeyFile *key_file, const gchar *group_name, const gchar *key); void goa_utils_keyfile_remove_key (GoaAccount *account, const gchar *key); void goa_utils_keyfile_set_boolean (GoaAccount *account, const gchar *key, gboolean value); void goa_utils_keyfile_set_string (GoaAccount *account, const gchar *key, const gchar *value); gboolean goa_utils_parse_email_address (const gchar *email, gchar **out_username, gchar **out_domain); void goa_utils_set_error_soup (GError **err, SoupMessage *msg); void goa_utils_set_error_ssl (GError **err, GTlsCertificateFlags flags); gboolean goa_utils_get_credentials (GoaProvider *provider, GoaObject *object, const gchar *id, gchar **username, gchar **password, GCancellable *cancellable, GError **error); G_END_DECLS #endif /* __GOA_UTILS_H__ */