/usr/include/Wt/Http/Client is in libwt-dev 3.3.3+dfsg-4.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 | // This may look like C code, but it's really -*- C++ -*-
/*
* Copyright (C) 2009 Emweb bvba, Kessel-Lo, Belgium.
*
* See the LICENSE file for terms of use.
*/
#ifndef WT_HTTP_CLIENT_H_
#define WT_HTTP_CLIENT_H_
#include <Wt/WFlags>
#include <Wt/WObject>
#include <Wt/WSignal>
#include <Wt/Http/Message>
#include <Wt/Http/Method>
#include <boost/system/error_code.hpp>
#include <string>
namespace Wt {
class WIOService;
/*! \brief Namespace for \ref http handling
*/
namespace Http {
/*! \defgroup http HTTP protocol (Wt::Http)
* \brief Classes that handle the HTTP protocol.
*
* The %Wt::%Http namespace contains classes that deal with the HTTP
* protocol. This can be split in two groups:
* - classes involved which deal with the server-side aspects of %Wt through WResource:
* - Request: a resource request
* - Response: a resource response
* - ResponseContinuation: an asynchronous response continuation object
* - UploadedFile: a file uploaded in the Request
*
* - classes that implement an HTTP client:
* - Client: an HTTP client
* - Message: a message to be sent with the client, or received from the client.
*/
/*! \class Client Wt/Http/Client Wt/Http/Client
* \brief An HTTP client.
*
* This class implements an HTTP client. It can be used to interact with
* web services using the HTTP protocol.
*
* The client uses asynchronous I/O and only provides an asynchronous
* interface: you cannot actively wait for an operation to complete,
* instead the client will notify you of the result using the done()
* signal.
*
* Because the client uses asynchronous I/O, it does its work within
* the scope of an event-driven thread pool implementation. By
* default, this is the same thread pool that is used by the %Wt
* server, available through WServer::ioService(), but you may also
* use the client by providing it an explicit I/O service to be used.
*
* The client supports the HTTP and HTTPS (if %Wt was built with
* OpenSSL support) protocols, and can be used for GET and POST
* methods. One client can do only one operation at a time.
*
* Usage example:
* \code
* ...
* Http::Client *client = new Http::Client(this);
* client->setTimeout(15);
* client->setMaximumResponseSize(10 * 1024);
* client->done().connect(boost::bind(&MyWidget::handleHttpResponse, this, _1, _2));
* if (client->get("http://www.webtoolkit.eu/wt/blog/feed/"))
* WApplication::instance()->deferRendering();
* } else {
* // in case of an error in the %URL
* }
* }
*
* void handleHttpResponse(boost::system::error_code err, const Http::Message& response)
* {
* WApplication::instance()->resumeRendering();
*
* if (!err && response.status() == 200) {
* ... parse response.body()
* }
* }
* \endcode
*
* The function connected to the done() signal will be run within the
* context of the application that created the client. WServer::post()
* is used for this.
*
* <h3>Basic access authentication</h3>
* When you want to add authentication information in the %URL, this can be done
* as <tt>https://username:password@www.example.com/</tt>. When doing this,
* make sure that the username and password string are URL-encoded
* (\ref Wt::Utils::urlEncode). For example,
* <tt>https://username:pass word@www.example.com/</tt> should be passed as
* <tt>https://username:pass%20word@www.example.com/</tt>.
*
* \ingroup http
*/
class WT_API Client : public WObject
{
public:
/*! \brief Default constructor.
*
* The client uses the I/O service and thread-pool from the current
* WApplication::instance().
*/
Client(WObject *parent = 0);
/*! \brief Constructor.
*
* The client uses the given I/O service and thread-pool, and is
* useful to use the client outside the context of a web
* application.
*/
Client(WIOService& ioService, WObject *parent = 0);
/*! \brief Destructor.
*
* If the client is still busy, the current request is aborted.
*
* \sa abort()
*/
virtual ~Client();
/*! \brief Sets an I/O timeout.
*
* This sets a timeout wiating for I/O operations. The timeout does
* not bound the total timeout, since the timer is reset on each I/O
* progress.
*
* The default timeout is 10 seconds.
*/
void setTimeout(int seconds);
/*! \brief Returns the I/O timeout.
*
* \sa setTimeout()
*/
int timeout() const { return timeout_; }
/*! \brief Sets a maximum response size.
*
* The response is stored in-memory. To avoid a DoS by a malicious
* downstream HTTP server, the response size is bounded by an upper limit.
*
* The limit includes status line, headers and response body.
*
* The default value is 64 kilo bytes.
*/
void setMaximumResponseSize(std::size_t bytes);
/*! \brief Returns the maximum response size.
*
* \sa setMaximumResponseSize()
*/
std::size_t maximumResponseSize() const { return maximumResponseSize_; }
/*! \brief Sets a SSL certificate used for server identity verification.
*
* This setting only affects a https request: it configures a certificate
* file to be used to verify the identity of the server.
*
* \note Certificate verification does not work reliably yet.
*/
void setSslVerifyFile(const std::string& verifyFile);
/*! \brief Sets a path with SSL certificates for server identity verification.
*
* This setting only affects a https request: it configures a
* directory containing certificates to be used to verify the
* identity of the server.
*
* \note Certificate verification does not work reliably yet.
*/
void setSslVerifyPath(const std::string& verifyPath);
/*! \brief Starts a GET request.
*
* The function starts an asynchronous GET request, and returns
* immediately.
*
* The function returns \c true when the GET request has been
* scheduled, and thus done() will be emitted eventually.
*
* The function returns \p false if the client could not schedule
* the request, for example if the \p url is invalid or if the %URL
* scheme is not supported.
*
* \sa request(), done()
*/
bool get(const std::string& url);
/*! \brief Starts a GET request.
*
* The function starts an asynchronous GET request, and returns
* immediately.
*
* The function returns \c true when the GET request has been
* scheduled, and thus done() will be emitted eventually.
*
* The function returns \p false if the client could not schedule
* the request, for example if the \p url is invalid or if the %URL
* scheme is not supported.
*
* This function accepts one or more headers.
*
* \sa request(), done()
*/
bool get(const std::string& url, const std::vector<Message::Header> headers);
/*! \brief Starts a POST request.
*
* The function starts an asynchronous POST request, and returns
* immediately.
*
* The function returns \c true when the POST request has been
* scheduled, and thus done() will be emitted eventually.
*
* The function returns \p false if the client could not schedule
* the request, for example if the \p url is invalid or if the %URL
* scheme is not supported.
*
* \sa request(), done()
*/
bool post(const std::string& url, const Message& message);
/*! \brief Starts a PUT request.
*
* The function starts an asynchronous PUT request, and returns
* immediately.
*
* The function returns \c true when the PUT request has been
* scheduled, and thus done() will be emitted eventually.
*
* The function returns \p false if the client could not schedule
* the request, for example if the \p url is invalid or if the %URL
* scheme is not supported.
*
* \sa request(), done()
*/
bool put(const std::string& url, const Message& message);
/*! \brief Starts a DELETE request.
*
* The function starts an asynchronous DELETE request, and returns
* immediately.
*
* The function returns \c true when the DELETE request has been
* scheduled, and thus done() will be emitted eventually.
*
* The function returns \p false if the client could not schedule
* the request, for example if the \p url is invalid or if the %URL
* scheme is not supported.
*
* \sa request(), done()
*/
bool deleteRequest(const std::string& url, const Message& message);
/*! \brief Starts a request.
*
* The function starts an asynchronous HTTP request, and returns
* immediately.
*
* The function returns \c true when the request has been scheduled,
* and thus done() will be emitted eventually.
*
* The function returns \p false if the client could not schedule
* the request, for example if the \p url is invalid or if the %URL
* scheme is not supported.
*
* \sa request(), done()
*/
bool request(Http::Method method, const std::string& url,
const Message& message);
/*! \brief Aborts the curent request.
*
* If the client is currently busy, this cancels the pending request.
* done() will be emitted with an error_code. (FIXME: which one ?)
*/
void abort();
/*! \brief %Signal that is emitted when the current request is done.
*
* The \p error is 0 if the HTTP request was successful. Then, the
* \p message contains the result.
*
* If the \p error is not 0, then an error message is given by
* <tt>err.message()</tt>.
*
* Typical code to process the result is:
* \code
* void handle(boost::system::error_code err, const Http::Message& response)
* {
* if (!err) {
* if (response.status() == 200) {
* ... success
* }
* } else {
* Wt::log("error") << "Http::Client error: " << err.message();
* }
* }
* \endcode
*/
Signal<boost::system::error_code, Message>& done() { return done_; }
/*! \brief Utility class representing an %URL.
*/
struct URL {
//! The protocol (e.g. "http")
std::string protocol;
//! Authentication
std::string auth;
//! The host (e.g. "www.webtoolkit.eu")
std::string host;
//! The port number (e.g. 80)
int port;
//! The path (e.g. "/wt")
std::string path;
};
/*! \brief Utility method to parse a %URL.
*
* This parses a %URL into an URL object.
*
* The method returns true if the %URL could be parsed successfully.
*/
static bool parseUrl(const std::string &url, URL &parsedUrl);
/*! \brief Returns whether the client will follow redirects.
*
* \sa setFollowRedirect
*/
bool followRedirect() const;
/*! \brief Set whether the client will follow redirects.
*
* If set and the request method is GET, redirects are automatically
* followed.
*/
void setFollowRedirect(bool followRedirect);
/*! \brief Returns the maximum number of redirects that are followed when followRedirect() is enabled.
*
* \sa setMaxRedirects
*/
int maxRedirects() const;
/*! \brief Set the maximum number of redirects to follow when followRedirect() is enabled.
*
* This defaults to 20.
*/
void setMaxRedirects(int maxRedirects);
private:
WIOService *ioService_;
class Impl;
boost::shared_ptr<Impl> impl_;
int timeout_;
std::size_t maximumResponseSize_;
std::string verifyFile_, verifyPath_;
Signal<boost::system::error_code, Message> done_;
bool followRedirect_;
int redirectCount_;
int maxRedirects_;
class TcpImpl;
class SslImpl;
void handleRedirect(Http::Method method, boost::system::error_code err, const Message& response);
void emitDone(boost::system::error_code err, const Message& response);
};
}
}
#endif // WT_HTTP_CLIENT_H_
|