diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-09-13 22:38:03 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-09-13 22:38:03 +0000 |
commit | f54aa39428e7100a331a1364664262f8b36d7082 (patch) | |
tree | a0bbf4b0b1589f4dbe7608c9ebbfb3dcc815cd7d /src/modules/m_httpd.cpp | |
parent | b4a34260192496f1adbf042575dbd13d28079129 (diff) |
Beginnings of postdata stuff
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5240 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_httpd.cpp')
-rw-r--r-- | src/modules/m_httpd.cpp | 59 |
1 files changed, 36 insertions, 23 deletions
diff --git a/src/modules/m_httpd.cpp b/src/modules/m_httpd.cpp index b1dc7b610..fab4e19dd 100644 --- a/src/modules/m_httpd.cpp +++ b/src/modules/m_httpd.cpp @@ -21,7 +21,6 @@ using namespace std; #include "channels.h" #include "modules.h" #include "inspsocket.h" - #include "inspircd.h" #include "httpd.h" @@ -29,8 +28,6 @@ using namespace std; class ModuleHttp; - - static ModuleHttp* HttpModule; static bool claimed; @@ -38,7 +35,8 @@ enum HttpState { HTTP_LISTEN = 0, HTTP_SERVE_WAIT_REQUEST = 1, - HTTP_SERVE_SEND_DATA = 2 + HTTP_SERVE_RECV_POSTDATA = 2, + HTTP_SERVE_SEND_DATA = 3 }; class HttpSocket : public InspSocket @@ -46,6 +44,10 @@ class HttpSocket : public InspSocket FileReader* index; HttpState InternalState; std::stringstream headers; + std::string postdata; + std::string request_type; + std::string uri; + std::string http_version; public: @@ -186,9 +188,6 @@ class HttpSocket : public InspSocket virtual bool OnDataReady() { char* data = this->Read(); - std::string request_type; - std::string uri; - std::string http_version; /* Check that the data read is a valid pointer and it has some content */ if (data && *data) @@ -197,35 +196,49 @@ class HttpSocket : public InspSocket if (headers.str().find("\r\n\r\n") != std::string::npos) { - /* Headers are complete */ - InternalState = HTTP_SERVE_SEND_DATA; - headers >> request_type; headers >> uri; headers >> http_version; - if ((http_version != "HTTP/1.1") && (http_version != "HTTP/1.0")) + if ((InternalState == HTTP_SERVE_WAIT_REQUEST) && (request_type == "POST")) + { + /* Do we need to fetch postdata? */ + postdata = ""; + InternalState = HTTP_SERVE_RECV_POSTDATA; + /* TODO: Get content length and store */ + } + else if (InternalState == HTTP_SERVE_RECV_POSTDATA) { - SendHeaders(0, 505, ""); + /* Add postdata, once we have it all, send the event */ } else { - if ((request_type == "GET") && (uri == "/")) + /* Headers are complete */ + InternalState = HTTP_SERVE_SEND_DATA; + + if ((http_version != "HTTP/1.1") && (http_version != "HTTP/1.0")) { - SendHeaders(index->ContentSize(), 200, ""); - this->Write(index->Contents()); + SendHeaders(0, 505, ""); } else { - claimed = false; - HTTPRequest httpr(request_type,uri,&headers,this,this->GetIP()); - Event e((char*)&httpr, (Module*)HttpModule, "httpd_url"); - e.Send(this->Instance); - - if (!claimed) + if ((request_type == "GET") && (uri == "/")) { - SendHeaders(0, 404, ""); - Instance->Log(DEBUG,"Page not claimed, 404"); + SendHeaders(index->ContentSize(), 200, ""); + this->Write(index->Contents()); + } + else + { + claimed = false; + HTTPRequest httpr(request_type,uri,&headers,this,this->GetIP(),postdata); + Event e((char*)&httpr, (Module*)HttpModule, "httpd_url"); + e.Send(this->Instance); + + if (!claimed) + { + SendHeaders(0, 404, ""); + Instance->Log(DEBUG,"Page not claimed, 404"); + } } } } |