]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_http_client.cpp
Fixed a bug in m_connflood that caused the bootwait value to have no effect
[user/henk/code/inspircd.git] / src / modules / m_http_client.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 /* Written by Special (john@yarbbles.com) */
18
19 #include "inspircd.h"
20 #include "httpclient.h"
21
22 /* $ModDesc: HTTP client service provider */
23
24 class URL
25 {
26  public:
27         std::string url;
28         std::string protocol, username, password, domain, request;
29         int port;
30 };
31
32 class HTTPSocket : public InspSocket
33 {
34  private:
35         InspIRCd *Server;
36         class ModuleHTTPClient *Mod;
37         HTTPClientRequest req;
38         HTTPClientResponse *response;
39         URL url;
40         enum { HTTP_CLOSED, HTTP_REQSENT, HTTP_HEADERS, HTTP_DATA } status;
41         std::string data;
42         std::string buffer;
43
44  public:
45         HTTPSocket(InspIRCd *Instance, class ModuleHTTPClient *Mod);
46         virtual ~HTTPSocket();
47         virtual bool DoRequest(HTTPClientRequest *req);
48         virtual bool ParseURL(const std::string &url);
49         virtual void Connect(const std::string &ip);
50         virtual bool OnConnected();
51         virtual bool OnDataReady();
52         virtual void OnClose();
53 };
54
55 class HTTPResolver : public Resolver
56 {
57  private:
58         HTTPSocket *socket;
59  public:
60         HTTPResolver(HTTPSocket *socket, InspIRCd *Instance, const string &hostname, bool &cached, Module* me) : Resolver(Instance, hostname, DNS_QUERY_FORWARD, cached, me), socket(socket)
61         {
62                 ServerInstance->Log(DEBUG,"Resolving "+hostname);
63         }
64         
65         void OnLookupComplete(const string &result, unsigned int ttl, bool cached)
66         {
67                 ServerInstance->Log(DEBUG,"Resolver done");
68                 socket->Connect(result);
69         }
70         
71         void OnError(ResolverError e, const string &errmsg)
72         {
73                 ServerInstance->Log(DEBUG,"Resolver error");
74                 delete socket;
75         }
76 };
77
78 typedef vector<HTTPSocket*> HTTPList;
79
80 class ModuleHTTPClient : public Module
81 {
82  public:
83         HTTPList sockets;
84
85         ModuleHTTPClient(InspIRCd *Me)
86                 : Module::Module(Me)
87         {
88         }
89         
90         virtual ~ModuleHTTPClient()
91         {
92                 for (HTTPList::iterator i = sockets.begin(); i != sockets.end(); i++)
93                         delete *i;
94         }
95         
96         virtual Version GetVersion()
97         {
98                 return Version(1, 0, 0, 0, VF_SERVICEPROVIDER | VF_VENDOR, API_VERSION);
99         }
100
101         void Implements(char* List)
102         {
103                 List[I_OnRequest] = 1;
104         }
105
106         char* OnRequest(Request *req)
107         {
108                 HTTPClientRequest *httpreq = (HTTPClientRequest *)req;
109                 if (!strcmp(httpreq->GetId(), HTTP_CLIENT_REQUEST))
110                 {
111                         HTTPSocket *sock = new HTTPSocket(ServerInstance, this);
112                         sock->DoRequest(httpreq);
113                         // No return value
114                 }
115                 return NULL;
116         }
117 };
118
119 HTTPSocket::HTTPSocket(InspIRCd *Instance, ModuleHTTPClient *Mod)
120                 : InspSocket(Instance), Server(Instance), Mod(Mod), status(HTTP_CLOSED)
121 {
122         this->ClosePending = false;
123         this->port = 80;
124 }
125
126 HTTPSocket::~HTTPSocket()
127 {
128         Close();
129         for (HTTPList::iterator i = Mod->sockets.begin(); i != Mod->sockets.end(); i++)
130         {
131                 if (*i == this)
132                 {
133                         Mod->sockets.erase(i);
134                         break;
135                 }
136         }
137 }
138
139 bool HTTPSocket::DoRequest(HTTPClientRequest *req)
140 {
141         /* Tweak by brain - we take a copy of this,
142          * so that the caller doesnt need to leave
143          * pointers knocking around, less chance of
144          * a memory leak.
145          */
146         this->req = *req;
147
148         Instance->Log(DEBUG,"Request in progress");
149
150         if (!ParseURL(this->req.GetURL()))
151         {
152                 Instance->Log(DEBUG,"Parse failed");
153                 return false;
154         }
155         
156         this->port = url.port;
157         strlcpy(this->host, url.domain.c_str(), MAXBUF);
158
159         if (insp_aton(this->host, &this->addy) < 1)
160         {
161                 bool cached;
162                 HTTPResolver* r = new HTTPResolver(this, Server, url.domain, cached, (Module*)Mod);
163                 Instance->AddResolver(r, cached);
164                 return true;
165         }
166         else
167         {
168                 this->Connect(url.domain);
169         }
170         
171         return true;
172 }
173
174 bool HTTPSocket::ParseURL(const std::string &iurl)
175 {
176         url.url = iurl;
177         url.port = 80;
178         url.protocol = "http";
179
180         irc::sepstream tokenizer(iurl, '/');
181         
182         for (int p = 0;; p++)
183         {
184                 std::string part = tokenizer.GetToken();
185                 if (part.empty() && tokenizer.StreamEnd())
186                         break;
187                 
188                 if ((p == 0) && (part[part.length() - 1] == ':'))
189                 {
190                         // Protocol ('http:')
191                         url.protocol = part.substr(0, part.length() - 1);
192                 }
193                 else if ((p == 1) && (part.empty()))
194                 {
195                         continue;
196                 }
197                 else if (url.domain.empty())
198                 {
199                         // Domain part: [user[:pass]@]domain[:port]
200                         std::string::size_type usrpos = part.find('@');
201                         if (usrpos != std::string::npos)
202                         {
203                                 // Have a user (and possibly password) part
204                                 std::string::size_type ppos = part.find(':');
205                                 if ((ppos != std::string::npos) && (ppos < usrpos))
206                                 {
207                                         // Have password too
208                                         url.password = part.substr(ppos + 1, usrpos - ppos - 1);
209                                         url.username = part.substr(0, ppos);
210                                 }
211                                 else
212                                 {
213                                         url.username = part.substr(0, usrpos);
214                                 }
215                                 
216                                 part = part.substr(usrpos + 1);
217                         }
218                         
219                         std::string::size_type popos = part.rfind(':');
220                         if (popos != std::string::npos)
221                         {
222                                 url.port = atoi(part.substr(popos + 1).c_str());
223                                 url.domain = part.substr(0, popos);
224                         }
225                         else
226                         {
227                                 url.domain = part;
228                         }
229                 }
230                 else
231                 {
232                         // Request (part of it)..
233                         url.request.append("/");
234                         url.request.append(part);
235                 }
236         }
237         
238         if (url.request.empty())
239                 url.request = "/";
240
241         if ((url.domain.empty()) || (!url.port) || (url.protocol.empty()))
242         {
243                 Instance->Log(DEFAULT, "Invalid URL (%s): Missing required value", iurl.c_str());
244                 return false;
245         }
246         
247         if (url.protocol != "http")
248         {
249                 Instance->Log(DEFAULT, "Invalid URL (%s): Unsupported protocol '%s'", iurl.c_str(), url.protocol.c_str());
250                 return false;
251         }
252         
253         return true;
254 }
255
256 void HTTPSocket::Connect(const string &ip)
257 {
258         strlcpy(this->IP, ip.c_str(), MAXBUF);
259         
260         if (!this->DoConnect())
261         {
262                 delete this;
263         }
264 }
265
266 bool HTTPSocket::OnConnected()
267 {
268         std::string request = "GET " + url.request + " HTTP/1.1\r\n";
269
270         // Dump headers into the request
271         HeaderMap headers = req.GetHeaders();
272         
273         for (HeaderMap::iterator i = headers.begin(); i != headers.end(); i++)
274                 request += i->first + ": " + i->second + "\r\n";
275
276         // The Host header is required for HTTP 1.1 and isn't known when the request is created; if they didn't overload it
277         // manually, add it here
278         if (headers.find("Host") == headers.end())
279                 request += "Host: " + url.domain + "\r\n"; 
280         
281         request += "\r\n";
282         
283         this->status = HTTP_REQSENT;
284         
285         return this->Write(request);
286 }
287
288 bool HTTPSocket::OnDataReady()
289 {
290         char *data = this->Read();
291
292         if (!data)
293         {
294                 this->Close();
295                 return false;
296         }
297
298         if (this->status < HTTP_DATA)
299         {
300                 std::string line;
301                 std::string::size_type pos;
302
303                 this->buffer += data;
304                 while ((pos = buffer.find("\r\n")) != std::string::npos)
305                 {
306                         line = buffer.substr(0, pos);
307                         buffer = buffer.substr(pos + 2);
308                         if (line.empty())
309                         {
310                                 this->status = HTTP_DATA;
311                                 this->data += this->buffer;
312                                 this->buffer = "";
313                                 break;
314                         }
315 //              while ((line = buffer.sstrstr(data, "\r\n")) != NULL)
316 //              {
317 //                      if (strncmp(data, "\r\n", 2) == 0)
318                         
319                         if (this->status == HTTP_REQSENT)
320                         {
321                                 // HTTP reply (HTTP/1.1 200 msg)
322                                 char const* data = line.c_str();
323                                 data += 9;
324                                 response = new HTTPClientResponse((Module*)Mod, req.GetSource() , url.url, atoi(data), data + 4);
325                                 this->status = HTTP_HEADERS;
326                                 continue;
327                         }
328                         
329                         if ((pos = line.find(':')) != std::string::npos)
330                         {
331
332 //                      char *hdata = strchr(data, ':');
333                         
334 //                      if (!hdata)
335 //                              continue;
336                         
337 //                      *hdata = '\0';
338                         
339 //                      response->AddHeader(data, hdata + 2);
340                                 response->AddHeader(line.substr(0, pos), line.substr(pos + 1));
341                         
342 //                      data = lend + 2;
343                         } else
344                                 continue;
345                 }
346         } else {
347                 this->data += data;
348         }
349         return true;
350 }
351
352 void HTTPSocket::OnClose()
353 {
354         if (data.empty())
355                 return; // notification that request failed?
356
357         response->data = data;
358         response->Send();
359         delete response;
360 }
361
362 class ModuleHTTPClientFactory : public ModuleFactory
363 {
364  public:
365         ModuleHTTPClientFactory()
366         {
367         }
368         
369         ~ModuleHTTPClientFactory()
370         {
371         }
372         
373         Module *CreateModule(InspIRCd* Me)
374         {
375                 return new ModuleHTTPClient(Me);
376         }
377 };
378
379 extern "C" void *init_module(void)
380 {
381         return new ModuleHTTPClientFactory;
382 }