#ifndef PLAQUI_HTTPREQUEST_H
#define PLAQUI_HTTPREQUEST_H
-#include "httpmessage.h"
+#include "plaqui/server/httperror.h"
+#include "plaqui/server/httpmessage.h"
#include <string>
+#include <istream>
+#include <ostream>
namespace PlaQui {
// Atributos.
- protected:
+ protected: // TODO hacer privados con get() y set() ???
+
+ public:
/// Método HTTP.
+ /// @todo TODO - convertirlo a string? Hace todo más fácil (y más ineficiente :)
HTTPMethod method;
/// URI.
HTTPRequest(const std::string& uri = "/",
const HTTPMethod& method = GET,
const std::string& query = "",
+ const std::string& body = "",
const std::string& version = "1.1");
+ /**
+ * Obtiene el método como un string.
+ */
+ std::string method_str(void) const;
+
/**
* Obtiene los datos del pedido HTTP desde un texto.
*/
- friend std::istream& operator>>(std::istream& is, HTTPRequest& req);
+ friend std::istream& operator>>(std::istream& is, HTTPRequest& req)
+ throw(HTTPError, std::ios::failure);
/**
* Convierte el pedido HTTP en texto.