]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_httpd.cpp
3d47ed0427969e84364be7d6d3a0ddca145e2459
[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, 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                 this->Write(extraheaders);
173                 this->Write("Server: InspIRCd/m_httpd.so/1.1\r\nContent-Length: "+ConvToStr(size)+
174                                 "\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n");
175         }
176
177         virtual bool OnDataReady()
178         {
179                 char* data = this->Read();
180                 std::string request_type;
181                 std::string uri;
182                 std::string http_version;
183
184                 /* Check that the data read is a valid pointer and it has some content */
185                 if (data && *data)
186                 {
187                         headers << data;
188
189                         if (headers.str().find("\r\n\r\n") != std::string::npos)
190                         {
191                                 /* Headers are complete */
192                                 InternalState = HTTP_SERVE_SEND_DATA;
193
194                                 headers >> request_type;
195                                 headers >> uri;
196                                 headers >> http_version;
197
198                                 if ((http_version != "HTTP/1.1") && (http_version != "HTTP/1.0"))
199                                 {
200                                         SendHeaders(0, 505);
201                                 }
202                                 else
203                                 {
204                                         if ((request_type == "GET") && (uri == "/"))
205                                         {
206                                                 SendHeaders(index->ContentSize(), 200, "");
207                                                 this->Write(index->Contents());
208                                         }
209                                         else
210                                         {
211                                                 claimed = false;
212                                                 HTTPRequest httpr(request_type,uri,&headers,this,this->GetIP());
213                                                 Event e((char*)&httpr, (Module*)HttpModule, "httpd_url");
214                                                 e.Send();
215
216                                                 if (!claimed)
217                                                 {
218                                                         SendHeaders(0, 404, "");
219                                                         log(DEBUG,"Page not claimed, 404");
220                                                 }
221                                         }
222                                 }
223
224                                 return false;
225                         }
226                         return true;
227                 }
228                 else
229                 {
230                         /* Bastard client closed the socket on us!
231                          * Oh wait, theyre SUPPOSED to do that!
232                          */
233                         return false;
234                 }
235         }
236
237         void Page(std::stringstream* n, int response, std::string& extraheaders)
238         {
239                 log(DEBUG,"Sending page");
240                 SendHeaders(n->str().length(), response, extraheaders);
241                 this->Write(n->str());
242         }
243 };
244
245 class ModuleHttp : public Module
246 {
247         int port;
248         std::string host;
249         std::string bindip;
250         std::string indexfile;
251
252         FileReader index;
253
254         HttpSocket* http;
255
256  public:
257
258         void ReadConfig()
259         {
260                 ConfigReader c;
261                 this->host = c.ReadValue("http", "host", 0);
262                 this->bindip = c.ReadValue("http", "ip", 0);
263                 this->port = c.ReadInteger("http", "port", 0, true);
264                 this->indexfile = c.ReadValue("http", "index", 0);
265
266                 index.LoadFile(this->indexfile);
267         }
268
269         void CreateListener()
270         {
271                 http = new HttpSocket(this->bindip, this->port, true, 0, &index);
272                 if ((http) && (http->GetState() == I_LISTENING))
273                 {
274                         Srv->AddSocket(http);
275                 }
276         }
277
278         ModuleHttp(Server* Me) : Module::Module(Me)
279         {
280                 Srv = Me;
281                 ReadConfig();
282                 CreateListener();
283         }
284
285         void OnEvent(Event* event)
286         {
287         }
288
289         char* OnRequest(Request* request)
290         {
291                 log(DEBUG,"Got HTTPDocument object");
292                 claimed = true;
293                 HTTPDocument* doc = (HTTPDocument*)request->GetData();
294                 HttpSocket* sock = (HttpSocket*)doc->sock;
295                 sock->Page(doc->GetDocument(), doc->GetResponseCode(), doc->GetExtraHeaders());
296                 return NULL;
297         }
298
299         void Implements(char* List)
300         {
301                 List[I_OnEvent] = List[I_OnRequest] = 1;
302         }
303
304         virtual ~ModuleHttp()
305         {
306                 Srv->DelSocket(http);
307         }
308
309         virtual Version GetVersion()
310         {
311                 return Version(1,0,0,0,VF_STATIC|VF_VENDOR);
312         }
313 };
314
315
316 class ModuleHttpFactory : public ModuleFactory
317 {
318  public:
319         ModuleHttpFactory()
320         {
321         }
322         
323         ~ModuleHttpFactory()
324         {
325         }
326         
327         virtual Module * CreateModule(Server* Me)
328         {
329                 HttpModule = new ModuleHttp(Me);
330                 return HttpModule;
331         }
332 };
333
334
335 extern "C" void * init_module( void )
336 {
337         return new ModuleHttpFactory;
338 }