]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_http_client.cpp
Added ability to send and receive a challenge, dont do anything with it yet
[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         in_addr addy1;
160 #ifdef IPV6
161         in6_addr addy2;
162         if ((inet_aton(this->host, &addy1) > 0) || (inet_pton(AF_INET6, this->host, &addy2) > 0))
163 #else
164         if (inet_aton(this->host, &addy1) > 0)
165 #endif
166         {
167                 bool cached;
168                 HTTPResolver* r = new HTTPResolver(this, Server, url.domain, cached, (Module*)Mod);
169                 Instance->AddResolver(r, cached);
170                 return true;
171         }
172         else
173         {
174                 this->Connect(url.domain);
175         }
176         
177         return true;
178 }
179
180 bool HTTPSocket::ParseURL(const std::string &iurl)
181 {
182         url.url = iurl;
183         url.port = 80;
184         url.protocol = "http";
185
186         irc::sepstream tokenizer(iurl, '/');
187         
188         for (int p = 0;; p++)
189         {
190                 std::string part = tokenizer.GetToken();
191                 if (part.empty() && tokenizer.StreamEnd())
192                         break;
193                 
194                 if ((p == 0) && (part[part.length() - 1] == ':'))
195                 {
196                         // Protocol ('http:')
197                         url.protocol = part.substr(0, part.length() - 1);
198                 }
199                 else if ((p == 1) && (part.empty()))
200                 {
201                         continue;
202                 }
203                 else if (url.domain.empty())
204                 {
205                         // Domain part: [user[:pass]@]domain[:port]
206                         std::string::size_type usrpos = part.find('@');
207                         if (usrpos != std::string::npos)
208                         {
209                                 // Have a user (and possibly password) part
210                                 std::string::size_type ppos = part.find(':');
211                                 if ((ppos != std::string::npos) && (ppos < usrpos))
212                                 {
213                                         // Have password too
214                                         url.password = part.substr(ppos + 1, usrpos - ppos - 1);
215                                         url.username = part.substr(0, ppos);
216                                 }
217                                 else
218                                 {
219                                         url.username = part.substr(0, usrpos);
220                                 }
221                                 
222                                 part = part.substr(usrpos + 1);
223                         }
224                         
225                         std::string::size_type popos = part.rfind(':');
226                         if (popos != std::string::npos)
227                         {
228                                 url.port = atoi(part.substr(popos + 1).c_str());
229                                 url.domain = part.substr(0, popos);
230                         }
231                         else
232                         {
233                                 url.domain = part;
234                         }
235                 }
236                 else
237                 {
238                         // Request (part of it)..
239                         url.request.append("/");
240                         url.request.append(part);
241                 }
242         }
243         
244         if (url.request.empty())
245                 url.request = "/";
246
247         if ((url.domain.empty()) || (!url.port) || (url.protocol.empty()))
248         {
249                 Instance->Log(DEFAULT, "Invalid URL (%s): Missing required value", iurl.c_str());
250                 return false;
251         }
252         
253         if (url.protocol != "http")
254         {
255                 Instance->Log(DEFAULT, "Invalid URL (%s): Unsupported protocol '%s'", iurl.c_str(), url.protocol.c_str());
256                 return false;
257         }
258         
259         return true;
260 }
261
262 void HTTPSocket::Connect(const string &ip)
263 {
264         strlcpy(this->IP, ip.c_str(), MAXBUF);
265         
266         if (!this->DoConnect())
267         {
268                 delete this;
269         }
270 }
271
272 bool HTTPSocket::OnConnected()
273 {
274         std::string request = "GET " + url.request + " HTTP/1.1\r\n";
275
276         // Dump headers into the request
277         HeaderMap headers = req.GetHeaders();
278         
279         for (HeaderMap::iterator i = headers.begin(); i != headers.end(); i++)
280                 request += i->first + ": " + i->second + "\r\n";
281
282         // The Host header is required for HTTP 1.1 and isn't known when the request is created; if they didn't overload it
283         // manually, add it here
284         if (headers.find("Host") == headers.end())
285                 request += "Host: " + url.domain + "\r\n"; 
286         
287         request += "\r\n";
288         
289         this->status = HTTP_REQSENT;
290         
291         return this->Write(request);
292 }
293
294 bool HTTPSocket::OnDataReady()
295 {
296         char *data = this->Read();
297
298         if (!data)
299         {
300                 this->Close();
301                 return false;
302         }
303
304         if (this->status < HTTP_DATA)
305         {
306                 std::string line;
307                 std::string::size_type pos;
308
309                 this->buffer += data;
310                 while ((pos = buffer.find("\r\n")) != std::string::npos)
311                 {
312                         line = buffer.substr(0, pos);
313                         buffer = buffer.substr(pos + 2);
314                         if (line.empty())
315                         {
316                                 this->status = HTTP_DATA;
317                                 this->data += this->buffer;
318                                 this->buffer = "";
319                                 break;
320                         }
321 //              while ((line = buffer.sstrstr(data, "\r\n")) != NULL)
322 //              {
323 //                      if (strncmp(data, "\r\n", 2) == 0)
324                         
325                         if (this->status == HTTP_REQSENT)
326                         {
327                                 // HTTP reply (HTTP/1.1 200 msg)
328                                 char const* data = line.c_str();
329                                 data += 9;
330                                 response = new HTTPClientResponse((Module*)Mod, req.GetSource() , url.url, atoi(data), data + 4);
331                                 this->status = HTTP_HEADERS;
332                                 continue;
333                         }
334                         
335                         if ((pos = line.find(':')) != std::string::npos)
336                         {
337
338 //                      char *hdata = strchr(data, ':');
339                         
340 //                      if (!hdata)
341 //                              continue;
342                         
343 //                      *hdata = '\0';
344                         
345 //                      response->AddHeader(data, hdata + 2);
346                                 response->AddHeader(line.substr(0, pos), line.substr(pos + 1));
347                         
348 //                      data = lend + 2;
349                         } else
350                                 continue;
351                 }
352         } else {
353                 this->data += data;
354         }
355         return true;
356 }
357
358 void HTTPSocket::OnClose()
359 {
360         if (data.empty())
361                 return; // notification that request failed?
362
363         response->data = data;
364         response->Send();
365         delete response;
366 }
367
368 class ModuleHTTPClientFactory : public ModuleFactory
369 {
370  public:
371         ModuleHTTPClientFactory()
372         {
373         }
374         
375         ~ModuleHTTPClientFactory()
376         {
377         }
378         
379         Module *CreateModule(InspIRCd* Me)
380         {
381                 return new ModuleHTTPClient(Me);
382         }
383 };
384
385 extern "C" void *init_module(void)
386 {
387         return new ModuleHTTPClientFactory;
388 }