/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright (C) 2015 Simon Stürz * * * * This file is part of guh. * * * * Guh is free software: you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation, version 2 of the License. * * * * Guh 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 General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with guh. If not, see . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #ifndef HTTPREQUEST_H #define HTTPREQUEST_H #include #include #include #include namespace guhserver { class HttpRequest { public: enum RequestMethod { Get, Post, Put, Delete, Options, Unhandled }; HttpRequest(); HttpRequest(QByteArray rawData); QByteArray rawHeader() const; QHash rawHeaderList() const; RequestMethod method() const; QString methodString() const; QByteArray httpVersion() const; QUrl url() const; QUrlQuery urlQuery() const; QByteArray payload() const; bool isValid() const; bool isComplete() const; bool hasPayload() const; void appendData(const QByteArray &data); private: QByteArray m_rawData; QByteArray m_rawHeader; QHash m_rawHeaderList; RequestMethod m_method; QString m_methodString; QByteArray m_httpVersion; QUrl m_url; QUrlQuery m_urlQuery; QByteArray m_payload; bool m_valid; bool m_isComplete; void validate(); RequestMethod getRequestMethodType(const QString &methodString); }; QDebug operator<< (QDebug debug, const HttpRequest &httpRequest); } #endif // HTTPREQUEST_H