]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_httpd.cpp
Move static map of extensions into ServerInstance, add const-correctness
[user/henk/code/inspircd.git] / src / modules / m_httpd.cpp
index f85046fd75713dfcd32696695f0658b4d998b1f9..88b635f6f3008e08a959fec93554e6b38500aabc 100644 (file)
@@ -2,8 +2,8 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
@@ -37,6 +37,7 @@ class HttpServerSocket : public BufferedSocket
 {
        FileReader* index;
        HttpState InternalState;
+       std::string ip;
 
        HTTPHeaders headers;
        std::string reqbuffer;
@@ -48,7 +49,8 @@ class HttpServerSocket : public BufferedSocket
 
  public:
 
-       HttpServerSocket(InspIRCd* SI, int newfd, char* ip, FileReader* ind) : BufferedSocket(SI, newfd, ip), index(ind), postsize(0)
+       HttpServerSocket(int newfd, const char* IP, FileReader* ind)
+               : BufferedSocket(newfd), index(ind), ip(IP), postsize(0)
        {
                InternalState = HTTP_SERVE_WAIT_REQUEST;
        }
@@ -62,7 +64,7 @@ class HttpServerSocket : public BufferedSocket
        {
        }
 
-       virtual void OnClose()
+       virtual void OnError(BufferedSocketError)
        {
        }
 
@@ -164,15 +166,15 @@ class HttpServerSocket : public BufferedSocket
                                   "<small>Powered by <a href='http://www.inspircd.org'>InspIRCd</a></small></body></html>";
 
                SendHeaders(data.length(), response, empty);
-               this->Write(data);
+               WriteData(data);
        }
 
        void SendHeaders(unsigned long size, int response, HTTPHeaders &rheaders)
        {
 
-               this->Write(http_version + " "+ConvToStr(response)+" "+Response(response)+"\r\n");
+               WriteData(http_version + " "+ConvToStr(response)+" "+Response(response)+"\r\n");
 
-               time_t local = this->ServerInstance->Time();
+               time_t local = ServerInstance->Time();
                struct tm *timeinfo = gmtime(&local);
                char *date = asctime(timeinfo);
                date[strlen(date) - 1] = '\0';
@@ -191,40 +193,32 @@ class HttpServerSocket : public BufferedSocket
                 */
                rheaders.SetHeader("Connection", "Close");
 
-               this->Write(rheaders.GetFormattedHeaders());
-               this->Write("\r\n");
+               WriteData(rheaders.GetFormattedHeaders());
+               WriteData("\r\n");
        }
 
-       virtual bool OnDataReady()
+       void OnDataReady()
        {
-               const char* data = this->Read();
-
-               /* Check that the data read is a valid pointer and it has some content */
-               if (!data || !*data)
-                       return false;
-
                if (InternalState == HTTP_SERVE_RECV_POSTDATA)
                {
-                       postdata.append(data);
+                       postdata.append(recvq);
                        if (postdata.length() >= postsize)
                                ServeData();
                }
                else
                {
-                       reqbuffer.append(data);
+                       reqbuffer.append(recvq);
 
                        if (reqbuffer.length() >= 8192)
                        {
                                ServerInstance->Logs->Log("m_httpd",DEBUG, "m_httpd dropped connection due to an oversized request buffer");
                                reqbuffer.clear();
-                               return false;
+                               SetError("Buffer");
                        }
 
                        if (InternalState == HTTP_SERVE_WAIT_REQUEST)
                                CheckRequestBuffer();
                }
-
-               return true;
        }
 
        void CheckRequestBuffer()
