X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_httpd_stats.cpp;h=d8d71f78dcf7609fbaf9fbf46fe7a5b3b8e30539;hb=8185b9cbe7cb505277d4d775b202892393b61cc0;hp=3d02c68b5f198a2d03325cf2c0b868ca29114669;hpb=5a673b22fc50ccc9a47616c8ba8a7fab8faf1d51;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_httpd_stats.cpp b/src/modules/m_httpd_stats.cpp index 3d02c68b5..d8d71f78d 100644 --- a/src/modules/m_httpd_stats.cpp +++ b/src/modules/m_httpd_stats.cpp @@ -19,45 +19,204 @@ using namespace std; #include #include "users.h" #include "channels.h" +#include "configreader.h" #include "modules.h" #include "inspsocket.h" #include "helperfuncs.h" #include "httpd.h" +#include "inspircd.h" /* $ModDesc: Provides statistics over HTTP via m_httpd.so */ +extern user_hash clientlist; +extern chan_hash chanlist; +extern std::vector all_opers; +extern InspIRCd* ServerInstance; +extern ServerConfig* Config; + +extern int MODCOUNT; + +typedef std::map StatsHash; +typedef StatsHash::iterator StatsIter; + +typedef std::vector > SortedList; +typedef SortedList::iterator SortedIter; + +static StatsHash* sh = new StatsHash(); +static SortedList* so = new SortedList(); + class ModuleHttpStats : public Module { Server* Srv; - std::stringstream data; + std::string stylesheet; + bool changed; + public: void ReadConfig() { + ConfigReader c; + this->stylesheet = c.ReadValue("httpstats", "stylesheet", 0); } ModuleHttpStats(Server* Me) : Module::Module(Me) { Srv = Me; ReadConfig(); + this->changed = false; + } + + void InsertOrder(irc::string channel, int count) + { + /* This function figures out where in the sorted list to put an item from the hash */ + SortedIter a; + for (a = so->begin(); a != so->end(); a++) + { + /* Found an item equal to or less than, we insert our item before it */ + if (a->first <= count) + { + so->insert(a,std::pair(count,channel)); + return; + } + } + /* There are no items in the list yet, insert something at the beginning */ + so->insert(so->begin(), std::pair(count,channel)); + } + + void SortList() + { + /* Sorts the hash into the sorted list using an insertion sort */ + so->clear(); + for (StatsIter a = sh->begin(); a != sh->end(); a++) + { + log(DEBUG, "InsertOrder on %d %s",a->second,a->first.c_str()); + InsertOrder(a->first, a->second); + } + this->changed = false; } void OnEvent(Event* event) { + std::stringstream data(""); + if (event->GetEventID() == "httpd_url") { - log(DEBUG,"HTTP URL!"); + HTTPRequest* http = (HTTPRequest*)event->GetData(); - data.clear(); - data << "

Chickens

"; + if ((http->GetURI() == "/stats") || (http->GetURI() == "/stats/")) + { + log(DEBUG,"HTTP URL!"); - HTTPRequest* http = (HTTPRequest*)event->GetData(); - HTTPDocument response(http->sock, &data, 200); - Request req((char*)&response, (Module*)this, event->GetSource()); - req.Send(); + data << ""; + data << "InspIRCd server statisitics for " << Srv->GetServerName() << " (" << Srv->GetServerDescription() << ")"; + data << ""; + data << "

InspIRCd server statisitics for " << Srv->GetServerName() << " (" << Srv->GetServerDescription() << ")

"; + + data << "
"; + data << "

Totals

"; + data << ""; + data << ""; + data << ""; + data << ""; + data << ""; + data << "
Users" << clientlist.size() << "
Channels" << chanlist.size() << "
Opers" << all_opers.size() << "
Sockets" << (ServerInstance->SE->GetMaxFds() - ServerInstance->SE->GetRemainingFds()) << " (Max: " << ServerInstance->SE->GetMaxFds() << " via socket engine '" << ServerInstance->SE->GetName() << "')
"; + data << "
"; + + data << "
"; + data << "

Modules

"; + data << ""; + for (int i = 0; i <= MODCOUNT; i++) + { + if (Config->module_names[i] != "") + data << ""; + } + data << "
" << Config->module_names[i] << "
"; + data << "
"; + + data << "
"; + data << "

Channels

"; + data << ""; + data << ""; + + /* If the list has changed since last time it was displayed, re-sort it + * this time only (not every time, as this would be moronic) + */ + if (this->changed) + this->SortList(); + + int n = 0; + for (SortedIter a = so->begin(); ((a != so->end()) && (n < 25)); a++, n++) + { + data << ""; + } + + data << "
UsersCount
" << a->first << "" << a->second << "
"; + data << "
"; - log(DEBUG,"Sent"); + + data << ""; + data << ""; + + /* Send the document back to m_httpd */ + HTTPDocument response(http->sock, &data, 200, "X-Powered-By: m_http_stats.so\r\nContent-Type: text/html\r\n"); + Request req((char*)&response, (Module*)this, event->GetSource()); + req.Send(); + + log(DEBUG,"Sent"); + } + } + } + + void OnChannelDelete(chanrec* chan) + { + StatsIter a = sh->find(chan->name); + if (a != sh->end()) + { + sh->erase(a); + } + this->changed = true; + } + + void OnUserJoin(userrec* user, chanrec* channel) + { + StatsIter a = sh->find(channel->name); + if (a != sh->end()) + { + a->second++; + } + else + { + irc::string name = channel->name; + sh->insert(std::pair(name,1)); + } + this->changed = true; + } + + void OnUserPart(userrec* user, chanrec* channel, const std::string &partmessage) + { + StatsIter a = sh->find(channel->name); + if (a != sh->end()) + { + a->second--; + } + this->changed = true; + } + + void OnUserQuit(userrec* user, const std::string &message) + { + for (std::vector::const_iterator v = user->chans.begin(); v != user->chans.end(); v++) + { + if (((ucrec*)(*v))->channel) + { + chanrec* c = ((ucrec*)(*v))->channel; + StatsIter a = sh->find(c->name); + if (a != sh->end()) + { + a->second--; + } + } } + this->changed = true; } char* OnRequest(Request* request) @@ -67,11 +226,12 @@ class ModuleHttpStats : public Module void Implements(char* List) { - List[I_OnEvent] = List[I_OnRequest] = 1; + List[I_OnEvent] = List[I_OnRequest] = List[I_OnChannelDelete] = List[I_OnUserJoin] = List[I_OnUserPart] = List[I_OnUserQuit] = 1; } virtual ~ModuleHttpStats() { + delete sh; } virtual Version GetVersion()