14#ifndef CPL_HTTP_H_INCLUDED
15#define CPL_HTTP_H_INCLUDED
19#include "cpl_progress.h"
29#ifndef CPL_HTTP_MAX_RETRY
30#define CPL_HTTP_MAX_RETRY 0
33#ifndef CPL_HTTP_RETRY_DELAY
34#define CPL_HTTP_RETRY_DELAY 30.0
81typedef size_t (*CPLHTTPFetchWriteFunc)(
void *pBuffer,
size_t nSize,
82 size_t nMemb,
void *pWriteArg);
90 GDALProgressFunc pfnProgress,
void *pProgressArg,
91 CPLHTTPFetchWriteFunc pfnWrite,
void *pWriteArg);
93 int nURLCount,
int nMaxSimultaneous,
125 const char *pszURL,
CSLConstList papszOptions, GDALProgressFunc pfnProgress,
126 void *pProgressArg, CPLHTTPFetchWriteFunc pfnWrite,
void *pWriteArg,
146 const char *pszScope);
148 const char *pszScope);
151 const char *pszPrivateKey,
const char *pszClientEmail,
const char *pszScope,
158#if defined(__cplusplus) && !defined(CPL_SUPRESS_CPLUSPLUS)
162void CPL_DLL *CPLHTTPSetOptions(
void *pcurl,
const char *pszURL,
163 const char *
const *papszOptions);
164char **CPLHTTPGetOptionsFromEnv(
const char *pszFilename);
167struct CPLHTTPRetryParameters
169 int nMaxRetry = CPL_HTTP_MAX_RETRY;
170 double dfInitialDelay = CPL_HTTP_RETRY_DELAY;
171 std::string osRetryCodes{};
173 CPLHTTPRetryParameters() =
default;
174 explicit CPLHTTPRetryParameters(
const CPLStringList &aosHTTPOptions);
178class CPLHTTPRetryContext
181 explicit CPLHTTPRetryContext(
const CPLHTTPRetryParameters &oParams);
183 bool CanRetry(
int response_code,
const char *pszErrBuf,
184 const char *pszCurlError);
188 double GetCurrentDelay()
const;
197 CPLHTTPRetryParameters m_oParameters{};
198 int m_nRetryCount = 0;
199 double m_dfCurDelay = 0.0;
200 double m_dfNextDelay = 0.0;
203void CPL_DLL *CPLHTTPIgnoreSigPipe();
204void CPL_DLL CPLHTTPRestoreSigPipeHandler(
void *old_handler);
205bool CPLMultiPerformWait(
void *hCurlMultiHandle,
int &repeats);
227 ACCESS_TOKEN_FROM_REFRESH,
233 const char *pszClientId,
234 const char *pszClientSecret,
237 const char *pszClientEmail,
238 const char *pszScope,
253 return m_osPrivateKey;
259 return m_osClientEmail;
267 std::string osKey(std::to_string(
static_cast<int>(m_eMethod))
268 .append(
",client-id=")
269 .append(m_osClientId)
270 .append(
",client-secret=")
271 .append(m_osClientSecret)
272 .append(
",refresh-token=")
273 .append(m_osRefreshToken)
274 .append(
",private-key=")
275 .append(m_osPrivateKey)
276 .append(
",client-email=")
277 .append(m_osClientEmail)
280 osKey.append(
",additional-claims=");
281 for (
const auto *pszOption : m_aosAdditionalClaims)
283 osKey.append(pszOption);
286 osKey.append(
",options=");
287 for (
const auto *pszOption : m_aosOptions)
289 osKey.append(pszOption);
297 mutable time_t m_nExpirationTime = 0;
302 CPLString m_osClientId{};
303 CPLString m_osClientSecret{};
304 CPLString m_osRefreshToken{};
307 CPLString m_osPrivateKey{};
308 CPLString m_osClientEmail{};
309 CPLString m_osScope{};
310 CPLStringList m_aosAdditionalClaims{};
312 CPLStringList m_aosOptions{};
Convenient string class based on std::string.
Definition cpl_string.h:320
const CPLString & GetClientEmail() const
Returns client email for SERVICE_ACCOUNT method.
Definition cpl_http.h:257
GOA2Manager()
Constructor.
AuthMethod GetAuthMethod() const
Returns the authentication method.
Definition cpl_http.h:243
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:546
std::string GetKey() const
Returns a key that can be used to uniquely identify the instance parameters (excluding bearer).
Definition cpl_http.h:265
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:581
const CPLString & GetPrivateKey() const
Returns private key for SERVICE_ACCOUNT method.
Definition cpl_http.h:251
const char * GetBearer() const
Return the access token.
Definition cpl_google_oauth2.cpp:624
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:522
AuthMethod
Authentication method.
Definition cpl_http.h:224
Various convenience functions for CPL.
int CPLHTTPPopFetchCallback(void)
Uninstalls a callback set by CPLHTTPPushFetchCallback().
Definition cpl_http.cpp:1011
CPLHTTPResult ** CPLHTTPMultiFetch(const char *const *papszURL, int nURLCount, int nMaxSimultaneous, CSLConstList papszOptions)
Fetch several documents at once.
Definition cpl_http.cpp:1775
char * GOA2GetRefreshToken(const char *pszAuthToken, const char *pszScope)
Turn Auth Token into a Refresh Token.
Definition cpl_google_oauth2.cpp:107
int CPLHTTPPushFetchCallback(CPLHTTPFetchCallbackFunc pFunc, void *pUserData)
Installs an alternate callback to the default implementation of CPLHTTPFetchEx().
Definition cpl_http.cpp:991
void CPLHTTPCleanup(void)
Cleanup function to call at application termination.
Definition cpl_http.cpp:2812
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:408
bool CPLIsMachinePotentiallyGCEInstance()
Returns whether the current machine is potentially a Google Compute Engine instance.
Definition cpl_google_cloud.cpp:136
CPLHTTPResult * CPLHTTPFetch(const char *pszURL, CSLConstList papszOptions)
Fetch a document from an url and return in a string.
Definition cpl_http.cpp:1250
char ** GOA2GetAccessTokenFromCloudEngineVM(CSLConstList papszOptions)
Fetch access token using Cloud Engine internal REST API.
Definition cpl_google_oauth2.cpp:369
bool CPLIsMachineForSureGCEInstance()
Returns whether the current machine is surely a Google Compute Engine instance.
Definition cpl_google_cloud.cpp:90
void CPLHTTPSetFetchCallback(CPLHTTPFetchCallbackFunc pFunc, void *pUserData)
Installs an alternate callback to the default implementation of CPLHTTPFetchEx().
Definition cpl_http.cpp:968
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:124
char * GOA2GetAuthorizationURL(const char *pszScope)
Return authorization url for a given scope.
Definition cpl_google_oauth2.cpp:72
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:1270
char * GOA2GetAccessToken(const char *pszRefreshToken, const char *pszScope)
Fetch access token using refresh token.
Definition cpl_google_oauth2.cpp:339
int CPLHTTPEnabled(void)
Return if CPLHTTP services can be useful.
Definition cpl_http.cpp:2795
void CPLHTTPDestroyResult(CPLHTTPResult *psResult)
Clean the memory associated with the return value of CPLHTTPFetch().
Definition cpl_http.cpp:2868
void CPLHTTPDestroyMultiResult(CPLHTTPResult **papsResults, int nCount)
Clean the memory associated with the return value of CPLHTTPMultiFetch().
Definition cpl_http.cpp:2029
void CPLHTTPSetDefaultUserAgent(const char *pszUserAgent)
Set the default user agent.
Definition cpl_http.cpp:489
int CPLHTTPParseMultipartMime(CPLHTTPResult *psResult)
Parses a MIME multipart message.
Definition cpl_http.cpp:2901
#define CPL_C_END
Macro to end a block of C symbols.
Definition cpl_port.h:289
#define CPL_C_START
Macro to start a block of C symbols.
Definition cpl_port.h:285
char ** CSLConstList
Type of a constant null-terminated list of nul terminated strings.
Definition cpl_port.h:1087
unsigned char GByte
Unsigned byte type.
Definition cpl_port.h:175
Various convenience functions for working with strings and string lists.
GByte * pabyData
Definition cpl_http.h:67
int nStatus
Definition cpl_http.h:53
CPLMimePart * pasMimePart
Definition cpl_http.h:76
char * pszContentType
Definition cpl_http.h:56
int nDataAlloc
Definition cpl_http.h:64
char ** papszHeaders
Definition cpl_http.h:70
char * pszErrBuf
Definition cpl_http.h:59
int nMimePartCount
Definition cpl_http.h:73
int nDataLen
Definition cpl_http.h:62
char ** papszHeaders
Definition cpl_http.h:43
int nDataLen
Definition cpl_http.h:46
GByte * pabyData
Definition cpl_http.h:45