@@ -314,18 +308,17 @@ class HttpServerSocket : public BufferedSocket
                {
                        HTTPHeaders empty;
                        SendHeaders(index->ContentSize(), 200, empty);
-                       this->Write(index->Contents());
+                       WriteData(index->Contents());
                }
                else
                {
                        claimed = false;
-                       HTTPRequest httpr(request_type,uri,&headers,this,this->GetIP(),postdata);
-                       Event acl((char*)&httpr, (Module*)HttpModule, "httpd_acl");
-                       acl.Send(this->ServerInstance);
+                       HTTPRequest acl((Module*)HttpModule, "httpd_acl", request_type, uri, &headers, this, ip, postdata);
+                       acl.Send();
                        if (!claimed)
                        {
-                               Event e((char*)&httpr, (Module*)HttpModule, "httpd_url");
-                               e.Send(this->ServerInstance);
+                               HTTPRequest url((Module*)HttpModule, "httpd_url", request_type, uri, &headers, this, ip, postdata);
+                               url.Send();
                                if (!claimed)
                                {
                                        SendHTTPError(404);
@@ -337,7 +330,7 @@ class HttpServerSocket : public BufferedSocket
        void Page(std::stringstream* n, int response, HTTPHeaders *hheaders)
        {
                SendHeaders(n->str().length(), response, *hheaders);
-               this->Write(n->str());
+               WriteData(n->str());
        }
 };
 
@@ -348,14 +341,18 @@ class HttpListener : public ListenSocketBase
        FileReader* index;
 
  public:
-       HttpListener(InspIRCd* Instance, FileReader *idx, int port, const std::string &addr) : ListenSocketBase(Instance, port, addr)
+       HttpListener(FileReader *idx, int port, const std::string &addr)
+               : ListenSocketBase(port, addr, "httpd", "plaintext")
        {
                this->index = idx;
        }
 
-       virtual void OnAcceptReady(const std::string &ipconnectedto, int nfd, const std::string &incomingip)
+       virtual void OnAcceptReady(int nfd)
        {
-               new HttpServerSocket(ServerInstance, nfd, (char *)incomingip.c_str(), index); // ugly cast courtesy of bufferedsocket
+               int port;
+               std::string incomingip;
+               irc::sockets::satoap(&client, incomingip, port);
+               new HttpServerSocket(nfd, incomingip.c_str(), index);
        }
 };
 
@@ -373,7 +370,7 @@ class ModuleHttpServer : public Module
                std::string indexfile;
                FileReader* index;
                HttpListener *http;
-               ConfigReader c(ServerInstance);
+               ConfigReader c;
 
                httpsocks.clear(); // XXX this will BREAK if this module is made rehashable
                httplisteners.clear();
@@ -384,29 +381,26 @@ class ModuleHttpServer : public Module
                        bindip = c.ReadValue("http", "ip", i);
                        port = c.ReadInteger("http", "port", i, true);
                        indexfile = c.ReadValue("http", "index", i);
-                       index = new FileReader(ServerInstance, indexfile);
+                       index = new FileReader(indexfile);
                        if (!index->Exists())
                                throw ModuleException("Can't read index file: "+indexfile);
-                       http = new HttpListener(ServerInstance, index, port, (char *)bindip.c_str()); // XXX this cast SUCKS.
+                       http = new HttpListener(index, port, bindip);
                        httplisteners.push_back(http);
                }
        }
 
-       ModuleHttpServer(InspIRCd* Me) : Module(Me)
-       {
+       ModuleHttpServer()      {
                ReadConfig();
                HttpModule = this;
-               Implementation eventlist[] = { I_OnRequest };
-               ServerInstance->Modules->Attach(eventlist, this, 1);
        }
 
-       virtual const char* OnRequest(Request* request)
+       void OnRequest(Request& request)
        {
+               if (strcmp(request.id, "HTTP-DOC") != 0)
+                       return;
+               HTTPDocumentResponse& resp = static_cast<HTTPDocumentResponse&>(request);
                claimed = true;
-               HTTPDocument* doc = (HTTPDocument*)request->GetData();
-               HttpServerSocket* sock = (HttpServerSocket*)doc->sock;
-               sock->Page(doc->GetDocument(), doc->GetResponseCode(), &doc->headers);
-               return NULL;
+               resp.src.sock->Page(resp.document, resp.responsecode, &resp.headers);
        }
 
 
@@ -423,12 +417,11 @@ class ModuleHttpServer : public Module
                        httpsocks[i]->Close();
                        delete httpsocks[i]->GetIndex();
                }
-               ServerInstance->BufferedSocketCull();
        }
 
        virtual Version GetVersion()
        {
-               return Version("$Id$", VF_VENDOR | VF_SERVICEPROVIDER, API_VERSION);
+               return Version("Provides HTTP serving facilities to modules", VF_VENDOR | VF_SERVICEPROVIDER, API_VERSION);
        }
 };