17 #ifndef NURIA_HTTPCLIENT_HPP
18 #define NURIA_HTTPCLIENT_HPP
20 #include "httppostbodyreader.hpp"
21 #include "network_global.hpp"
22 #include <QNetworkCookie>
23 #include <QHostAddress>
31 class HttpClientPrivate;
150 AllVerbs = GET | POST | HEAD | PUT | DELETE
153 Q_DECLARE_FLAGS(HttpVerbs, HttpVerb)
163 HeaderCacheControl = 0,
174 HeaderAcceptEncoding,
175 HeaderAcceptLanguage,
184 HeaderContentEncoding = 2000,
185 HeaderContentLanguage,
186 HeaderContentDisposition,
191 HeaderTransferEncoding,
290 static QByteArray httpStatusCodeName (
int code);
295 static QByteArray httpHeaderName (HttpHeader header);
298 bool isHeaderReady ()
const;
305 bool responseHeaderSent ()
const;
317 bool hasRequestHeader (
const QByteArray &key)
const;
320 bool hasRequestHeader (HttpHeader header)
const;
329 QByteArray requestHeader (
const QByteArray &key)
const;
332 QByteArray requestHeader (HttpHeader header)
const;
340 QList< QByteArray > requestHeaders (
const QByteArray &key)
const;
343 QList< QByteArray > requestHeaders (HttpHeader header)
const;
346 const HeaderMap &requestHeaders ()
const;
349 bool hasResponseHeader (
const QByteArray &key)
const;
352 bool hasResponseHeader (HttpHeader header)
const;
357 const HeaderMap &responseHeaders ()
const;
362 QList< QByteArray > responseHeaders (
const QByteArray &key)
const;
365 QList< QByteArray > responseHeaders (HttpHeader header)
const;
380 bool setResponseHeader (
const QByteArray &key,
const QByteArray &value,
bool append =
false);
383 bool setResponseHeader (HttpHeader header,
const QByteArray &value,
bool append =
false);
389 bool setResponseHeaders (
const HeaderMap &headers);
399 bool pipeToClient (QIODevice *device, qint64 maxlen = -1);
413 bool pipeFromPostBody (QIODevice *device,
bool takeOwnership =
false);
420 qint64 rangeStart ()
const;
427 qint64 rangeEnd ()
const;
433 qint64 contentLength ()
const;
440 bool setRangeStart (qint64 pos);
447 bool setRangeEnd (qint64 pos);
454 bool setContentLength (qint64 length);
461 virtual bool isSequential ()
const;
467 qint64 postBodyLength ()
const;
472 qint64 postBodyTransferred ();
477 QHostAddress localAddress ()
const;
482 quint16 localPort ()
const;
487 QHostAddress peerAddress ()
const;
492 quint16 peerPort ()
const;
498 int responseCode ()
const;
503 void setResponseCode (
int code);
509 bool isConnectionSecure ()
const;
517 typedef QMap< QByteArray, QNetworkCookie >
Cookies;
532 QNetworkCookie cookie (
const QByteArray &name);
539 bool hasCookie (
const QByteArray &name);
549 void setCookie (
const QByteArray &name,
const QByteArray &value,
550 const QDateTime &expires,
bool secure =
false);
566 void setCookie (
const QByteArray &name,
const QByteArray &value,
567 qint64 maxAge = 0,
bool secure =
false);
576 void setCookie (
const QNetworkCookie &cookie);
586 void removeCookie (
const QByteArray &name);
592 bool keepConnectionOpen ()
const;
604 void setKeepConnectionOpen (
bool keepOpen);
615 void setSlotInfo (
const SlotInfo &info);
624 bool hasReadablePostBody ()
const;
651 bool requestCompletelyReceived ()
const;
654 bool requestHasPostBody ()
const;
686 bool redirectClient (
const QString &localPath,
RedirectMode mode = RedirectMode::Keep,
687 int statusCode = 307);
697 bool redirectClient (
const QUrl &remoteUrl,
int statusCode = 307);
704 bool atEnd ()
const override;
721 bool manualInit (
HttpVerb verb,
HttpVersion version,
const QByteArray &path,
const HeaderMap &headers);
724 qint64 bytesAvailable ()
const override;
725 qint64 pos ()
const override;
726 qint64 size ()
const override;
727 bool seek (qint64 pos)
override;
728 bool reset ()
override;
733 void disconnected ();
739 void postBodyComplete ();
752 bool killConnection (
int error,
const QString &cause = QString());
760 bool sendResponseHeader ();
771 void close ()
override;
783 void clientDisconnected ();
786 void pipeToClientReadyRead ();
791 virtual qint64 readData (
char *data, qint64 maxlen);
794 virtual qint64 writeData (
const char *data, qint64 len);
801 bool resolveUrl (
const QUrl &url);
806 bool bufferPostBody (QByteArray &data);
816 bool readRangeRequestHeader ();
824 void readRequestCookies ();
826 bool sendRedirectResponse (
const QByteArray &location,
const QByteArray &display,
int code);
827 void updateRequestedUrl ();
829 void bytesSent (qint64 bytes);
830 void processData (QByteArray &data);
832 bool sendChunkedData (
const QByteArray &data);
833 qint64 parseIntegerHeaderValue (
const QByteArray &value);
834 bool readPostBodyContentLength ();
835 bool send100ContinueIfClientExpectsIt ();
836 bool readAllAvailableHeaderLines (QByteArray &data);
837 bool readFirstLine (
const QByteArray &line);
838 bool readHeader (
const QByteArray &line);
839 bool isReceivedHeaderHttp11Compliant ();
840 bool verifyPostRequestCompliance ();
841 bool verifyCompleteHeader ();
842 bool invokeRequestedPath ();
843 bool readConnectionHeader ();
844 bool closeConnectionIfNoLongerNeeded ();
845 bool postProcessRequestHeader ();
846 bool contentTypeIsMultipart (
const QByteArray &value)
const;
847 bool contentTypeIsUrlEncoded (
const QByteArray &value)
const;
850 qint64 writeDataInternal (QByteArray data);
851 bool sendData (
const QByteArray &data);
852 void closeInternal ();
853 QByteArray filterInit ();
854 QByteArray filterDeinit ();
855 bool filterData (QByteArray &data);
856 bool filterHeaders (HeaderMap &headers);
857 void addFilterNameToHeader (HeaderMap &headers,
const QByteArray &name);
858 void initPath (QByteArray path);
864 bool sendPipeChunkToClient ();
867 HttpClientPrivate *d_ptr;
873 Q_DECLARE_OPERATORS_FOR_FLAGS(Nuria::HttpClient::HttpVerbs)
874 Q_DECLARE_METATYPE(
Nuria::HttpClient::HttpVersion)
875 Q_DECLARE_METATYPE(
Nuria::HttpClient::HttpVerbs)
876 Q_DECLARE_METATYPE(
Nuria::HttpClient::HttpVerb)
877 Q_DECLARE_METATYPE(
Nuria::HttpClient*)
879 #endif // NURIA_HTTPCLIENT_HPP
TransferMode
Definition: httpclient.hpp:197
Http 1.0.
Definition: httpclient.hpp:129
User-Agent, must be present in a HTTP/1.1 session.
Definition: httpclient.hpp:171
HttpVerb
Definition: httpclient.hpp:137
HttpVersion
Definition: httpclient.hpp:127
ConnectionMode
Definition: httpclient.hpp:231
Definition: abstractsessionmanager.hpp:24
QMultiMap< QByteArray, QByteArray > HeaderMap
Definition: httpclient.hpp:270
RedirectMode
Definition: httpclient.hpp:254
HttpHeader
Definition: httpclient.hpp:160
Abstract class for readers of the body of HTTP POST requests.
Definition: httppostbodyreader.hpp:40
Definition: httpnode.hpp:38
Definition: httpclient.hpp:219
StandardFilter
Definition: httpclient.hpp:241
Abstract data transport for HttpClient.
Definition: httptransport.hpp:53
Server for the HyperText Transfer Protocol.
Definition: httpserver.hpp:71
Virtual directory for HttpServer.
Definition: httpnode.hpp:176
A filter can modify a HttpClients outgoing stream.
Definition: httpfilter.hpp:36
QMap< QByteArray, QNetworkCookie > Cookies
Definition: httpclient.hpp:517
The HttpClient class represents a connection to a client.
Definition: httpclient.hpp:118