]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_httpd.cpp
73683640ee2d1b24d5be409d0f9c22d4a64d9a89
[user/henk/code/inspircd.git] / src / modules / m_httpd.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                     E-mail:
7  *              <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *          the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 using namespace std;
18
19 #include <stdio.h>
20 #include "users.h"
21 #include "channels.h"
22 #include "modules.h"
23 #include "inspsocket.h"
24 #include "helperfuncs.h"
25 #include "httpd.h"
26
27 /* $ModDesc: Provides HTTP serving facilities to modules */
28
29 class ModuleHttp;
30
31 static Server *Srv;
32 static ModuleHttp* HttpModule;
33 extern time_t TIME;
34 static bool claimed;
35
36 enum HttpState
37 {
38         HTTP_LISTEN = 0,
39         HTTP_SERVE_WAIT_REQUEST = 1,
40         HTTP_SERVE_SEND_DATA = 2
41 };
42
43 class HttpSocket : public InspSocket
44 {
45         FileReader* index;
46         HttpState InternalState;
47         std::stringstream headers;
48
49  public:
50
51         HttpSocket(std::string host, int port, bool listening, unsigned long maxtime, FileReader* index_page) : InspSocket(host, port, listening, maxtime), index(index_page)
52         {
53                 log(DEBUG,"HttpSocket constructor");
54                 InternalState = HTTP_LISTEN;
55         }
56
57         HttpSocket(int newfd, char* ip, FileReader* ind) : InspSocket(newfd, ip), index(ind)
58         {
59                 InternalState = HTTP_SERVE_WAIT_REQUEST;
60         }
61
62         virtual int OnIncomingConnection(int newsock, char* ip)
63         {
64                 if (InternalState == HTTP_LISTEN)
65                 {
66                         HttpSocket* s = new HttpSocket(newsock, ip, index);
67                         Srv->AddSocket(s);
68                 }
69                 return true;
70         }
71
72         virtual void OnClose()
73         {
74         }
75
76         std::string Response(int response)
77         {
78                 switch (response)
79                 {
80                         case 100:
81                                 return "CONTINUE";
82                         case 101:
83                                 return "SWITCHING PROTOCOLS";
84                         case 200:
85                                 return "OK";
86                         case 201:
87                                 return "CREATED";
88                         case 202:
89                                 return "ACCEPTED";
90                         case 203:
91                                 return "NON-AUTHORITATIVE INFORMATION";
92                         case 204:
93                                 return "NO CONTENT";
94                         case 205:
95                                 return "RESET CONTENT";
96                         case 206:
97                                 return "PARTIAL CONTENT";
98                         case 300:
99                                 return "MULTIPLE CHOICES";
100                         case 301:
101                                 return "MOVED PERMENANTLY";
102                         case 302:
103                                 return "FOUND";
104                         case 303:
105                                 return "SEE OTHER";
106                         case 304:
107                                 return "NOT MODIFIED";
108                         case 305:
109                                 return "USE PROXY";
110                         case 307:
111                                 return "TEMPORARY REDIRECT";
112                         case 400:
113                                 return "BAD REQUEST";
114                         case 401:
115                                 return "UNAUTHORIZED";
116                         case 402:
117                                 return "PAYMENT REQUIRED";
118                         case 403:
119                                 return "FORBIDDEN";
120                         case 404:
121                                 return "NOT FOUND";
122                         case 405:
123                                 return "METHOD NOT ALLOWED";
124                         case 406:
125                                 return "NOT ACCEPTABLE";
126                         case 407:
127                                 return "PROXY AUTHENTICATION REQUIRED";
128                         case 408:
129                                 return "REQUEST TIMEOUT";
130                         case 409:
131                                 return "CONFLICT";
132                         case 410:
133                                 return "GONE";
134                         case 411:
135                                 return "LENGTH REQUIRED";
136                         case 412:
137                                 return "PRECONDITION FAILED";
138                         case 413:
139                                 return "REQUEST ENTITY TOO LARGE";
140                         case 414:
141                                 return "REQUEST-URI TOO LONG";
142                         case 415:
143                                 return "UNSUPPORTED MEDIA TYPE";
144                         case 416:
145                                 return "REQUESTED RANGE NOT SATISFIABLE";
146                         case 417:
147                                 return "EXPECTATION FAILED";
148                         case 500:
149                                 return "INTERNAL SERVER ERROR";
150                         case 501:
151                                 return "NOT IMPLEMENTED";
152                         case 502:
153                                 return "BAD GATEWAY";
154                         case 503:
155                                 return "SERVICE UNAVAILABLE";
156                         case 504:
157                                 return "GATEWAY TIMEOUT";
158                         case 505:
159                                 return "HTTP VERSION NOT SUPPORTED";
160                         default:
161                                 return "WTF";
162                         break;
163                                 
164                 }
165         }
166
167         void SendHeaders(unsigned long size, int response, const std::string &extraheaders)
168         {
169                 struct tm *timeinfo = localtime(&TIME);
170                 this->Write("HTTP/1.1 "+ConvToStr(response)+" "+Response(response)+"\r\nDate: ");
171                 this->Write(asctime(timeinfo));
172                 if (!extraheaders.empty())
173                         this->Write(extraheaders);
174                 this->Write("Server: InspIRCd/m_httpd.so/1.1\r\nContent-Length: "+ConvToStr(size)+
175                                 "\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n");
176         }
177
178         virtual bool OnDataReady()
179         {
180                 char* data = this->Read();
181                 std::string request_type;
182                 std::string uri;
183                 std::string http_version;
184
185                 /* Check that the data read is a valid pointer and it has some content */
186                 if (data && *data)
187                 {
188                         headers << data;
189
190                         if (headers.str().find("\r\n\r\n") != std::string::npos)
191                         {
192                                 /* Headers are complete */
193                                 InternalState = HTTP_SERVE_SEND_DATA;
194
195                                 headers >> request_type;
196                                 headers >> uri;
197                                 headers >> http_version;
198
199                                 if ((http_version != "HTTP/1.1") && (http_version != "HTTP/1.0"))
200                                 {
201                                         SendHeaders(0, 505, "");
202                                 }
203                                 else
204                                 {
205                                         if ((request_type == "GET") && (uri == "/"))
206                                         {
207                                                 SendHeaders(index->ContentSize(), 200, "");
208                                                 this->Write(index->Contents());
209                                         }
210                                         else
211                                         {
212                                                 claimed = false;
213                                                 HTTPRequest httpr(request_type,uri,&headers,this,this->GetIP());
214                                                 Event e((char*)&httpr, (Module*)HttpModule, "httpd_url");
215                                                 e.Send();
216
217                                                 if (!claimed)
218                                                 {
219                                                         SendHeaders(0, 404, "");
220                                                         log(DEBUG,"Page not claimed, 404");
221                                                 }
222                                         }
223                                 }
224
225                                 return false;
226                         }
227                         return true;
228                 }
229                 else
230                 {
231                         /* Bastard client closed the socket on us!
232                          * Oh wait, theyre SUPPOSED to do that!
233                          */
234                         return false;
235                 }
236         }
237
238         void Page(std::stringstream* n, int response, std::string& extraheaders)
239         {
240                 log(DEBUG,"Sending page");
241                 SendHeaders(n->str().length(), response, extraheaders);
242                 this->Write(n->str());
243         }
244 };
245
246 class ModuleHttp : public Module
247 {
248         int port;
249         std::string host;
250         std::string bindip;
251         std::string indexfile;
252
253         FileReader index;
254
255         HttpSocket* http;
256
257  public:
258
259         void ReadConfig()
260         {
261                 ConfigReader c;
262                 this->host = c.ReadValue("http", "host", 0);
263                 this->bindip = c.ReadValue("http", "ip", 0);
264                 this->port = c.ReadInteger("http", "port", 0, true);
265                 this->indexfile = c.ReadValue("http", "index", 0);
266
267                 index.LoadFile(this->indexfile);
268         }
269
270         void CreateListener()
271         {
272                 http = new HttpSocket(this->bindip, this->port, true, 0, &index);
273                 if ((http) && (http->GetState() == I_LISTENING))
274                 {
275                         Srv->AddSocket(http);
276                 }
277         }
278
279         ModuleHttp(Server* Me) : Module::Module(Me)
280         {
281                 Srv = Me;
282                 ReadConfig();
283                 CreateListener();
284         }
285
286         void OnEvent(Event* event)
287         {
288         }
289
290         char* OnRequest(Request* request)
291         {
292                 log(DEBUG,"Got HTTPDocument object");
293                 claimed = true;
294                 HTTPDocument* doc = (HTTPDocument*)request->GetData();
295                 HttpSocket* sock = (HttpSocket*)doc->sock;
296                 sock->Page(doc->GetDocument(), doc->GetResponseCode(), doc->GetExtraHeaders());
297                 return NULL;
298         }
299
300         void Implements(char* List)
301         {
302                 List[I_OnEvent] = List[I_OnRequest] = 1;
303         }
304
305         virtual ~ModuleHttp()
306         {
307                 Srv->DelSocket(http);
308         }
309
310         virtual Version GetVersion()
311         {
312                 return Version(1,0,0,0,VF_STATIC|VF_VENDOR);
313         }
314 };
315
316
317 class ModuleHttpFactory : public ModuleFactory
318 {
319  public:
320         ModuleHttpFactory()
321         {
322         }
323         
324         ~ModuleHttpFactory()
325         {
326         }
327         
328         virtual Module * CreateModule(Server* Me)
329         {
330                 HttpModule = new ModuleHttp(Me);
331                 return HttpModule;
332         }
333 };
334
335
336 extern "C" void * init_module( void )
337 {
338         return new ModuleHttpFactory;
339 }