NuriaProject Framework  0.1
The NuriaProject Framework
httpfilter.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_HTTPFILTER_HPP
18 #define NURIA_HTTPFILTER_HPP
19 
20 #include "network_global.hpp"
21 #include "httpclient.hpp"
22 #include <QObject>
23 
24 namespace Nuria {
25 
26 class HttpClient;
27 
36 class NURIA_NETWORK_EXPORT HttpFilter : public QObject {
37  Q_OBJECT
38 public:
39 
41  explicit HttpFilter (QObject *parent = 0);
42 
44  ~HttpFilter () override;
45 
60  virtual QByteArray filterName () const;
61 
72  virtual bool filterHeaders (HttpClient *client, HttpClient::HeaderMap &headers);
73 
79  virtual QByteArray filterBegin (HttpClient *client);
80 
88  virtual bool filterData (HttpClient *client, QByteArray &data);
89 
95  virtual QByteArray filterEnd (HttpClient *client);
96 
97 };
98 
99 }
100 
101 #endif // NURIA_HTTPFILTER_HPP
Definition: abstractsessionmanager.hpp:24
QMultiMap< QByteArray, QByteArray > HeaderMap
Definition: httpclient.hpp:270
A filter can modify a HttpClients outgoing stream.
Definition: httpfilter.hpp:36
The HttpClient class represents a connection to a client.
Definition: httpclient.hpp:118