mirror of
https://github.com/flatpak/flatpak.git
synced 2026-01-30 10:31:21 -05:00
This is needed for pull operations to actually use the token if one is given by an authenticator.
67 lines
2.9 KiB
C
67 lines
2.9 KiB
C
/*
|
|
* Copyright © 2014 Red Hat, Inc
|
|
*
|
|
* This program 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.1 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 <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Authors:
|
|
* Alexander Larsson <alexl@redhat.com>
|
|
*/
|
|
|
|
#ifndef __FLATPAK_UTILS_HTTP_H__
|
|
#define __FLATPAK_UTILS_HTTP_H__
|
|
|
|
#include <string.h>
|
|
|
|
#include <libsoup/soup.h>
|
|
|
|
SoupSession * flatpak_create_soup_session (const char *user_agent);
|
|
|
|
typedef enum {
|
|
FLATPAK_HTTP_FLAGS_NONE = 0,
|
|
FLATPAK_HTTP_FLAGS_ACCEPT_OCI = 1 << 0,
|
|
FLATPAK_HTTP_FLAGS_STORE_COMPRESSED = 2 << 0,
|
|
} FlatpakHTTPFlags;
|
|
|
|
typedef void (*FlatpakLoadUriProgress) (guint64 downloaded_bytes,
|
|
gpointer user_data);
|
|
|
|
GBytes * flatpak_load_http_uri (SoupSession *soup_session,
|
|
const char *uri,
|
|
FlatpakHTTPFlags flags,
|
|
const char *token,
|
|
FlatpakLoadUriProgress progress,
|
|
gpointer user_data,
|
|
GCancellable *cancellable,
|
|
GError **error);
|
|
gboolean flatpak_download_http_uri (SoupSession *soup_session,
|
|
const char *uri,
|
|
FlatpakHTTPFlags flags,
|
|
GOutputStream *out,
|
|
const char *token,
|
|
FlatpakLoadUriProgress progress,
|
|
gpointer user_data,
|
|
GCancellable *cancellable,
|
|
GError **error);
|
|
gboolean flatpak_cache_http_uri (SoupSession *soup_session,
|
|
const char *uri,
|
|
FlatpakHTTPFlags flags,
|
|
int dest_dfd,
|
|
const char *dest_subpath,
|
|
FlatpakLoadUriProgress progress,
|
|
gpointer user_data,
|
|
GCancellable *cancellable,
|
|
GError **error);
|
|
|
|
#endif /* __FLATPAK_UTILS_HTTP_H__ */
|