]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Server/src/httprequest.cpp
Se agregan mas cosas nuevas, todavia no compila.
[z.facultad/75.42/plaqui.git] / Server / src / httprequest.cpp
1 // vim: set noexpandtab tabstop=4 shiftwidth=4:
2 //----------------------------------------------------------------------------
3 //                                  PlaQui
4 //----------------------------------------------------------------------------
5 // This file is part of PlaQui.
6 //
7 // PlaQui is free software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the Free Software
9 // Foundation; either version 2 of the License, or (at your option) any later
10 // version.
11 //
12 // PlaQui is distributed in the hope that it will be useful, but WITHOUT ANY
13 // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 // FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
15 // details.
16 //
17 // You should have received a copy of the GNU General Public License along
18 // with PlaQui; if not, write to the Free Software Foundation, Inc., 59 Temple
19 // Place, Suite 330, Boston, MA  02111-1307  USA
20 //----------------------------------------------------------------------------
21 // Creado:  dom oct 26 22:11:03 ART 2003
22 // Autores: Leandro Lucarella <llucare@fi.uba.ar>
23 //----------------------------------------------------------------------------
24 //
25 // $Id$
26 //
27
28 #include "plaqui/server/httprequest.h"
29 #include "plaqui/server/string.h"
30 #ifdef DEBUG
31 #       include <iostream>
32 #endif // DEBUG
33
34 PlaQui::Server::HTTPRequest::~HTTPRequest(void) {
35 #ifdef DEBUG
36         std::cerr << __FILE__ << ": destructor." << std::endl;
37 #endif // DEBUG
38 }
39
40 PlaQui::Server::HTTPRequest::HTTPRequest(const std::string& version):
41                 PlaQui::Server::HTTPMessage(version) {
42 #ifdef DEBUG
43         std::cerr << __FILE__ << ": http_version = " << http_version << std::endl;
44 #endif // DEBUG
45 }
46
47 /*
48 PlaQui::Server::HTTPRequest::HTTPRequest(const Serializable& body,
49                 const std::string& version):
50                 PlaQui::Server::HTTPMessage(body, version) {
51 #ifdef DEBUG
52         std::cerr << __FILE__ << ": http_version = " << http_version
53                 << " | body = " << body.serialize() << std::endl;
54 #endif // DEBUG
55 }
56
57 PlaQui::Server::HTTPRequest::HTTPRequest(const std::string& uri,
58                 const PlaQui::Server::HTTPRequest::HTTPMethod& method,
59                 std::string& query, std::string& version):
60                 PlaQui::Server::HTTPMessage(body, version) {
61 #ifdef DEBUG
62         std::cerr << __FILE__ << ": http_version = " << http_version
63                 << " | body = " << body.serialize() << std::endl;
64 #endif // DEBUG
65 }
66 */
67
68 std::istream& operator>>(std::istream& is, PlaQui::Server::HTTPRequest& req) {
69 #ifdef DEBUG
70         std::cerr << __FILE__ << ": operator>>()" << std::endl;
71 #endif // DEBUG
72         char buf[BUFSIZ];
73         // Obtengo primera línea (request)
74         is.getline(buf, BUFSIZ);
75 #ifdef DEBUG
76         std::cerr << "Recibiendo linea: " << buf << std::endl;
77 #endif // DEBUG
78         String line = buf;
79         // Si es la primera línea, es el request.
80         if (line.length() < 3) {
81                 // FIXME - poner excepciones lindas.
82                 throw "HTTP/1.1 501 Method Not Implemented";
83         }
84         // Averiguo método.
85         std::string::size_type pos = line.find_first_of(String::SPACE_CHARS);
86         String met = line.substr(0, pos); 
87         if (met.to_upper() == "GET") {
88                 method = GET;
89         } else if (met.to_upper() == "POST") {
90                 method = POST;
91         } else {
92                 // FIXME - poner excepciones lindas.
93                 throw "HTTP/1.1 501 Method Not Implemented";
94         }
95         // Si tiene sólo el método, no es válido.
96         line = line.substr(pos + 1);
97         iine.trim();
98         if (!line.length()) {
99                 // FIXME - poner excepciones lindas.
100                 throw "HTTP/1.1 400 Bad Request";
101         }
102         // Si tiene más espacios, tengo la URI y el protocolo (o un error).
103         pos = line.find_first_of(String::SPACE_CHARS);
104         if (pos != std::string::npos) {
105                 // Si el resto es un protocolo válido, agrego más variables.
106                 String protocol = line.substr(pos + 1);
107                 protocol = protocol.trim();
108                 if (protocol.to_upper() == "HTTP/1.0") {
109                         version = "1.0";
110                 } else if (protocol.to_upper() == "HTTP/1.1") {
111                         version = "1.1";
112                 // Si no es un error.
113                 } else {
114                         // FIXME - poner excepciones lindas.
115                         throw "HTTP/1.1 400 Bad Request";
116                 }
117                 line = line.substr(0, pos);
118         }
119         // Agrego la URI y sus derivados.
120         if (!line.length() || (line[0] != '/')) {
121                         // FIXME || request.find_first_not_of(";/?:@&=+$,")) {
122                 // FIXME - poner excepciones lindas.
123                 throw "HTTP/1.1 400 Bad Request";
124         }
125         // Si tiene un query string.
126         pos = request.find("?");
127         if (pos != std::string::npos) {
128                 query = line.substr(pos + 1);
129         } else {
130                 query  = "";
131         }
132         uri = line.substr(0, pos);
133         // Fin de request, obtengo el mensaje.
134         is >> *(static_cast<HTTPMessage*>(this));
135 }
136
137 std::ostream& operator<<(std::ostream& os, PlaQui::Server::HTTPRequest& req) {
138 #ifdef DEBUG
139         std::cerr << __FILE__ << ": operator<<()" << std::endl;
140 #endif // DEBUG
141         os << method << " " << uri;
142         if (query_string.length()) {
143                 os << "?" << query;
144         }
145         // TODO ver que este bien el \r\l
146         os << " HTTP/" << version << "\r\l" << *(static_cast<HTTPMessage*>(this));
147 }
148