]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Server/src/request.cpp
Se termina de migrar lo que habia hecho al nuevo modelo cliente-servidor, pero
[z.facultad/75.42/plaqui.git] / Server / src / request.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 19 16:41:15 ART 2003
22 // Autores: Leandro Lucarella <llucare@fi.uba.ar>
23 //----------------------------------------------------------------------------
24 //
25 // $Id$
26 //
27
28 #include "plaqui/server/request.h"
29 #include "plaqui/server/string.h"
30 #include <sstream>
31 #include <cctype>
32 #include <algorithm>
33 #ifdef DEBUG
34 #       include <iostream>
35 #endif // DEBUG
36
37 const std::string
38 PlaQui::Server::Request::CHARS_DIGIT = "0123456789";
39
40 const std::string
41 PlaQui::Server::Request::CHARS_LOWALPHA = "abcdefghijklmnopqrstuvwxyz";
42
43 const std::string
44 PlaQui::Server::Request::CHARS_UPALPHA = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
45
46 const std::string
47 PlaQui::Server::Request::CHARS_ALPHA = CHARS_LOWALPHA + CHARS_UPALPHA;
48
49 const std::string
50 PlaQui::Server::Request::CHARS_ALPHANUM = CHARS_DIGIT + CHARS_ALPHA;
51
52 const std::string
53 PlaQui::Server::Request::CHARS_RESERVED = ";/?:@&=+$,";
54
55 const std::string
56 PlaQui::Server::Request::CHARS_MARK = "-_.!~*'()";
57
58 const std::string
59 PlaQui::Server::Request::CHARS_UNRESERVED = CHARS_ALPHANUM + CHARS_MARK;
60
61 const std::string
62 PlaQui::Server::Request::CHARS_HEX = CHARS_DIGIT + std::string("abcdefABCDEF");
63
64 void PlaQui::Server::Request::set_request(const std::string& req,
65                 const std::string& host, unsigned port) {
66 #ifdef DEBUG
67         std::cerr << __FILE__ << ": req = " << req << " | host = " << host
68                 << " | port = " << port << std::endl;
69 #endif // DEBUG
70         PlaQui::Server::String request(req);
71         (*this)["REMOTE_HOST"] = host;
72         std::stringstream ss;
73         ss << port;
74         (*this)["REMOTE_PORT"] = ss.str();
75         // Parseo el GET de forma rudimentaria.
76         if (request.length() < 3) {
77                 // FIXME - poner excepciones lindas.
78                 throw "HTTP/1.1 501 Method Not Implemented";
79         }
80         // Averiguo método.
81         std::string::size_type pos = request.find_first_of(
82                         PlaQui::Server::String::SPACE_CHARS);
83         PlaQui::Server::String method = request.substr(0, pos); 
84         if ((method.to_upper() == "GET") || (method.to_upper() == "POST")) {
85                 (*this)["REQUEST_METHOD"] = method;
86         } else {
87                 // FIXME - poner excepciones lindas.
88                 throw "HTTP/1.1 501 Method Not Implemented";
89         }
90         // Si tiene sólo el método, no es válido.
91         request = request.substr(pos + 1);
92         request.trim();
93         if (!request.length()) {
94                 // FIXME - poner excepciones lindas.
95                 throw "HTTP/1.1 400 Bad Request";
96         }
97         // Si tiene más espacios, tengo la URI y el protocolo (o un error).
98         pos = request.find_first_of(PlaQui::Server::String::SPACE_CHARS);
99         if (pos != std::string::npos) {
100                 // Si el resto es un protocolo válido, agrego más variables.
101                 PlaQui::Server::String protocol = request.substr(pos + 1);
102                 protocol = protocol.trim();
103                 if ((PlaQui::Server::String(protocol).to_upper() == "HTTP/1.0")
104                                 || (PlaQui::Server::String(protocol).to_upper() == "HTTP/1.1")) {
105                         (*this)["SERVER_PROTOCOL"] = protocol;
106                 // Si no es un error.
107                 } else {
108                         // FIXME - poner excepciones lindas.
109                         throw "HTTP/1.1 400 Bad Request";
110                 }
111                 request = request.substr(0, pos);
112         }
113         // Agrego la URI y sus derivados.
114         if (!request.length() || (request[0] != '/')) {
115                         // FIXME || request.find_first_not_of(";/?:@&=+$,")) {
116                 // FIXME - poner excepciones lindas.
117                 throw "HTTP/1.1 400 Bad Request";
118         }
119         (*this)["REQUEST_URI"] = request;
120         // Si tiene un query string.
121         pos = request.find("?");
122         if (pos != std::string::npos) {
123                 (*this)["QUERY_STRING"] = request.substr(pos + 1);
124         // No tiene query string.
125         } else {
126                 (*this)["QUERY_STRING"] = "";
127         }
128         (*this)["SCRIPT_NAME"] = request.substr(0, pos);
129 }
130
131 void PlaQui::Server::Request::parse_header(const std::string& header) {
132 #ifdef DEBUG
133         std::cerr << __FILE__ << ": header = " << header << std::endl;
134 #endif // DEBUG
135         
136 }
137