1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2007 InspIRCd Development Team
6 * See: http://www.inspircd.org/wiki/index.php/Credits
8 * This program is free but copyrighted software; see
9 * the file COPYING for details.
11 * ---------------------------------------------------
15 #include "httpclient.h"
17 /* $ModDesc: HTTP client service provider */
23 std::string protocol, username, password, domain, request;
27 class HTTPSocket : public InspSocket
31 class ModuleHTTPClient *Mod;
32 HTTPClientRequest req;
33 HTTPClientResponse *response;
35 enum { HTTP_CLOSED, HTTP_REQSENT, HTTP_HEADERS, HTTP_DATA } status;
40 HTTPSocket(InspIRCd *Instance, class ModuleHTTPClient *Mod);
41 virtual ~HTTPSocket();
42 virtual bool DoRequest(HTTPClientRequest *req);
43 virtual bool ParseURL(const std::string &url);
44 virtual void Connect(const std::string &ip);
45 virtual bool OnConnected();
46 virtual bool OnDataReady();
47 virtual void OnClose();
50 class HTTPResolver : public Resolver
55 HTTPResolver(HTTPSocket *socket, InspIRCd *Instance, const string &hostname, bool &cached, Module* me) : Resolver(Instance, hostname, DNS_QUERY_FORWARD, cached, me), socket(socket)
59 void OnLookupComplete(const string &result, unsigned int ttl, bool cached, int resultnum = 0)
62 socket->Connect(result);
65 void OnError(ResolverError e, const string &errmsg)
67 if (ServerInstance->SocketCull.find(socket) == ServerInstance->SocketCull.end())
68 ServerInstance->SocketCull[socket] = socket;
72 typedef vector<HTTPSocket*> HTTPList;
74 class ModuleHTTPClient : public Module
79 ModuleHTTPClient(InspIRCd *Me)
84 virtual ~ModuleHTTPClient()
86 for (HTTPList::iterator i = sockets.begin(); i != sockets.end(); i++)
90 virtual Version GetVersion()
92 return Version(1, 0, 0, 0, VF_SERVICEPROVIDER | VF_VENDOR, API_VERSION);
95 void Implements(char* List)
97 List[I_OnRequest] = 1;
100 char* OnRequest(Request *req)
102 HTTPClientRequest *httpreq = (HTTPClientRequest *)req;
103 if (!strcmp(httpreq->GetId(), HTTP_CLIENT_REQUEST))
105 HTTPSocket *sock = new HTTPSocket(ServerInstance, this);
106 sock->DoRequest(httpreq);
113 HTTPSocket::HTTPSocket(InspIRCd *Instance, ModuleHTTPClient *Mod)
114 : InspSocket(Instance), Server(Instance), Mod(Mod), status(HTTP_CLOSED)
116 this->ClosePending = false;
120 HTTPSocket::~HTTPSocket()
123 for (HTTPList::iterator i = Mod->sockets.begin(); i != Mod->sockets.end(); i++)
127 Mod->sockets.erase(i);
133 bool HTTPSocket::DoRequest(HTTPClientRequest *req)
135 /* Tweak by brain - we take a copy of this,
136 * so that the caller doesnt need to leave
137 * pointers knocking around, less chance of
142 if (!ParseURL(this->req.GetURL()))
145 this->port = url.port;
146 strlcpy(this->host, url.domain.c_str(), MAXBUF);
151 if ((inet_aton(this->host, &addy1) > 0) || (inet_pton(AF_INET6, this->host, &addy2) > 0))
153 if (inet_aton(this->host, &addy1) > 0)
157 HTTPResolver* r = new HTTPResolver(this, Server, url.domain, cached, (Module*)Mod);
158 Instance->AddResolver(r, cached);
163 this->Connect(url.domain);
169 bool HTTPSocket::ParseURL(const std::string &iurl)
173 url.protocol = "http";
175 irc::sepstream tokenizer(iurl, '/');
177 for (int p = 0;; p++)
180 if (!tokenizer.GetToken(part))
183 if ((p == 0) && (part[part.length() - 1] == ':'))
185 // Protocol ('http:')
186 url.protocol = part.substr(0, part.length() - 1);
188 else if ((p == 1) && (part.empty()))
192 else if (url.domain.empty())
194 // Domain part: [user[:pass]@]domain[:port]
195 std::string::size_type usrpos = part.find('@');
196 if (usrpos != std::string::npos)
198 // Have a user (and possibly password) part
199 std::string::size_type ppos = part.find(':');
200 if ((ppos != std::string::npos) && (ppos < usrpos))
203 url.password = part.substr(ppos + 1, usrpos - ppos - 1);
204 url.username = part.substr(0, ppos);
208 url.username = part.substr(0, usrpos);
211 part = part.substr(usrpos + 1);
214 std::string::size_type popos = part.rfind(':');
215 if (popos != std::string::npos)
217 url.port = atoi(part.substr(popos + 1).c_str());
218 url.domain = part.substr(0, popos);
227 // Request (part of it)..
228 url.request.append("/");
229 url.request.append(part);
233 if (url.request.empty())
236 if ((url.domain.empty()) || (!url.port) || (url.protocol.empty()))
238 Instance->Log(DEFAULT, "Invalid URL (%s): Missing required value", iurl.c_str());
242 if (url.protocol != "http")
244 Instance->Log(DEFAULT, "Invalid URL (%s): Unsupported protocol '%s'", iurl.c_str(), url.protocol.c_str());
251 void HTTPSocket::Connect(const string &ip)
253 strlcpy(this->IP, ip.c_str(), MAXBUF);
255 if (!this->DoConnect())
261 bool HTTPSocket::OnConnected()
263 std::string request = "GET " + url.request + " HTTP/1.1\r\n";
265 // Dump headers into the request
266 HeaderMap headers = req.GetHeaders();
268 for (HeaderMap::iterator i = headers.begin(); i != headers.end(); i++)
269 request += i->first + ": " + i->second + "\r\n";
271 // The Host header is required for HTTP 1.1 and isn't known when the request is created; if they didn't overload it
272 // manually, add it here
273 if (headers.find("Host") == headers.end())
274 request += "Host: " + url.domain + "\r\n";
278 this->status = HTTP_REQSENT;
280 return this->Write(request);
283 bool HTTPSocket::OnDataReady()
285 char *data = this->Read();
293 if (this->status < HTTP_DATA)
296 std::string::size_type pos;
298 this->buffer += data;
299 while ((pos = buffer.find("\r\n")) != std::string::npos)
301 line = buffer.substr(0, pos);
302 buffer = buffer.substr(pos + 2);
305 this->status = HTTP_DATA;
306 this->data += this->buffer;
307 this->buffer.clear();
311 if (this->status == HTTP_REQSENT)
313 // HTTP reply (HTTP/1.1 200 msg)
314 char const* data = line.c_str();
316 response = new HTTPClientResponse((Module*)Mod, req.GetSource() , url.url, atoi(data), data + 4);
317 this->status = HTTP_HEADERS;
321 if ((pos = line.find(':')) != std::string::npos)
323 response->AddHeader(line.substr(0, pos), line.substr(pos + 1));
338 void HTTPSocket::OnClose()
341 return; // notification that request failed?
343 response->data = data;
348 MODULE_INIT(ModuleHTTPClient)