mirror of
https://github.com/esp8266/Arduino.git
synced 2025-09-06 19:08:12 +03:00
* Cleanup base64::encode functions The implementation choice here using libb64 is generally good as it is a relatively fast implementation, however the adaptation to use PROGMEM for the translation function was a bad choice, as reading randomly PROGMEM with byte-wide access is very very very slow. Doing a naive if-snake is between 20% and 55% faster and uses less flash (about 120 bytes less) and also for reasons I don't understand 8 bytes less data RAM (maybe the removal of static?). In addition the base64::encode function was allocating for larger input a huge amount of memory (twice the total size). we can reduce that by doing a chunk-wise conversation to base64. * Create authorisation base64 encoded string without newlines Rather than first creating a string with newlines and then stripping it away in the fast path of constructing the query, we can call the right method and trust that the result does not have newlines anymore.
1488 lines
40 KiB
C++
1488 lines
40 KiB
C++
/**
|
|
* ESP8266HTTPClient.cpp
|
|
*
|
|
* Created on: 02.11.2015
|
|
*
|
|
* Copyright (c) 2015 Markus Sattler. All rights reserved.
|
|
* This file is part of the ESP8266HTTPClient for Arduino.
|
|
*
|
|
* 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 <Arduino.h>
|
|
|
|
#include "ESP8266HTTPClient.h"
|
|
|
|
#if HTTPCLIENT_1_1_COMPATIBLE
|
|
#include <ESP8266WiFi.h>
|
|
#include <WiFiClientSecureAxTLS.h>
|
|
#endif
|
|
|
|
#include <StreamString.h>
|
|
#include <base64.h>
|
|
|
|
#if HTTPCLIENT_1_1_COMPATIBLE
|
|
class TransportTraits
|
|
{
|
|
public:
|
|
virtual ~TransportTraits()
|
|
{
|
|
}
|
|
|
|
virtual std::unique_ptr<WiFiClient> create()
|
|
{
|
|
return std::unique_ptr<WiFiClient>(new WiFiClient());
|
|
}
|
|
|
|
virtual bool verify(WiFiClient& client, const char* host)
|
|
{
|
|
(void)client;
|
|
(void)host;
|
|
return true;
|
|
}
|
|
};
|
|
|
|
class TLSTraits : public TransportTraits
|
|
{
|
|
public:
|
|
TLSTraits(const String& fingerprint) :
|
|
_fingerprint(fingerprint)
|
|
{
|
|
}
|
|
|
|
std::unique_ptr<WiFiClient> create() override
|
|
{
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
return std::unique_ptr<WiFiClient>(new axTLS::WiFiClientSecure());
|
|
#pragma GCC diagnostic pop
|
|
}
|
|
|
|
bool verify(WiFiClient& client, const char* host) override
|
|
{
|
|
auto wcs = static_cast<axTLS::WiFiClientSecure&>(client);
|
|
return wcs.verify(_fingerprint.c_str(), host);
|
|
}
|
|
|
|
protected:
|
|
String _fingerprint;
|
|
};
|
|
|
|
class BearSSLTraits : public TransportTraits
|
|
{
|
|
public:
|
|
BearSSLTraits(const uint8_t fingerprint[20])
|
|
{
|
|
memcpy(_fingerprint, fingerprint, sizeof(_fingerprint));
|
|
}
|
|
|
|
std::unique_ptr<WiFiClient> create() override
|
|
{
|
|
BearSSL::WiFiClientSecure *client = new BearSSL::WiFiClientSecure();
|
|
client->setFingerprint(_fingerprint);
|
|
return std::unique_ptr<WiFiClient>(client);
|
|
}
|
|
|
|
bool verify(WiFiClient& client, const char* host) override
|
|
{
|
|
// No-op. BearSSL will not connect if the fingerprint doesn't match.
|
|
// So if you get to here you've already connected and it matched
|
|
(void) client;
|
|
(void) host;
|
|
return true;
|
|
}
|
|
|
|
protected:
|
|
uint8_t _fingerprint[20];
|
|
};
|
|
#endif // HTTPCLIENT_1_1_COMPATIBLE
|
|
|
|
/**
|
|
* constructor
|
|
*/
|
|
HTTPClient::HTTPClient()
|
|
: _client(nullptr), _userAgent(F("ESP8266HTTPClient"))
|
|
{
|
|
#if HTTPCLIENT_1_1_COMPATIBLE
|
|
_tcpDeprecated.reset(nullptr);
|
|
#endif
|
|
}
|
|
|
|
/**
|
|
* destructor
|
|
*/
|
|
HTTPClient::~HTTPClient()
|
|
{
|
|
if(_client) {
|
|
_client->stop();
|
|
}
|
|
if(_currentHeaders) {
|
|
delete[] _currentHeaders;
|
|
}
|
|
}
|
|
|
|
void HTTPClient::clear()
|
|
{
|
|
_returnCode = 0;
|
|
_size = -1;
|
|
_headers = "";
|
|
_payload.reset();
|
|
_location = "";
|
|
}
|
|
|
|
|
|
/**
|
|
* parsing the url for all needed parameters
|
|
* @param client Client&
|
|
* @param url String
|
|
* @param https bool
|
|
* @return success bool
|
|
*/
|
|
bool HTTPClient::begin(WiFiClient &client, const String& url) {
|
|
#if HTTPCLIENT_1_1_COMPATIBLE
|
|
if(_tcpDeprecated) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] mix up of new and deprecated api\n");
|
|
_canReuse = false;
|
|
end();
|
|
}
|
|
#endif
|
|
|
|
_client = &client;
|
|
|
|
// check for : (http: or https:)
|
|
int index = url.indexOf(':');
|
|
if(index < 0) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] failed to parse protocol\n");
|
|
return false;
|
|
}
|
|
|
|
String protocol = url.substring(0, index);
|
|
if(protocol != "http" && protocol != "https") {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] unknown protocol '%s'\n", protocol.c_str());
|
|
return false;
|
|
}
|
|
|
|
_port = (protocol == "https" ? 443 : 80);
|
|
return beginInternal(url, protocol.c_str());
|
|
}
|
|
|
|
|
|
/**
|
|
* directly supply all needed parameters
|
|
* @param client Client&
|
|
* @param host String
|
|
* @param port uint16_t
|
|
* @param uri String
|
|
* @param https bool
|
|
* @return success bool
|
|
*/
|
|
bool HTTPClient::begin(WiFiClient &client, const String& host, uint16_t port, const String& uri, bool https)
|
|
{
|
|
#if HTTPCLIENT_1_1_COMPATIBLE
|
|
if(_tcpDeprecated) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] mix up of new and deprecated api\n");
|
|
_canReuse = false;
|
|
end();
|
|
}
|
|
#endif
|
|
|
|
_client = &client;
|
|
|
|
clear();
|
|
_host = host;
|
|
_port = port;
|
|
_uri = uri;
|
|
_protocol = (https ? "https" : "http");
|
|
return true;
|
|
}
|
|
|
|
|
|
#if HTTPCLIENT_1_1_COMPATIBLE
|
|
bool HTTPClient::begin(String url, String httpsFingerprint)
|
|
{
|
|
if(_client && !_tcpDeprecated) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] mix up of new and deprecated api\n");
|
|
_canReuse = false;
|
|
end();
|
|
}
|
|
|
|
if (httpsFingerprint.length() == 0) {
|
|
return false;
|
|
}
|
|
if (!beginInternal(url, "https")) {
|
|
return false;
|
|
}
|
|
_transportTraits = TransportTraitsPtr(new TLSTraits(httpsFingerprint));
|
|
if(!_transportTraits) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] could not create transport traits\n");
|
|
return false;
|
|
}
|
|
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] httpsFingerprint: %s\n", httpsFingerprint.c_str());
|
|
return true;
|
|
}
|
|
|
|
|
|
bool HTTPClient::begin(String url, const uint8_t httpsFingerprint[20])
|
|
{
|
|
if(_client && !_tcpDeprecated) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] mix up of new and deprecated api\n");
|
|
_canReuse = false;
|
|
end();
|
|
}
|
|
|
|
if (!beginInternal(url, "https")) {
|
|
return false;
|
|
}
|
|
_transportTraits = TransportTraitsPtr(new BearSSLTraits(httpsFingerprint));
|
|
if(!_transportTraits) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] could not create transport traits\n");
|
|
return false;
|
|
}
|
|
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] BearSSL-httpsFingerprint:");
|
|
for (size_t i=0; i < 20; i++) {
|
|
DEBUG_HTTPCLIENT(" %02x", httpsFingerprint[i]);
|
|
}
|
|
DEBUG_HTTPCLIENT("\n");
|
|
return true;
|
|
}
|
|
|
|
|
|
/**
|
|
* parsing the url for all needed parameters
|
|
* @param url String
|
|
*/
|
|
bool HTTPClient::begin(String url)
|
|
{
|
|
if(_client && !_tcpDeprecated) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] mix up of new and deprecated api\n");
|
|
_canReuse = false;
|
|
end();
|
|
}
|
|
|
|
if (!beginInternal(url, "http")) {
|
|
return false;
|
|
}
|
|
_transportTraits = TransportTraitsPtr(new TransportTraits());
|
|
return true;
|
|
}
|
|
#endif // HTTPCLIENT_1_1_COMPATIBLE
|
|
|
|
bool HTTPClient::beginInternal(const String& __url, const char* expectedProtocol)
|
|
{
|
|
String url(__url);
|
|
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] url: %s\n", url.c_str());
|
|
clear();
|
|
|
|
// check for : (http: or https:
|
|
int index = url.indexOf(':');
|
|
if(index < 0) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] failed to parse protocol\n");
|
|
return false;
|
|
}
|
|
|
|
_protocol = url.substring(0, index);
|
|
url.remove(0, (index + 3)); // remove http:// or https://
|
|
|
|
if (_protocol == "http") {
|
|
// set default port for 'http'
|
|
_port = 80;
|
|
} else if (_protocol == "https") {
|
|
// set default port for 'https'
|
|
_port = 443;
|
|
} else {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] unsupported protocol: %s\n", _protocol.c_str());
|
|
return false;
|
|
}
|
|
|
|
index = url.indexOf('/');
|
|
String host = url.substring(0, index);
|
|
url.remove(0, index); // remove host part
|
|
|
|
// get Authorization
|
|
index = host.indexOf('@');
|
|
if(index >= 0) {
|
|
// auth info
|
|
String auth = host.substring(0, index);
|
|
host.remove(0, index + 1); // remove auth part including @
|
|
_base64Authorization = base64::encode(auth, false /* doNewLines */);
|
|
}
|
|
|
|
// get port
|
|
index = host.indexOf(':');
|
|
if(index >= 0) {
|
|
_host = host.substring(0, index); // hostname
|
|
host.remove(0, (index + 1)); // remove hostname + :
|
|
_port = host.toInt(); // get port
|
|
} else {
|
|
_host = host;
|
|
}
|
|
_uri = url;
|
|
|
|
if ( expectedProtocol != nullptr && _protocol != expectedProtocol) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] unexpected protocol: %s, expected %s\n", _protocol.c_str(), expectedProtocol);
|
|
return false;
|
|
}
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] host: %s port: %d url: %s\n", _host.c_str(), _port, _uri.c_str());
|
|
return true;
|
|
}
|
|
|
|
#if HTTPCLIENT_1_1_COMPATIBLE
|
|
bool HTTPClient::begin(String host, uint16_t port, String uri)
|
|
{
|
|
if(_client && !_tcpDeprecated) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] mix up of new and deprecated api\n");
|
|
_canReuse = false;
|
|
end();
|
|
}
|
|
|
|
clear();
|
|
_host = host;
|
|
_port = port;
|
|
_uri = uri;
|
|
_transportTraits = TransportTraitsPtr(new TransportTraits());
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] host: %s port: %d uri: %s\n", host.c_str(), port, uri.c_str());
|
|
return true;
|
|
}
|
|
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
bool HTTPClient::begin(String host, uint16_t port, String uri, bool https, String httpsFingerprint)
|
|
{
|
|
if (https) {
|
|
return begin(host, port, uri, httpsFingerprint);
|
|
} else {
|
|
return begin(host, port, uri);
|
|
}
|
|
}
|
|
#pragma GCC diagnostic pop
|
|
|
|
bool HTTPClient::begin(String host, uint16_t port, String uri, String httpsFingerprint)
|
|
{
|
|
if(_client && !_tcpDeprecated) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] mix up of new and deprecated api\n");
|
|
_canReuse = false;
|
|
end();
|
|
}
|
|
|
|
clear();
|
|
_host = host;
|
|
_port = port;
|
|
_uri = uri;
|
|
|
|
if (httpsFingerprint.length() == 0) {
|
|
return false;
|
|
}
|
|
_transportTraits = TransportTraitsPtr(new TLSTraits(httpsFingerprint));
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] host: %s port: %d url: %s httpsFingerprint: %s\n", host.c_str(), port, uri.c_str(), httpsFingerprint.c_str());
|
|
return true;
|
|
}
|
|
|
|
bool HTTPClient::begin(String host, uint16_t port, String uri, const uint8_t httpsFingerprint[20])
|
|
{
|
|
if(_client && !_tcpDeprecated) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] mix up of new and deprecated api\n");
|
|
_canReuse = false;
|
|
end();
|
|
}
|
|
|
|
clear();
|
|
_host = host;
|
|
_port = port;
|
|
_uri = uri;
|
|
|
|
_transportTraits = TransportTraitsPtr(new BearSSLTraits(httpsFingerprint));
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][begin] host: %s port: %d url: %s BearSSL-httpsFingerprint:", host.c_str(), port, uri.c_str());
|
|
for (size_t i=0; i < 20; i++) {
|
|
DEBUG_HTTPCLIENT(" %02x", httpsFingerprint[i]);
|
|
}
|
|
DEBUG_HTTPCLIENT("\n");
|
|
return true;
|
|
}
|
|
#endif // HTTPCLIENT_1_1_COMPATIBLE
|
|
|
|
/**
|
|
* end
|
|
* called after the payload is handled
|
|
*/
|
|
void HTTPClient::end(void)
|
|
{
|
|
disconnect(false);
|
|
clear();
|
|
_redirectCount = 0;
|
|
}
|
|
|
|
/**
|
|
* disconnect
|
|
* close the TCP socket
|
|
*/
|
|
void HTTPClient::disconnect(bool preserveClient)
|
|
{
|
|
if(connected()) {
|
|
if(_client->available() > 0) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][end] still data in buffer (%d), clean up.\n", _client->available());
|
|
while(_client->available() > 0) {
|
|
_client->read();
|
|
}
|
|
}
|
|
|
|
if(_reuse && _canReuse) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][end] tcp keep open for reuse\n");
|
|
} else {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][end] tcp stop\n");
|
|
if(_client) {
|
|
_client->stop();
|
|
if (!preserveClient) {
|
|
_client = nullptr;
|
|
}
|
|
}
|
|
#if HTTPCLIENT_1_1_COMPATIBLE
|
|
if(_tcpDeprecated) {
|
|
_transportTraits.reset(nullptr);
|
|
_tcpDeprecated.reset(nullptr);
|
|
}
|
|
#endif
|
|
}
|
|
} else {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][end] tcp is closed\n");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* connected
|
|
* @return connected status
|
|
*/
|
|
bool HTTPClient::connected()
|
|
{
|
|
if(_client) {
|
|
return (_client->connected() || (_client->available() > 0));
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* try to reuse the connection to the server
|
|
* keep-alive
|
|
* @param reuse bool
|
|
*/
|
|
void HTTPClient::setReuse(bool reuse)
|
|
{
|
|
_reuse = reuse;
|
|
}
|
|
|
|
/**
|
|
* set User Agent
|
|
* @param userAgent const char *
|
|
*/
|
|
void HTTPClient::setUserAgent(const String& userAgent)
|
|
{
|
|
_userAgent = userAgent;
|
|
}
|
|
|
|
/**
|
|
* set the Authorizatio for the http request
|
|
* @param user const char *
|
|
* @param password const char *
|
|
*/
|
|
void HTTPClient::setAuthorization(const char * user, const char * password)
|
|
{
|
|
if(user && password) {
|
|
String auth = user;
|
|
auth += ':';
|
|
auth += password;
|
|
_base64Authorization = base64::encode(auth, false /* doNewLines */);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* set the Authorizatio for the http request
|
|
* @param auth const char * base64
|
|
*/
|
|
void HTTPClient::setAuthorization(const char * auth)
|
|
{
|
|
if(auth) {
|
|
_base64Authorization = auth;
|
|
_base64Authorization.replace(String('\n'), emptyString);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* set the timeout for the TCP connection
|
|
* @param timeout unsigned int
|
|
*/
|
|
void HTTPClient::setTimeout(uint16_t timeout)
|
|
{
|
|
_tcpTimeout = timeout;
|
|
if(connected()) {
|
|
_client->setTimeout(timeout);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* set the URL to a new value. Handy for following redirects.
|
|
* @param url
|
|
*/
|
|
bool HTTPClient::setURL(const String& url)
|
|
{
|
|
// if the new location is only a path then only update the URI
|
|
if (url && url[0] == '/') {
|
|
_uri = url;
|
|
clear();
|
|
return true;
|
|
}
|
|
|
|
if (!url.startsWith(_protocol + ':')) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][setURL] new URL not the same protocol, expected '%s', URL: '%s'\n", _protocol.c_str(), url.c_str());
|
|
return false;
|
|
}
|
|
// disconnect but preserve _client
|
|
disconnect(true);
|
|
clear();
|
|
return beginInternal(url, nullptr);
|
|
}
|
|
|
|
/**
|
|
* set true to follow redirects.
|
|
* @param follow
|
|
*/
|
|
void HTTPClient::setFollowRedirects(bool follow)
|
|
{
|
|
_followRedirects = follow;
|
|
}
|
|
|
|
void HTTPClient::setRedirectLimit(uint16_t limit)
|
|
{
|
|
_redirectLimit = limit;
|
|
}
|
|
|
|
/**
|
|
* use HTTP1.0
|
|
* @param useHTTP10 bool
|
|
*/
|
|
void HTTPClient::useHTTP10(bool useHTTP10)
|
|
{
|
|
_useHTTP10 = useHTTP10;
|
|
_reuse = !useHTTP10;
|
|
}
|
|
|
|
/**
|
|
* send a GET request
|
|
* @return http code
|
|
*/
|
|
int HTTPClient::GET()
|
|
{
|
|
return sendRequest("GET");
|
|
}
|
|
|
|
/**
|
|
* sends a post request to the server
|
|
* @param payload const uint8_t *
|
|
* @param size size_t
|
|
* @return http code
|
|
*/
|
|
int HTTPClient::POST(const uint8_t* payload, size_t size)
|
|
{
|
|
return sendRequest("POST", payload, size);
|
|
}
|
|
|
|
int HTTPClient::POST(const String& payload)
|
|
{
|
|
return POST((uint8_t *) payload.c_str(), payload.length());
|
|
}
|
|
|
|
/**
|
|
* sends a put request to the server
|
|
* @param payload uint8_t *
|
|
* @param size size_t
|
|
* @return http code
|
|
*/
|
|
int HTTPClient::PUT(const uint8_t* payload, size_t size) {
|
|
return sendRequest("PUT", payload, size);
|
|
}
|
|
|
|
int HTTPClient::PUT(const String& payload) {
|
|
return PUT((const uint8_t *) payload.c_str(), payload.length());
|
|
}
|
|
|
|
/**
|
|
* sends a patch request to the server
|
|
* @param payload const uint8_t *
|
|
* @param size size_t
|
|
* @return http code
|
|
*/
|
|
int HTTPClient::PATCH(const uint8_t * payload, size_t size) {
|
|
return sendRequest("PATCH", payload, size);
|
|
}
|
|
|
|
int HTTPClient::PATCH(const String& payload) {
|
|
return PATCH((const uint8_t *) payload.c_str(), payload.length());
|
|
}
|
|
|
|
/**
|
|
* sendRequest
|
|
* @param type const char * "GET", "POST", ....
|
|
* @param payload String data for the message body
|
|
* @return
|
|
*/
|
|
int HTTPClient::sendRequest(const char * type, const String& payload)
|
|
{
|
|
return sendRequest(type, (const uint8_t *) payload.c_str(), payload.length());
|
|
}
|
|
|
|
/**
|
|
* sendRequest
|
|
* @param type const char * "GET", "POST", ....
|
|
* @param payload const uint8_t * data for the message body if null not send
|
|
* @param size size_t size for the message body if 0 not send
|
|
* @return -1 if no info or > 0 when Content-Length is set by server
|
|
*/
|
|
int HTTPClient::sendRequest(const char * type, const uint8_t * payload, size_t size)
|
|
{
|
|
bool redirect = false;
|
|
int code = 0;
|
|
do {
|
|
// wipe out any existing headers from previous request
|
|
for(size_t i = 0; i < _headerKeysCount; i++) {
|
|
if (_currentHeaders[i].value.length() > 0) {
|
|
_currentHeaders[i].value = "";
|
|
}
|
|
}
|
|
|
|
redirect = false;
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] type: '%s' redirCount: %d\n", type, _redirectCount);
|
|
|
|
// connect to server
|
|
if(!connect()) {
|
|
return returnError(HTTPC_ERROR_CONNECTION_REFUSED);
|
|
}
|
|
|
|
addHeader(F("Content-Length"), String(payload && size > 0 ? size : 0));
|
|
|
|
// send Header
|
|
if(!sendHeader(type)) {
|
|
return returnError(HTTPC_ERROR_SEND_HEADER_FAILED);
|
|
}
|
|
|
|
// send Payload if needed
|
|
if(payload && size > 0) {
|
|
if(_client->write(&payload[0], size) != size) {
|
|
return returnError(HTTPC_ERROR_SEND_PAYLOAD_FAILED);
|
|
}
|
|
}
|
|
|
|
// handle Server Response (Header)
|
|
code = handleHeaderResponse();
|
|
|
|
//
|
|
// We can follow redirects for 301/302/307 for GET and HEAD requests and
|
|
// and we have not exceeded the redirect limit preventing an infinite
|
|
// redirect loop.
|
|
//
|
|
// https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
|
|
//
|
|
if (_followRedirects &&
|
|
(_redirectCount < _redirectLimit) &&
|
|
(_location.length() > 0) &&
|
|
(code == 301 || code == 302 || code == 307) &&
|
|
(!strcmp(type, "GET") || !strcmp(type, "HEAD"))
|
|
) {
|
|
_redirectCount += 1; // increment the count for redirect.
|
|
redirect = true;
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] following redirect:: '%s' redirCount: %d\n", _location.c_str(), _redirectCount);
|
|
if (!setURL(_location)) {
|
|
// return the redirect instead of handling on failure of setURL()
|
|
redirect = false;
|
|
}
|
|
}
|
|
|
|
} while (redirect);
|
|
|
|
// handle 303 redirect for non GET/HEAD by changing to GET and requesting new url
|
|
if (_followRedirects &&
|
|
(_redirectCount < _redirectLimit) &&
|
|
(_location.length() > 0) &&
|
|
(code == 303) &&
|
|
strcmp(type, "GET") && strcmp(type, "HEAD")
|
|
) {
|
|
_redirectCount += 1;
|
|
if (setURL(_location)) {
|
|
code = sendRequest("GET");
|
|
}
|
|
}
|
|
|
|
// handle Server Response (Header)
|
|
return returnError(code);
|
|
}
|
|
|
|
/**
|
|
* sendRequest
|
|
* @param type const char * "GET", "POST", ....
|
|
* @param stream Stream * data stream for the message body
|
|
* @param size size_t size for the message body if 0 not Content-Length is send
|
|
* @return -1 if no info or > 0 when Content-Length is set by server
|
|
*/
|
|
int HTTPClient::sendRequest(const char * type, Stream * stream, size_t size)
|
|
{
|
|
|
|
if(!stream) {
|
|
return returnError(HTTPC_ERROR_NO_STREAM);
|
|
}
|
|
|
|
// connect to server
|
|
if(!connect()) {
|
|
return returnError(HTTPC_ERROR_CONNECTION_REFUSED);
|
|
}
|
|
|
|
if(size > 0) {
|
|
addHeader("Content-Length", String(size));
|
|
}
|
|
|
|
// send Header
|
|
if(!sendHeader(type)) {
|
|
return returnError(HTTPC_ERROR_SEND_HEADER_FAILED);
|
|
}
|
|
|
|
int buff_size = HTTP_TCP_BUFFER_SIZE;
|
|
|
|
int len = size;
|
|
int bytesWritten = 0;
|
|
|
|
if(len == 0) {
|
|
len = -1;
|
|
}
|
|
|
|
// if possible create smaller buffer then HTTP_TCP_BUFFER_SIZE
|
|
if((len > 0) && (len < HTTP_TCP_BUFFER_SIZE)) {
|
|
buff_size = len;
|
|
}
|
|
|
|
// create buffer for read
|
|
uint8_t * buff = (uint8_t *) malloc(buff_size);
|
|
|
|
if(buff) {
|
|
// read all data from stream and send it to server
|
|
while(connected() && (stream->available() > 0) && (len > 0 || len == -1)) {
|
|
|
|
// get available data size
|
|
int sizeAvailable = stream->available();
|
|
|
|
if(sizeAvailable) {
|
|
|
|
int readBytes = sizeAvailable;
|
|
|
|
// read only the asked bytes
|
|
if(len > 0 && readBytes > len) {
|
|
readBytes = len;
|
|
}
|
|
|
|
// not read more the buffer can handle
|
|
if(readBytes > buff_size) {
|
|
readBytes = buff_size;
|
|
}
|
|
|
|
// read data
|
|
int bytesRead = stream->readBytes(buff, readBytes);
|
|
|
|
// write it to Stream
|
|
int bytesWrite = _client->write((const uint8_t *) buff, bytesRead);
|
|
bytesWritten += bytesWrite;
|
|
|
|
// are all Bytes a writen to stream ?
|
|
if(bytesWrite != bytesRead) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] short write, asked for %d but got %d retry...\n", bytesRead, bytesWrite);
|
|
|
|
// check for write error
|
|
if(_client->getWriteError()) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] stream write error %d\n", _client->getWriteError());
|
|
|
|
//reset write error for retry
|
|
_client->clearWriteError();
|
|
}
|
|
|
|
// some time for the stream
|
|
delay(1);
|
|
|
|
int leftBytes = (readBytes - bytesWrite);
|
|
|
|
// retry to send the missed bytes
|
|
bytesWrite = _client->write((const uint8_t *) (buff + bytesWrite), leftBytes);
|
|
bytesWritten += bytesWrite;
|
|
|
|
if(bytesWrite != leftBytes) {
|
|
// failed again
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] short write, asked for %d but got %d failed.\n", leftBytes, bytesWrite);
|
|
free(buff);
|
|
return returnError(HTTPC_ERROR_SEND_PAYLOAD_FAILED);
|
|
}
|
|
}
|
|
|
|
// check for write error
|
|
if(_client->getWriteError()) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] stream write error %d\n", _client->getWriteError());
|
|
free(buff);
|
|
return returnError(HTTPC_ERROR_SEND_PAYLOAD_FAILED);
|
|
}
|
|
|
|
// count bytes to read left
|
|
if(len > 0) {
|
|
len -= readBytes;
|
|
}
|
|
|
|
delay(0);
|
|
} else {
|
|
delay(1);
|
|
}
|
|
}
|
|
|
|
free(buff);
|
|
|
|
if(size && (int) size != bytesWritten) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] Stream payload bytesWritten %d and size %zd mismatch!.\n", bytesWritten, size);
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] ERROR SEND PAYLOAD FAILED!");
|
|
return returnError(HTTPC_ERROR_SEND_PAYLOAD_FAILED);
|
|
} else {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] Stream payload written: %d\n", bytesWritten);
|
|
}
|
|
|
|
} else {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][sendRequest] not enough ram! need %d\n", HTTP_TCP_BUFFER_SIZE);
|
|
return returnError(HTTPC_ERROR_TOO_LESS_RAM);
|
|
}
|
|
|
|
// handle Server Response (Header)
|
|
return returnError(handleHeaderResponse());
|
|
}
|
|
|
|
/**
|
|
* size of message body / payload
|
|
* @return -1 if no info or > 0 when Content-Length is set by server
|
|
*/
|
|
int HTTPClient::getSize(void)
|
|
{
|
|
return _size;
|
|
}
|
|
|
|
/**
|
|
* Location if redirect
|
|
*/
|
|
const String& HTTPClient::getLocation(void)
|
|
{
|
|
return _location;
|
|
}
|
|
|
|
/**
|
|
* returns the stream of the tcp connection
|
|
* @return WiFiClient
|
|
*/
|
|
WiFiClient& HTTPClient::getStream(void)
|
|
{
|
|
if(connected()) {
|
|
return *_client;
|
|
}
|
|
|
|
DEBUG_HTTPCLIENT("[HTTP-Client] getStream: not connected\n");
|
|
static WiFiClient empty;
|
|
return empty;
|
|
}
|
|
|
|
/**
|
|
* returns the stream of the tcp connection
|
|
* @return WiFiClient *
|
|
*/
|
|
WiFiClient* HTTPClient::getStreamPtr(void)
|
|
{
|
|
if(connected()) {
|
|
return _client;
|
|
}
|
|
|
|
DEBUG_HTTPCLIENT("[HTTP-Client] getStreamPtr: not connected\n");
|
|
return nullptr;
|
|
}
|
|
|
|
/**
|
|
* write all message body / payload to Stream
|
|
* @param stream Stream *
|
|
* @return bytes written ( negative values are error codes )
|
|
*/
|
|
int HTTPClient::writeToStream(Stream * stream)
|
|
{
|
|
|
|
if(!stream) {
|
|
return returnError(HTTPC_ERROR_NO_STREAM);
|
|
}
|
|
|
|
if(!connected()) {
|
|
return returnError(HTTPC_ERROR_NOT_CONNECTED);
|
|
}
|
|
|
|
// get length of document (is -1 when Server sends no Content-Length header)
|
|
int len = _size;
|
|
int ret = 0;
|
|
|
|
if(_transferEncoding == HTTPC_TE_IDENTITY) {
|
|
ret = writeToStreamDataBlock(stream, len);
|
|
|
|
// have we an error?
|
|
if(ret < 0) {
|
|
return returnError(ret);
|
|
}
|
|
} else if(_transferEncoding == HTTPC_TE_CHUNKED) {
|
|
int size = 0;
|
|
while(1) {
|
|
if(!connected()) {
|
|
return returnError(HTTPC_ERROR_CONNECTION_LOST);
|
|
}
|
|
String chunkHeader = _client->readStringUntil('\n');
|
|
|
|
if(chunkHeader.length() <= 0) {
|
|
return returnError(HTTPC_ERROR_READ_TIMEOUT);
|
|
}
|
|
|
|
chunkHeader.trim(); // remove \r
|
|
|
|
// read size of chunk
|
|
len = (uint32_t) strtol((const char *) chunkHeader.c_str(), NULL, 16);
|
|
size += len;
|
|
DEBUG_HTTPCLIENT("[HTTP-Client] read chunk len: %d\n", len);
|
|
|
|
// data left?
|
|
if(len > 0) {
|
|
int r = writeToStreamDataBlock(stream, len);
|
|
if(r < 0) {
|
|
// error in writeToStreamDataBlock
|
|
return returnError(r);
|
|
}
|
|
ret += r;
|
|
} else {
|
|
|
|
// if no length Header use global chunk size
|
|
if(_size <= 0) {
|
|
_size = size;
|
|
}
|
|
|
|
// check if we have write all data out
|
|
if(ret != _size) {
|
|
return returnError(HTTPC_ERROR_STREAM_WRITE);
|
|
}
|
|
break;
|
|
}
|
|
|
|
// read trailing \r\n at the end of the chunk
|
|
char buf[2];
|
|
auto trailing_seq_len = _client->readBytes((uint8_t*)buf, 2);
|
|
if (trailing_seq_len != 2 || buf[0] != '\r' || buf[1] != '\n') {
|
|
return returnError(HTTPC_ERROR_READ_TIMEOUT);
|
|
}
|
|
|
|
delay(0);
|
|
}
|
|
} else {
|
|
return returnError(HTTPC_ERROR_ENCODING);
|
|
}
|
|
|
|
disconnect(true);
|
|
return ret;
|
|
}
|
|
|
|
/**
|
|
* return all payload as String (may need lot of ram or trigger out of memory!)
|
|
* @return String
|
|
*/
|
|
const String& HTTPClient::getString(void)
|
|
{
|
|
if (_payload) {
|
|
return *_payload;
|
|
}
|
|
|
|
_payload.reset(new StreamString());
|
|
|
|
if(_size > 0) {
|
|
// try to reserve needed memmory
|
|
if(!_payload->reserve((_size + 1))) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][getString] not enough memory to reserve a string! need: %d\n", (_size + 1));
|
|
return *_payload;
|
|
}
|
|
}
|
|
|
|
writeToStream(_payload.get());
|
|
return *_payload;
|
|
}
|
|
|
|
/**
|
|
* converts error code to String
|
|
* @param error int
|
|
* @return String
|
|
*/
|
|
String HTTPClient::errorToString(int error)
|
|
{
|
|
switch(error) {
|
|
case HTTPC_ERROR_CONNECTION_REFUSED:
|
|
return F("connection refused");
|
|
case HTTPC_ERROR_SEND_HEADER_FAILED:
|
|
return F("send header failed");
|
|
case HTTPC_ERROR_SEND_PAYLOAD_FAILED:
|
|
return F("send payload failed");
|
|
case HTTPC_ERROR_NOT_CONNECTED:
|
|
return F("not connected");
|
|
case HTTPC_ERROR_CONNECTION_LOST:
|
|
return F("connection lost");
|
|
case HTTPC_ERROR_NO_STREAM:
|
|
return F("no stream");
|
|
case HTTPC_ERROR_NO_HTTP_SERVER:
|
|
return F("no HTTP server");
|
|
case HTTPC_ERROR_TOO_LESS_RAM:
|
|
return F("not enough ram");
|
|
case HTTPC_ERROR_ENCODING:
|
|
return F("Transfer-Encoding not supported");
|
|
case HTTPC_ERROR_STREAM_WRITE:
|
|
return F("Stream write error");
|
|
case HTTPC_ERROR_READ_TIMEOUT:
|
|
return F("read Timeout");
|
|
default:
|
|
return String();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* adds Header to the request
|
|
* @param name
|
|
* @param value
|
|
* @param first
|
|
*/
|
|
void HTTPClient::addHeader(const String& name, const String& value, bool first, bool replace)
|
|
{
|
|
// not allow set of Header handled by code
|
|
if(!name.equalsIgnoreCase(F("Connection")) &&
|
|
!name.equalsIgnoreCase(F("User-Agent")) &&
|
|
!name.equalsIgnoreCase(F("Host")) &&
|
|
!(name.equalsIgnoreCase(F("Authorization")) && _base64Authorization.length())){
|
|
|
|
String headerLine = name;
|
|
headerLine += ": ";
|
|
|
|
if (replace) {
|
|
int headerStart = _headers.indexOf(headerLine);
|
|
if (headerStart != -1) {
|
|
int headerEnd = _headers.indexOf('\n', headerStart);
|
|
_headers = _headers.substring(0, headerStart) + _headers.substring(headerEnd + 1);
|
|
}
|
|
}
|
|
|
|
headerLine += value;
|
|
headerLine += "\r\n";
|
|
if(first) {
|
|
_headers = headerLine + _headers;
|
|
} else {
|
|
_headers += headerLine;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
void HTTPClient::collectHeaders(const char* headerKeys[], const size_t headerKeysCount)
|
|
{
|
|
_headerKeysCount = headerKeysCount;
|
|
if(_currentHeaders) {
|
|
delete[] _currentHeaders;
|
|
}
|
|
_currentHeaders = new RequestArgument[_headerKeysCount];
|
|
for(size_t i = 0; i < _headerKeysCount; i++) {
|
|
_currentHeaders[i].key = headerKeys[i];
|
|
}
|
|
}
|
|
|
|
String HTTPClient::header(const char* name)
|
|
{
|
|
for(size_t i = 0; i < _headerKeysCount; ++i) {
|
|
if(_currentHeaders[i].key == name) {
|
|
return _currentHeaders[i].value;
|
|
}
|
|
}
|
|
return String();
|
|
}
|
|
|
|
String HTTPClient::header(size_t i)
|
|
{
|
|
if(i < _headerKeysCount) {
|
|
return _currentHeaders[i].value;
|
|
}
|
|
return String();
|
|
}
|
|
|
|
String HTTPClient::headerName(size_t i)
|
|
{
|
|
if(i < _headerKeysCount) {
|
|
return _currentHeaders[i].key;
|
|
}
|
|
return String();
|
|
}
|
|
|
|
int HTTPClient::headers()
|
|
{
|
|
return _headerKeysCount;
|
|
}
|
|
|
|
bool HTTPClient::hasHeader(const char* name)
|
|
{
|
|
for(size_t i = 0; i < _headerKeysCount; ++i) {
|
|
if((_currentHeaders[i].key == name) && (_currentHeaders[i].value.length() > 0)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* init TCP connection and handle ssl verify if needed
|
|
* @return true if connection is ok
|
|
*/
|
|
bool HTTPClient::connect(void)
|
|
{
|
|
if(connected()) {
|
|
if(_reuse) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client] connect: already connected, reusing connection\n");
|
|
} else {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client] connect: already connected, try reuse!\n");
|
|
}
|
|
while(_client->available() > 0) {
|
|
_client->read();
|
|
}
|
|
return true;
|
|
}
|
|
|
|
#if HTTPCLIENT_1_1_COMPATIBLE
|
|
if(!_client && _transportTraits) {
|
|
_tcpDeprecated = _transportTraits->create();
|
|
if(!_tcpDeprecated) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client] connect: could not create tcp\n");
|
|
return false;
|
|
}
|
|
_client = _tcpDeprecated.get();
|
|
}
|
|
#endif
|
|
|
|
if(!_client) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client] connect: HTTPClient::begin was not called or returned error\n");
|
|
return false;
|
|
}
|
|
|
|
_client->setTimeout(_tcpTimeout);
|
|
|
|
if(!_client->connect(_host.c_str(), _port)) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client] failed connect to %s:%u\n", _host.c_str(), _port);
|
|
return false;
|
|
}
|
|
|
|
DEBUG_HTTPCLIENT("[HTTP-Client] connected to %s:%u\n", _host.c_str(), _port);
|
|
|
|
#if HTTPCLIENT_1_1_COMPATIBLE
|
|
if (_tcpDeprecated && !_transportTraits->verify(*_tcpDeprecated, _host.c_str())) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client] transport level verify failed\n");
|
|
_client->stop();
|
|
return false;
|
|
}
|
|
#endif
|
|
|
|
|
|
#ifdef ESP8266
|
|
_client->setNoDelay(true);
|
|
#endif
|
|
return connected();
|
|
}
|
|
|
|
/**
|
|
* sends HTTP request header
|
|
* @param type (GET, POST, ...)
|
|
* @return status
|
|
*/
|
|
bool HTTPClient::sendHeader(const char * type)
|
|
{
|
|
if(!connected()) {
|
|
return false;
|
|
}
|
|
|
|
String header = String(type) + ' ' + (_uri.length() ? _uri : F("/")) + F(" HTTP/1.");
|
|
|
|
if(_useHTTP10) {
|
|
header += '0';
|
|
} else {
|
|
header += '1';
|
|
}
|
|
|
|
header += String(F("\r\nHost: ")) + _host;
|
|
if (_port != 80 && _port != 443)
|
|
{
|
|
header += ':';
|
|
header += String(_port);
|
|
}
|
|
header += String(F("\r\nUser-Agent: ")) + _userAgent +
|
|
F("\r\nConnection: ");
|
|
|
|
if(_reuse) {
|
|
header += F("keep-alive");
|
|
} else {
|
|
header += F("close");
|
|
}
|
|
header += "\r\n";
|
|
|
|
if(!_useHTTP10) {
|
|
header += F("Accept-Encoding: identity;q=1,chunked;q=0.1,*;q=0\r\n");
|
|
}
|
|
|
|
if(_base64Authorization.length()) {
|
|
header += F("Authorization: Basic ");
|
|
header += _base64Authorization;
|
|
header += "\r\n";
|
|
}
|
|
|
|
header += _headers + "\r\n";
|
|
|
|
DEBUG_HTTPCLIENT("[HTTP-Client] sending request header\n-----\n%s-----\n", header.c_str());
|
|
|
|
return (_client->write((const uint8_t *) header.c_str(), header.length()) == header.length());
|
|
}
|
|
|
|
/**
|
|
* reads the response from the server
|
|
* @return int http code
|
|
*/
|
|
int HTTPClient::handleHeaderResponse()
|
|
{
|
|
|
|
if(!connected()) {
|
|
return HTTPC_ERROR_NOT_CONNECTED;
|
|
}
|
|
|
|
clear();
|
|
|
|
_canReuse = _reuse;
|
|
|
|
String transferEncoding;
|
|
|
|
_transferEncoding = HTTPC_TE_IDENTITY;
|
|
unsigned long lastDataTime = millis();
|
|
|
|
while(connected()) {
|
|
size_t len = _client->available();
|
|
if(len > 0) {
|
|
String headerLine = _client->readStringUntil('\n');
|
|
headerLine.trim(); // remove \r
|
|
|
|
lastDataTime = millis();
|
|
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][handleHeaderResponse] RX: '%s'\n", headerLine.c_str());
|
|
|
|
if(headerLine.startsWith("HTTP/1.")) {
|
|
if(_canReuse) {
|
|
_canReuse = (headerLine[sizeof "HTTP/1." - 1] != '0');
|
|
}
|
|
_returnCode = headerLine.substring(9, headerLine.indexOf(' ', 9)).toInt();
|
|
} else if(headerLine.indexOf(':')) {
|
|
String headerName = headerLine.substring(0, headerLine.indexOf(':'));
|
|
String headerValue = headerLine.substring(headerLine.indexOf(':') + 1);
|
|
headerValue.trim();
|
|
|
|
if(headerName.equalsIgnoreCase(F("Content-Length"))) {
|
|
_size = headerValue.toInt();
|
|
}
|
|
|
|
if(_canReuse && headerName.equalsIgnoreCase(F("Connection"))) {
|
|
if(headerValue.indexOf("close") >= 0 && headerValue.indexOf("keep-alive") < 0) {
|
|
_canReuse = false;
|
|
}
|
|
}
|
|
|
|
if(headerName.equalsIgnoreCase(F("Transfer-Encoding"))) {
|
|
transferEncoding = headerValue;
|
|
}
|
|
|
|
if(headerName.equalsIgnoreCase(F("Location"))) {
|
|
_location = headerValue;
|
|
}
|
|
|
|
for(size_t i = 0; i < _headerKeysCount; i++) {
|
|
if(_currentHeaders[i].key.equalsIgnoreCase(headerName)) {
|
|
if (_currentHeaders[i].value != "") {
|
|
// Existing value, append this one with a comma
|
|
_currentHeaders[i].value += ',';
|
|
_currentHeaders[i].value += headerValue;
|
|
} else {
|
|
_currentHeaders[i].value = headerValue;
|
|
}
|
|
break; // We found a match, stop looking
|
|
}
|
|
}
|
|
}
|
|
|
|
if(headerLine == "") {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][handleHeaderResponse] code: %d\n", _returnCode);
|
|
|
|
if(_size > 0) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][handleHeaderResponse] size: %d\n", _size);
|
|
}
|
|
|
|
if(transferEncoding.length() > 0) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][handleHeaderResponse] Transfer-Encoding: %s\n", transferEncoding.c_str());
|
|
if(transferEncoding.equalsIgnoreCase(F("chunked"))) {
|
|
_transferEncoding = HTTPC_TE_CHUNKED;
|
|
} else {
|
|
return HTTPC_ERROR_ENCODING;
|
|
}
|
|
} else {
|
|
_transferEncoding = HTTPC_TE_IDENTITY;
|
|
}
|
|
|
|
if(_returnCode) {
|
|
return _returnCode;
|
|
} else {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][handleHeaderResponse] Remote host is not an HTTP Server!");
|
|
return HTTPC_ERROR_NO_HTTP_SERVER;
|
|
}
|
|
}
|
|
|
|
} else {
|
|
if((millis() - lastDataTime) > _tcpTimeout) {
|
|
return HTTPC_ERROR_READ_TIMEOUT;
|
|
}
|
|
delay(0);
|
|
}
|
|
}
|
|
|
|
return HTTPC_ERROR_CONNECTION_LOST;
|
|
}
|
|
|
|
/**
|
|
* write one Data Block to Stream
|
|
* @param stream Stream *
|
|
* @param size int
|
|
* @return < 0 = error >= 0 = size written
|
|
*/
|
|
int HTTPClient::writeToStreamDataBlock(Stream * stream, int size)
|
|
{
|
|
int buff_size = HTTP_TCP_BUFFER_SIZE;
|
|
int len = size; // left size to read
|
|
int bytesWritten = 0;
|
|
|
|
// if possible create smaller buffer then HTTP_TCP_BUFFER_SIZE
|
|
if((len > 0) && (len < HTTP_TCP_BUFFER_SIZE)) {
|
|
buff_size = len;
|
|
}
|
|
|
|
// create buffer for read
|
|
uint8_t * buff = (uint8_t *) malloc(buff_size);
|
|
|
|
if(!buff) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][writeToStreamDataBlock] not enough ram! need %d\n", HTTP_TCP_BUFFER_SIZE);
|
|
return HTTPC_ERROR_TOO_LESS_RAM;
|
|
}
|
|
|
|
// read all data from server
|
|
while(connected() && (len > 0 || len == -1))
|
|
{
|
|
int readBytes = len;
|
|
|
|
// not read more the buffer can handle
|
|
if(readBytes > buff_size) {
|
|
readBytes = buff_size;
|
|
}
|
|
|
|
// read data
|
|
int bytesRead = _client->readBytes(buff, readBytes);
|
|
if (!bytesRead)
|
|
{
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][writeToStreamDataBlock] input stream timeout\n");
|
|
free(buff);
|
|
return HTTPC_ERROR_READ_TIMEOUT;
|
|
}
|
|
|
|
// write it to Stream
|
|
int bytesWrite = stream->write(buff, bytesRead);
|
|
bytesWritten += bytesWrite;
|
|
|
|
// are all Bytes a writen to stream ?
|
|
if(bytesWrite != bytesRead) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][writeToStream] short write asked for %d but got %d retry...\n", bytesRead, bytesWrite);
|
|
|
|
// check for write error
|
|
if(stream->getWriteError()) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][writeToStreamDataBlock] stream write error %d\n", stream->getWriteError());
|
|
|
|
//reset write error for retry
|
|
stream->clearWriteError();
|
|
}
|
|
|
|
// some time for the stream
|
|
delay(1);
|
|
|
|
int leftBytes = (bytesRead - bytesWrite);
|
|
|
|
// retry to send the missed bytes
|
|
bytesWrite = stream->write((buff + bytesWrite), leftBytes);
|
|
bytesWritten += bytesWrite;
|
|
|
|
if(bytesWrite != leftBytes) {
|
|
// failed again
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][writeToStream] short write asked for %d but got %d failed.\n", leftBytes, bytesWrite);
|
|
free(buff);
|
|
return HTTPC_ERROR_STREAM_WRITE;
|
|
}
|
|
}
|
|
|
|
// check for write error
|
|
if(stream->getWriteError()) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][writeToStreamDataBlock] stream write error %d\n", stream->getWriteError());
|
|
free(buff);
|
|
return HTTPC_ERROR_STREAM_WRITE;
|
|
}
|
|
|
|
// count bytes to read left
|
|
if(len > 0) {
|
|
len -= bytesRead;
|
|
}
|
|
|
|
delay(0);
|
|
}
|
|
|
|
free(buff);
|
|
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][writeToStreamDataBlock] end of chunk or data (transferred: %d).\n", bytesWritten);
|
|
|
|
if((size > 0) && (size != bytesWritten)) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][writeToStreamDataBlock] transferred size %d and request size %d mismatch!.\n", bytesWritten, size);
|
|
return HTTPC_ERROR_STREAM_WRITE;
|
|
}
|
|
|
|
return bytesWritten;
|
|
}
|
|
|
|
/**
|
|
* called to handle error return, may disconnect the connection if still exists
|
|
* @param error
|
|
* @return error
|
|
*/
|
|
int HTTPClient::returnError(int error)
|
|
{
|
|
if(error < 0) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][returnError] error(%d): %s\n", error, errorToString(error).c_str());
|
|
if(connected()) {
|
|
DEBUG_HTTPCLIENT("[HTTP-Client][returnError] tcp stop\n");
|
|
_client->stop();
|
|
}
|
|
}
|
|
return error;
|
|
}
|