forked from me-no-dev/ESPAsyncWebServer
Add support for http redirection (302) and http not modified (304) to reduce the load the server. server.redirect(“url”, “location”, exclude-ip) will respond with 302 to redirect the browser to a different url, this is useful for backward compatibility and to redirect call to CDN when not no AP mode. server.serveStatic has a new optional parameter to get the Last-Modified date for all files serve for this location, when the browser request have the same If-Modified-Since header value, the server respond with 304 code instead of serving the file.
116 lines
4.0 KiB
C++
116 lines
4.0 KiB
C++
/*
|
|
Asynchronous WebServer library for Espressif MCUs
|
|
|
|
Copyright (c) 2016 Hristo Gochkov. All rights reserved.
|
|
This file is part of the esp8266 core for Arduino environment.
|
|
|
|
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
|
|
*/
|
|
#ifndef ASYNCWEBSERVERHANDLERIMPL_H_
|
|
#define ASYNCWEBSERVERHANDLERIMPL_H_
|
|
|
|
|
|
#include "stddef.h"
|
|
|
|
class RedirectWebHandler: public AsyncWebHandler {
|
|
protected:
|
|
String _url;
|
|
String _location;
|
|
uint32_t _exclude_ip;
|
|
public:
|
|
RedirectWebHandler(const char* url, const char* location, uint32_t exclude_ip)
|
|
: _url(url), _location(location) { _exclude_ip = exclude_ip; }
|
|
bool canHandle(AsyncWebServerRequest *request);
|
|
void handleRequest(AsyncWebServerRequest *request);
|
|
};
|
|
|
|
class AsyncStaticWebHandler: public AsyncWebHandler {
|
|
private:
|
|
String _getPath(AsyncWebServerRequest *request);
|
|
protected:
|
|
FS _fs;
|
|
String _uri;
|
|
String _path;
|
|
String _cache_header;
|
|
String _modified_header;
|
|
bool _isFile;
|
|
public:
|
|
AsyncStaticWebHandler(FS& fs, const char* path, const char* uri, const char* cache_header, const char* modified_header)
|
|
: _fs(fs), _uri(uri), _path(path), _cache_header(cache_header), _modified_header(modified_header) {
|
|
|
|
_isFile = _fs.exists(path) || _fs.exists((String(path)+".gz").c_str());
|
|
if (_uri != "/" && _uri.endsWith("/")) {
|
|
_uri = _uri.substring(0, _uri.length() - 1);
|
|
DEBUGF("[AsyncStaticWebHandler] _uri / removed\n");
|
|
}
|
|
if (_path != "/" && _path.endsWith("/")) {
|
|
_path = _path.substring(0, _path.length() - 1);
|
|
DEBUGF("[AsyncStaticWebHandler] _path / removed\n");
|
|
}
|
|
|
|
|
|
}
|
|
bool canHandle(AsyncWebServerRequest *request);
|
|
void handleRequest(AsyncWebServerRequest *request);
|
|
|
|
};
|
|
|
|
class AsyncCallbackWebHandler: public AsyncWebHandler {
|
|
private:
|
|
protected:
|
|
String _uri;
|
|
WebRequestMethod _method;
|
|
ArRequestHandlerFunction _onRequest;
|
|
ArUploadHandlerFunction _onUpload;
|
|
ArBodyHandlerFunction _onBody;
|
|
public:
|
|
AsyncCallbackWebHandler() : _uri(), _method(HTTP_ANY), _onRequest(NULL), _onUpload(NULL), _onBody(NULL){}
|
|
void setUri(String uri){ _uri = uri; }
|
|
void setMethod(WebRequestMethod method){ _method = method; }
|
|
void onRequest(ArRequestHandlerFunction fn){ _onRequest = fn; }
|
|
void onUpload(ArUploadHandlerFunction fn){ _onUpload = fn; }
|
|
void onBody(ArBodyHandlerFunction fn){ _onBody = fn; }
|
|
|
|
bool canHandle(AsyncWebServerRequest *request){
|
|
if(!_onRequest)
|
|
return false;
|
|
|
|
if(_method != HTTP_ANY && request->method() != _method)
|
|
return false;
|
|
|
|
if(_uri.length() && (_uri != request->url() && !request->url().startsWith(_uri+"/")))
|
|
return false;
|
|
|
|
request->addInterestingHeader("ANY");
|
|
return true;
|
|
}
|
|
void handleRequest(AsyncWebServerRequest *request){
|
|
if(_onRequest)
|
|
_onRequest(request);
|
|
else
|
|
request->send(500);
|
|
}
|
|
void handleUpload(AsyncWebServerRequest *request, String filename, size_t index, uint8_t *data, size_t len, bool final){
|
|
if(_onUpload)
|
|
_onUpload(request, filename, index, data, len, final);
|
|
}
|
|
void handleBody(AsyncWebServerRequest *request, uint8_t *data, size_t len, size_t index, size_t total){
|
|
if(_onBody)
|
|
_onBody(request, data, len, index, total);
|
|
}
|
|
};
|
|
|
|
#endif /* ASYNCWEBSERVERHANDLERIMPL_H_ */
|