GDAL
cpl_http.h
Go to the documentation of this file.
1/******************************************************************************
2 * $Id$
3 *
4 * Project: Common Portability Library
5 * Purpose: Function wrapper for libcurl HTTP access.
6 * Author: Frank Warmerdam, warmerdam@pobox.com
7 *
8 ******************************************************************************
9 * Copyright (c) 2006, Frank Warmerdam
10 * Copyright (c) 2009, Even Rouault <even dot rouault at spatialys.com>
11 *
12 * Permission is hereby granted, free of charge, to any person obtaining a
13 * copy of this software and associated documentation files (the "Software"),
14 * to deal in the Software without restriction, including without limitation
15 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
16 * and/or sell copies of the Software, and to permit persons to whom the
17 * Software is furnished to do so, subject to the following conditions:
18 *
19 * The above copyright notice and this permission notice shall be included
20 * in all copies or substantial portions of the Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
23 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
25 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
28 * DEALINGS IN THE SOFTWARE.
29 ****************************************************************************/
30
31#ifndef CPL_HTTP_H_INCLUDED
32#define CPL_HTTP_H_INCLUDED
33
34#include "cpl_conv.h"
35#include "cpl_string.h"
36#include "cpl_progress.h"
37#include "cpl_vsi.h"
38
46#ifndef CPL_HTTP_MAX_RETRY
47#define CPL_HTTP_MAX_RETRY 0
48#endif
49
50#ifndef CPL_HTTP_RETRY_DELAY
51#define CPL_HTTP_RETRY_DELAY 30.0
52#endif
56
58typedef struct
59{
char **papszHeaders;
61
GByte *pabyData; int nDataLen;
65
67typedef struct
68{
71
74
76 char *pszErrBuf;
77
82
85
88
91
94
96
98typedef size_t (*CPLHTTPFetchWriteFunc)(void *pBuffer, size_t nSize,
99 size_t nMemb, void *pWriteArg);
102int CPL_DLL CPLHTTPEnabled(void);
103CPLHTTPResult CPL_DLL *CPLHTTPFetch(const char *pszURL,
104 CSLConstList papszOptions);
105CPLHTTPResult CPL_DLL *
106CPLHTTPFetchEx(const char *pszURL, CSLConstList papszOptions,
107 GDALProgressFunc pfnProgress, void *pProgressArg,
108 CPLHTTPFetchWriteFunc pfnWrite, void *pWriteArg);
109CPLHTTPResult CPL_DLL **CPLHTTPMultiFetch(const char *const *papszURL,
110 int nURLCount, int nMaxSimultaneous,
111 CSLConstList papszOptions);
112
113void CPL_DLL CPLHTTPCleanup(void);
114void CPL_DLL CPLHTTPDestroyResult(CPLHTTPResult *psResult);
115void CPL_DLL CPLHTTPDestroyMultiResult(CPLHTTPResult **papsResults, int nCount);
116int CPL_DLL CPLHTTPParseMultipartMime(CPLHTTPResult *psResult);
117
118/* -------------------------------------------------------------------- */
119/* To install an alternate network layer to the default Curl one */
120/* -------------------------------------------------------------------- */
139typedef CPLHTTPResult *(*CPLHTTPFetchCallbackFunc)(
140 const char *pszURL, CSLConstList papszOptions, GDALProgressFunc pfnProgress,
141 void *pProgressArg, CPLHTTPFetchWriteFunc pfnWrite, void *pWriteArg,
142 void *pUserData);
143
145 void *pUserData);
146
148 void *pUserData);
149int CPL_DLL CPLHTTPPopFetchCallback(void);
150
151/* -------------------------------------------------------------------- */
152/* The following is related to OAuth2 authorization around */
153/* google services like fusion tables, and potentially others */
154/* in the future. Code in cpl_google_oauth2.cpp. */
155/* */
156/* These services are built on CPL HTTP services. */
157/* -------------------------------------------------------------------- */
158
159char CPL_DLL *GOA2GetAuthorizationURL(const char *pszScope);
160char CPL_DLL *GOA2GetRefreshToken(const char *pszAuthToken,
161 const char *pszScope);
162char CPL_DLL *GOA2GetAccessToken(const char *pszRefreshToken,
163 const char *pszScope);
164
166 const char *pszPrivateKey, const char *pszClientEmail, const char *pszScope,
167 CSLConstList papszAdditionalClaims, CSLConstList papszOptions);
168
169char CPL_DLL **GOA2GetAccessTokenFromCloudEngineVM(CSLConstList papszOptions);
170
172
173#if defined(__cplusplus) && !defined(CPL_SUPRESS_CPLUSPLUS)
175// Not sure if this belong here, used in cpl_http.cpp, cpl_vsil_curl.cpp and
176// frmts/wms/gdalhttp.cpp
177void CPL_DLL *CPLHTTPSetOptions(void *pcurl, const char *pszURL,
178 const char *const *papszOptions);
179char **CPLHTTPGetOptionsFromEnv();
180double CPLHTTPGetNewRetryDelay(int response_code, double dfOldDelay,
181 const char *pszErrBuf, const char *pszCurlError);
182void CPL_DLL *CPLHTTPIgnoreSigPipe();
183void CPL_DLL CPLHTTPRestoreSigPipeHandler(void *old_handler);
184bool CPLMultiPerformWait(void *hCurlMultiHandle, int &repeats);
189
198{
199 public:
201
203 typedef enum
204 {
205 NONE,
206 GCE,
207 ACCESS_TOKEN_FROM_REFRESH,
208 SERVICE_ACCOUNT
209 } AuthMethod;
210
211 bool SetAuthFromGCE(CSLConstList papszOptions);
212 bool SetAuthFromRefreshToken(const char *pszRefreshToken,
213 const char *pszClientId,
214 const char *pszClientSecret,
215 CSLConstList papszOptions);
216 bool SetAuthFromServiceAccount(const char *pszPrivateKey,
217 const char *pszClientEmail,
218 const char *pszScope,
219 CSLConstList papszAdditionalClaims,
220 CSLConstList papszOptions);
221
224 {
225 return m_eMethod;
226 }
227
228 const char *GetBearer() const;
229
232 {
233 return m_osPrivateKey;
234 }
235
238 {
239 return m_osClientEmail;
240 }
241
242 private:
243 mutable CPLString m_osCurrentBearer{};
244 mutable time_t m_nExpirationTime = 0;
245 AuthMethod m_eMethod = NONE;
246
247 // for ACCESS_TOKEN_FROM_REFRESH
248 CPLString m_osClientId{};
249 CPLString m_osClientSecret{};
250 CPLString m_osRefreshToken{};
251
252 // for SERVICE_ACCOUNT
253 CPLString m_osPrivateKey{};
254 CPLString m_osClientEmail{};
255 CPLString m_osScope{};
256 CPLStringList m_aosAdditionalClaims{};
257
258 CPLStringList m_aosOptions{};
259};
260
261#endif // __cplusplus
262
263#endif /* ndef CPL_HTTP_H_INCLUDED */
String list class designed around our use of C "char**" string lists.
Definition cpl_string.h:438
Convenient string class based on std::string.
Definition cpl_string.h:312
Manager of Google OAuth2 authentication.
Definition cpl_http.h:198
const CPLString & GetClientEmail() const
Returns client email for SERVICE_ACCOUNT method.
Definition cpl_http.h:237
GOA2Manager()
Constructor.
AuthMethod GetAuthMethod() const
Returns the authentication method.
Definition cpl_http.h:223
bool SetAuthFromRefreshToken(const char *pszRefreshToken, const char *pszClientId, const char *pszClientSecret, CSLConstList papszOptions)
Specifies that the authentication will be done using the OAuth2 client id method.
Definition cpl_google_oauth2.cpp:600
bool SetAuthFromServiceAccount(const char *pszPrivateKey, const char *pszClientEmail, const char *pszScope, CSLConstList papszAdditionalClaims, CSLConstList papszOptions)
Specifies that the authentication will be done using the OAuth2 service account method.
Definition cpl_google_oauth2.cpp:635
const CPLString & GetPrivateKey() const
Returns private key for SERVICE_ACCOUNT method.
Definition cpl_http.h:231
const char * GetBearer() const
Return the access token.
Definition cpl_google_oauth2.cpp:678
bool SetAuthFromGCE(CSLConstList papszOptions)
Specifies that the authentication will be done using the local credentials of the current Google Comp...
Definition cpl_google_oauth2.cpp:576
AuthMethod
Authentication method.
Definition cpl_http.h:204
Various convenience functions for CPL.
int CPLHTTPPopFetchCallback(void)
Uninstalls a callback set by CPLHTTPPushFetchCallback().
Definition cpl_http.cpp:884
CPLHTTPResult ** CPLHTTPMultiFetch(const char *const *papszURL, int nURLCount, int nMaxSimultaneous, CSLConstList papszOptions)
Fetch several documents at once.
Definition cpl_http.cpp:1597
char * GOA2GetRefreshToken(const char *pszAuthToken, const char *pszScope)
Turn Auth Token into a Refresh Token.
Definition cpl_google_oauth2.cpp:159
int CPLHTTPPushFetchCallback(CPLHTTPFetchCallbackFunc pFunc, void *pUserData)
Installs an alternate callback to the default implementation of CPLHTTPFetchEx().
Definition cpl_http.cpp:864
void CPLHTTPCleanup(void)
Cleanup function to call at application termination.
Definition cpl_http.cpp:2536
char ** GOA2GetAccessTokenFromServiceAccount(const char *pszPrivateKey, const char *pszClientEmail, const char *pszScope, CSLConstList papszAdditionalClaims, CSLConstList papszOptions)
Fetch access token using Service Account OAuth2.
Definition cpl_google_oauth2.cpp:462
bool CPLIsMachinePotentiallyGCEInstance()
Returns whether the current machine is potentially a Google Compute Engine instance.
Definition cpl_google_cloud.cpp:111
CPLHTTPResult * CPLHTTPFetch(const char *pszURL, CSLConstList papszOptions)
Fetch a document from an url and return in a string.
Definition cpl_http.cpp:1005
char ** GOA2GetAccessTokenFromCloudEngineVM(CSLConstList papszOptions)
Fetch access token using Cloud Engine internal REST API.
Definition cpl_google_oauth2.cpp:422
bool CPLIsMachineForSureGCEInstance()
Returns whether the current machine is surely a Google Compute Engine instance.
Definition cpl_google_cloud.cpp:57
void CPLHTTPSetFetchCallback(CPLHTTPFetchCallbackFunc pFunc, void *pUserData)
Installs an alternate callback to the default implementation of CPLHTTPFetchEx().
Definition cpl_http.cpp:841
CPLHTTPResult *(* CPLHTTPFetchCallbackFunc)(const char *pszURL, CSLConstList papszOptions, GDALProgressFunc pfnProgress, void *pProgressArg, CPLHTTPFetchWriteFunc pfnWrite, void *pWriteArg, void *pUserData)
Callback function to process network requests.
Definition cpl_http.h:139
char * GOA2GetAuthorizationURL(const char *pszScope)
Return authorization url for a given scope.
Definition cpl_google_oauth2.cpp:124
CPLHTTPResult * CPLHTTPFetchEx(const char *pszURL, CSLConstList papszOptions, GDALProgressFunc pfnProgress, void *pProgressArg, CPLHTTPFetchWriteFunc pfnWrite, void *pWriteArg)
Fetch a document from an url and return in a string.
Definition cpl_http.cpp:1025
char * GOA2GetAccessToken(const char *pszRefreshToken, const char *pszScope)
Fetch access token using refresh token.
Definition cpl_google_oauth2.cpp:391
int CPLHTTPEnabled(void)
Return if CPLHTTP services can be useful.
Definition cpl_http.cpp:2519
void CPLHTTPDestroyResult(CPLHTTPResult *psResult)
Clean the memory associated with the return value of CPLHTTPFetch()
Definition cpl_http.cpp:2592
void CPLHTTPDestroyMultiResult(CPLHTTPResult **papsResults, int nCount)
Clean the memory associated with the return value of CPLHTTPMultiFetch()
Definition cpl_http.cpp:1852
int CPLHTTPParseMultipartMime(CPLHTTPResult *psResult)
Parses a MIME multipart message.
Definition cpl_http.cpp:2625
#define CPL_C_END
Macro to end a block of C symbols.
Definition cpl_port.h:317
#define CPL_C_START
Macro to start a block of C symbols.
Definition cpl_port.h:313
char ** CSLConstList
Type of a constant null-terminated list of nul terminated strings.
Definition cpl_port.h:1190
unsigned char GByte
Unsigned byte type.
Definition cpl_port.h:205
Various convenience functions for working with strings and string lists.
Standard C Covers.
Definition cpl_http.h:68
GByte * pabyData
Definition cpl_http.h:84
int nStatus
Definition cpl_http.h:70
CPLMimePart * pasMimePart
Definition cpl_http.h:93
char * pszContentType
Definition cpl_http.h:73
int nDataAlloc
Definition cpl_http.h:81
char ** papszHeaders
Definition cpl_http.h:87
char * pszErrBuf
Definition cpl_http.h:76
int nMimePartCount
Definition cpl_http.h:90
int nDataLen
Definition cpl_http.h:79
Definition cpl_http.h:59