]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_httpd_stats.cpp
Roadmap item "Fix jointhrottle to not try 'throttle' clients during a netmerge (requi...
[user/henk/code/inspircd.git] / src / modules / m_httpd_stats.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "httpd.h"
16
17 /* $ModDesc: Provides statistics over HTTP via m_httpd.so */
18 /* $ModDep: httpd.h */
19
20 typedef std::map<irc::string,int> StatsHash;
21 typedef StatsHash::iterator StatsIter;
22
23 typedef std::vector<std::pair<int,irc::string> > SortedList;
24 typedef SortedList::iterator SortedIter;
25
26 static StatsHash* sh = new StatsHash();
27 static SortedList* so = new SortedList();
28
29 static StatsHash* Servers = new StatsHash();
30
31 class ModuleHttpStats : public Module
32 {
33         
34         std::string stylesheet;
35         bool changed;
36
37  public:
38
39         void ReadConfig()
40         {
41                 ConfigReader c(ServerInstance);
42                 this->stylesheet = c.ReadValue("httpstats", "stylesheet", 0);
43         }
44
45         ModuleHttpStats(InspIRCd* Me) : Module(Me)
46         {
47                 ReadConfig();
48                 this->changed = true;
49                 Implementation eventlist[] = { I_OnEvent, I_OnRequest, I_OnChannelDelete, I_OnUserJoin, I_OnUserPart, I_OnUserQuit };
50                 ServerInstance->Modules->Attach(eventlist, this, 6);
51         }
52
53         void InsertOrder(irc::string channel, int count)
54         {
55                 /* This function figures out where in the sorted list to put an item from the hash */
56                 SortedIter a;
57                 for (a = so->begin(); a != so->end(); a++)
58                 {
59                         /* Found an item equal to or less than, we insert our item before it */
60                         if (a->first <= count)
61                         {
62                                 so->insert(a,std::pair<int,irc::string>(count,channel));
63                                 return;
64                         }
65                 }
66                 /* There are no items in the list yet, insert something at the beginning */
67                 so->insert(so->begin(), std::pair<int,irc::string>(count,channel));
68         }
69
70         void SortList()
71         {
72                 /* Sorts the hash into the sorted list using an insertion sort */
73                 so->clear();
74                 for (StatsIter a = sh->begin(); a != sh->end(); a++)
75                         InsertOrder(a->first, a->second);
76                 for (user_hash::iterator u = ServerInstance->clientlist->begin(); u != ServerInstance->clientlist->end(); u++)
77                 {
78                         StatsHash::iterator n = Servers->find(u->second->server);
79                         if (n != Servers->end())
80                         {
81                                 n->second++;
82                         }
83                         else
84                         {
85                                 Servers->insert(std::make_pair<irc::string,int>(u->second->server,1));
86                         }
87                 }
88                 this->changed = false;
89         }
90
91         void OnEvent(Event* event)
92         {
93                 std::stringstream data("");
94
95                 if (event->GetEventID() == "httpd_url")
96                 {
97                         HTTPRequest* http = (HTTPRequest*)event->GetData();
98
99                         if ((http->GetURI() == "/stats") || (http->GetURI() == "/stats/"))
100                         {
101                                 data << "<inspircdstats>";
102
103                                 data << "<server><name>" << ServerInstance->Config->ServerName << "</name><gecos>" << ServerInstance->Config->ServerDesc << "</gecos></server>";
104
105                                 data << "<general>";
106                                 data << "<usercount>" << ServerInstance->clientlist->size() << "</usercount>";
107                                 data << "<channelcount>" << ServerInstance->chanlist->size() << "</channelcount>";
108                                 data << "<opercount>" << ServerInstance->all_opers.size() << "</opercount>";
109                                 data << "<socketcount>" << (ServerInstance->SE->GetMaxFds() - ServerInstance->SE->GetRemainingFds()) << "</socketcount><socketmax>" << ServerInstance->SE->GetMaxFds() <<
110                                         "</socketmax><socketengine>" << ServerInstance->SE->GetName() << "</socketengine>";
111
112                                 time_t current_time = 0;
113                                 current_time = ServerInstance->Time();
114                                 time_t server_uptime = current_time - ServerInstance->startup_time;
115                                 struct tm* stime;
116                                 stime = gmtime(&server_uptime);
117                                 data << "<uptime><days>" << stime->tm_yday << "</days><hours>" << stime->tm_hour << "</hours><mins>" << stime->tm_min << "</mins><secs>" << stime->tm_sec << "</secs></uptime>";
118
119
120                                 data << "</general>";
121                                 data << "<modulelist>";
122                                 std::vector<std::string> module_names = ServerInstance->Modules->GetAllModuleNames(0);
123                                 for (std::vector<std::string>::iterator i = module_names.begin(); i != module_names.end(); ++i)
124                                 {
125                                         Module* m = ServerInstance->Modules->Find(i->c_str());
126                                         Version v = m->GetVersion();
127                                         data << "<module><name>" << *i << "</name><version>" << v.Major << "." <<  v.Minor << "." << v.Revision << "." << v.Build << "</version></module>";
128                                 }
129                                 data << "</modulelist>";
130
131                                 data << "<channellist>";
132                                 /* If the list has changed since last time it was displayed, re-sort it
133                                  * this time only (not every time, as this would be moronic)
134                                  */
135                                 if (this->changed)
136                                         this->SortList();
137
138                                 for (SortedIter a = so->begin(); a != so->end(); a++)
139                                 {
140                                         Channel* c = ServerInstance->FindChan(a->second.c_str());
141                                         if (c && !c->IsModeSet('s') && !c->IsModeSet('p'))
142                                         {
143                                                 data << "<channel>";
144                                                 data << "<usercount>" << c->GetUsers()->size() << "</usercount><channelname>" << c->name << "</channelname>";
145                                                 data << "<channelops>" << c->GetOppedUsers()->size() << "</channelops>";
146                                                 data << "<channelhalfops>" << c->GetHalfoppedUsers()->size() << "</channelhalfops>";
147                                                 data << "<channelvoices>" << c->GetVoicedUsers()->size() << "</channelvoices>";
148                                                 data << "<channeltopic>" << c->topic << "</channeltopic>";
149                                                 data << "<channelmodes>" << c->ChanModes(false) << "</channelmodes>";
150                                                 data << "</channel>";
151                                         }
152                                 }
153
154                                 data << "</channellist>";
155
156                                 data << "<serverlist>";
157                                 
158                                 for (StatsHash::iterator b = Servers->begin(); b != Servers->end(); b++)
159                                 {
160                                         data << "<server>";
161                                         data << "<servername>" << b->first << "</servername>";
162                                         data << "<usercount>" << b->second << "</usercount>";
163                                         data << "</server>";
164                                 }
165                                 data << "</serverlist>";
166
167                                 data << "</inspircdstats>";
168
169                                 /* Send the document back to m_httpd */
170                                 HTTPDocument response(http->sock, &data, 200);
171                                 response.headers.SetHeader("X-Powered-By", "m_httpd_stats.so");
172                                 response.headers.SetHeader("Content-Type", "text/xml");
173                                 Request req((char*)&response, (Module*)this, event->GetSource());
174                                 req.Send();
175                         }
176                 }
177         }
178
179         void OnChannelDelete(Channel* chan)
180         {
181                 StatsIter a = sh->find(chan->name);
182                 if (a != sh->end())
183                 {
184                         sh->erase(a);
185                 }
186                 this->changed = true;
187         }
188
189         void OnUserJoin(User* user, Channel* channel, bool sync, bool &silent)
190         {
191                 StatsIter a = sh->find(channel->name);
192                 if (a != sh->end())
193                 {
194                         a->second++;
195                 }
196                 else
197                 {
198                         irc::string name = channel->name;
199                         sh->insert(std::pair<irc::string,int>(name,1));
200                 }
201                 this->changed = true;
202         }
203
204         void OnUserPart(User* user, Channel* channel, const std::string &partmessage, bool &silent)
205         {
206                 StatsIter a = sh->find(channel->name);
207                 if (a != sh->end())
208                 {
209                         a->second--;
210                 }
211                 this->changed = true;
212         }
213
214         void OnUserQuit(User* user, const std::string &message, const std::string &oper_message)
215         {
216                 for (UCListIter v = user->chans.begin(); v != user->chans.end(); v++)
217                 {
218                         Channel* c = v->first;
219                         StatsIter a = sh->find(c->name);
220                         if (a != sh->end())
221                         {
222                                 a->second--;
223                         }
224                 }
225                 this->changed = true;
226         }
227
228         char* OnRequest(Request* request)
229         {
230                 return NULL;
231         }
232
233
234         virtual ~ModuleHttpStats()
235         {
236                 delete sh;
237                 delete so;
238         }
239
240         virtual Version GetVersion()
241         {
242                 return Version(1, 1, 0, 0, VF_VENDOR, API_VERSION);
243         }
244 };
245
246 MODULE_INIT(ModuleHttpStats)