-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
636317e
commit 5c6ad35
Showing
9 changed files
with
354 additions
and
306 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,176 @@ | ||
/* | ||
Copyright (c) 2016 Imre Horvath. All rights reserved. | ||
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.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, write to the Free Software | ||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
*/ | ||
|
||
#include "BridgeHttpClient.h" | ||
|
||
void BridgeHttpClient::get(const char *url) { | ||
request("GET", url, NULL); | ||
} | ||
|
||
void BridgeHttpClient::post(const char *url, const char *data) { | ||
request("POST", url, data); | ||
} | ||
|
||
void BridgeHttpClient::put(const char *url, const char *data) { | ||
request("PUT", url, data); | ||
} | ||
|
||
void BridgeHttpClient::del(const char *url) { | ||
request("DELETE", url, NULL); | ||
} | ||
|
||
void BridgeHttpClient::getAsync(const char *url) { | ||
request("GET", url, NULL, true); | ||
} | ||
|
||
void BridgeHttpClient::postAsync(const char *url, const char *data) { | ||
request("POST", url, data, true); | ||
} | ||
|
||
void BridgeHttpClient::putAsync(const char *url, const char *data) { | ||
request("PUT", url, data, true); | ||
} | ||
|
||
void BridgeHttpClient::delAsync(const char *url) { | ||
request("DELETE", url, NULL, true); | ||
} | ||
|
||
bool BridgeHttpClient::finished() { | ||
return !running(); | ||
} | ||
|
||
unsigned int BridgeHttpClient::getResponseCode() { | ||
Process p; | ||
p.runShellCommand("head -n 1 " + _tempFileName + " | cut -d' ' -f2"); | ||
return p.parseInt(); | ||
} | ||
|
||
String BridgeHttpClient::getResponseHeaders() { | ||
String responseHeaders; | ||
|
||
Process p; | ||
p.runShellCommand("tail -n +2 " + _tempFileName); | ||
|
||
while (p.available() > 0) { | ||
char c = p.read(); | ||
responseHeaders += c; | ||
} | ||
|
||
responseHeaders.trim(); | ||
return responseHeaders; | ||
} | ||
|
||
void BridgeHttpClient::enableInsecure() { | ||
_isInsecureEnabled = true; | ||
} | ||
|
||
int BridgeHttpClient::addHeader(const char *header) { | ||
if (_extraHeaderIdx < EXTRA_HEADERS_MAX) { | ||
_extraHeaders[_extraHeaderIdx++] = header; | ||
return 0; | ||
} | ||
return -1; | ||
} | ||
|
||
void BridgeHttpClient::basicAuth(const char *user, const char *passwd) { | ||
_user = user; | ||
_passwd = passwd; | ||
} | ||
|
||
void BridgeHttpClient::clearHeaders() { | ||
_extraHeaderIdx = 0; | ||
} | ||
|
||
void BridgeHttpClient::clearAuth() { | ||
_user = _passwd = NULL; | ||
} | ||
|
||
bool BridgeHttpClient::getResponseHeaderValue(const String& header, String& value) { | ||
// Cache the response headers for subsequent calls | ||
if (_cachedRespHeaders.length() == 0) { | ||
_cachedRespHeaders = getResponseHeaders(); | ||
} | ||
|
||
// Handle the case when the header is not found | ||
int startOfHeader = _cachedRespHeaders.indexOf(header); | ||
if (startOfHeader == -1) { | ||
return false; // Return false if the header was not found | ||
} | ||
|
||
// Get the header value | ||
int startOfValue = _cachedRespHeaders.indexOf(':', startOfHeader) + 1; | ||
String respValue = _cachedRespHeaders.substring(startOfValue, | ||
_cachedRespHeaders.indexOf('\n', startOfValue)); | ||
respValue.trim(); | ||
|
||
value = respValue; | ||
return true; | ||
} | ||
|
||
void BridgeHttpClient::request(const char *verb, const char *url, const char *data, bool async) { | ||
Process p; | ||
p.runShellCommand("mktemp"); | ||
_tempFileName = p.readStringUntil('\n'); | ||
|
||
clearCachedRespHeaders(); | ||
|
||
begin("curl"); | ||
addParameter("-D"); | ||
addParameter(_tempFileName); | ||
|
||
if (verb != "GET") { | ||
addParameter("-X"); | ||
addParameter(verb); | ||
} | ||
|
||
if (_isInsecureEnabled) { | ||
addParameter("-k"); | ||
} | ||
|
||
if (_user && _passwd) { | ||
String auth; | ||
auth += _user; | ||
auth += ":"; | ||
auth += _passwd; | ||
|
||
addParameter("-u"); | ||
addParameter(auth); | ||
} | ||
|
||
for (int i = 0; i < _extraHeaderIdx; i++) { | ||
addParameter("-H"); | ||
addParameter(_extraHeaders[i]); | ||
} | ||
|
||
if (data != NULL) { | ||
addParameter("-d"); | ||
addParameter(data); | ||
} | ||
|
||
addParameter(url); | ||
|
||
if (async) { | ||
runAsynchronously(); | ||
} else { | ||
(void) run(); | ||
} | ||
} | ||
|
||
void BridgeHttpClient::clearCachedRespHeaders() { | ||
_cachedRespHeaders = ""; | ||
} |
Oops, something went wrong.