]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_check.cpp
Remove more classbase
[user/henk/code/inspircd.git] / src / modules / m_check.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/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
16 /* $ModDesc: Provides the /check command to retrieve information on a user, channel, or IP address */
17
18 /** Handle /CHECK
19  */
20 class CommandCheck : public Command
21 {
22  public:
23         CommandCheck(Module* parent) : Command(parent,"CHECK", 1)
24         {
25                 flags_needed = 'o'; syntax = "<nickname>|<ip>|<hostmask>|<channel> <server>";
26         }
27
28         std::string timestring(time_t time)
29         {
30                 char timebuf[60];
31                 struct tm *mytime = gmtime(&time);
32                 strftime(timebuf, 59, "%Y-%m-%d %H:%M:%S UTC (%s)", mytime);
33                 return std::string(timebuf);
34         }
35
36         void dumpExt(User* user, std::string checkstr, Extensible* ext)
37         {
38                 std::stringstream dumpkeys;
39                 for(Extensible::ExtensibleStore::const_iterator i = ext->GetExtList().begin(); i != ext->GetExtList().end(); i++)
40                 {
41                         ExtensionItem* item = i->first;
42                         std::string value = item->serialize(FORMAT_USER, ext, i->second);
43                         if (!value.empty())
44                                 ServerInstance->DumpText(user, checkstr + " meta:" + item->key + " " + value);
45                         else if (!item->key.empty())
46                                 dumpkeys << " " << item->key;
47                 }
48                 if (!dumpkeys.str().empty())
49                         ServerInstance->DumpText(user,checkstr + " metadata", dumpkeys);
50         }
51
52         CmdResult Handle (const std::vector<std::string> &parameters, User *user)
53         {
54                 if (parameters.size() > 1 && parameters[1] != ServerInstance->Config->ServerName.c_str())
55                         return CMD_SUCCESS;
56
57                 User *targuser;
58                 Channel *targchan;
59                 std::string checkstr;
60                 std::string chliststr;
61
62                 checkstr = std::string(":") + ServerInstance->Config->ServerName + " 304 " + std::string(user->nick) + " :CHECK";
63
64                 targuser = ServerInstance->FindNick(parameters[0]);
65                 targchan = ServerInstance->FindChan(parameters[0]);
66
67                 /*
68                  * Syntax of a /check reply:
69                  *  :server.name 304 target :CHECK START <target>
70                  *  :server.name 304 target :CHECK <field> <value>
71                  *  :server.name 304 target :CHECK END
72                  */
73
74                 ServerInstance->DumpText(user, checkstr + " START " + parameters[0]);
75
76                 if (targuser)
77                 {
78                         /* /check on a user */
79                         ServerInstance->DumpText(user, checkstr + " nuh " + targuser->GetFullHost());
80                         ServerInstance->DumpText(user, checkstr + " realnuh " + targuser->GetFullRealHost());
81                         ServerInstance->DumpText(user, checkstr + " realname " + targuser->fullname);
82                         ServerInstance->DumpText(user, checkstr + " modes +" + targuser->FormatModes());
83                         ServerInstance->DumpText(user, checkstr + " snomasks +" + targuser->FormatNoticeMasks());
84                         ServerInstance->DumpText(user, checkstr + " server " + targuser->server);
85                         ServerInstance->DumpText(user, checkstr + " uid " + targuser->uuid);
86                         ServerInstance->DumpText(user, checkstr + " signon " + timestring(targuser->signon));
87                         ServerInstance->DumpText(user, checkstr + " nickts " + timestring(targuser->age));
88                         if (IS_LOCAL(targuser))
89                                 ServerInstance->DumpText(user, checkstr + " lastmsg " + timestring(targuser->idle_lastmsg));
90
91                         if (IS_AWAY(targuser))
92                         {
93                                 /* user is away */
94                                 ServerInstance->DumpText(user, checkstr + " awaytime " + timestring(targuser->awaytime));
95                                 ServerInstance->DumpText(user, checkstr + " awaymsg " + targuser->awaymsg);
96                         }
97
98                         if (IS_OPER(targuser))
99                         {
100                                 /* user is an oper of type ____ */
101                                 ServerInstance->DumpText(user, checkstr + " opertype " + irc::Spacify(targuser->oper.c_str()));
102                         }
103
104                         if (IS_LOCAL(targuser))
105                         {
106                                 ServerInstance->DumpText(user, checkstr + " clientaddr " + irc::sockets::satouser(&targuser->client_sa));
107                                 ServerInstance->DumpText(user, checkstr + " serveraddr " + irc::sockets::satouser(&targuser->server_sa));
108
109                                 std::string classname = targuser->GetClass()->name;
110                                 if (!classname.empty())
111                                         ServerInstance->DumpText(user, checkstr + " connectclass " + classname);
112                         }
113                         else
114                                 ServerInstance->DumpText(user, checkstr + " onip " + targuser->GetIPString());
115
116                         for (UCListIter i = targuser->chans.begin(); i != targuser->chans.end(); i++)
117                         {
118                                 Channel* c = *i;
119                                 chliststr.append(c->GetPrefixChar(targuser)).append(c->name).append(" ");
120                         }
121
122                         std::stringstream dump(chliststr);
123
124                         ServerInstance->DumpText(user,checkstr + " onchans", dump);
125
126                         dumpExt(user, checkstr, targuser);
127                 }
128                 else if (targchan)
129                 {
130                         /* /check on a channel */
131                         ServerInstance->DumpText(user, checkstr + " timestamp " + timestring(targchan->age));
132
133                         if (targchan->topic[0] != 0)
134                         {
135                                 /* there is a topic, assume topic related information exists */
136                                 ServerInstance->DumpText(user, checkstr + " topic " + targchan->topic);
137                                 ServerInstance->DumpText(user, checkstr + " topic_setby " + targchan->setby);
138                                 ServerInstance->DumpText(user, checkstr + " topic_setat " + timestring(targchan->topicset));
139                         }
140
141                         ServerInstance->DumpText(user, checkstr + " modes " + targchan->ChanModes(true));
142                         ServerInstance->DumpText(user, checkstr + " membercount " + ConvToStr(targchan->GetUserCounter()));
143
144                         /* now the ugly bit, spool current members of a channel. :| */
145
146                         const UserMembList *ulist= targchan->GetUsers();
147
148                         /* note that unlike /names, we do NOT check +i vs in the channel */
149                         for (UserMembCIter i = ulist->begin(); i != ulist->end(); i++)
150                         {
151                                 char tmpbuf[MAXBUF];
152                                 /*
153                                  * Unlike Asuka, I define a clone as coming from the same host. --w00t
154                                  */
155                                 snprintf(tmpbuf, MAXBUF, "%-3lu %s%s (%s@%s) %s ", ServerInstance->Users->GlobalCloneCount(i->first), targchan->GetAllPrefixChars(i->first), i->first->nick.c_str(), i->first->ident.c_str(), i->first->dhost.c_str(), i->first->fullname.c_str());
156                                 ServerInstance->DumpText(user, checkstr + " member " + tmpbuf);
157                         }
158
159                         dumpExt(user, checkstr, targchan);
160                 }
161                 else
162                 {
163                         /*  /check on an IP address, or something that doesn't exist */
164                         long x = 0;
165
166                         /* hostname or other */
167                         for (user_hash::const_iterator a = ServerInstance->Users->clientlist->begin(); a != ServerInstance->Users->clientlist->end(); a++)
168                         {
169                                 if (InspIRCd::Match(a->second->host, parameters[0], ascii_case_insensitive_map) || InspIRCd::Match(a->second->dhost, parameters[0], ascii_case_insensitive_map))
170                                 {
171                                         /* host or vhost matches mask */
172                                         ServerInstance->DumpText(user, checkstr + " match " + ConvToStr(++x) + " " + a->second->GetFullRealHost());
173                                 }
174                                 /* IP address */
175                                 else if (InspIRCd::MatchCIDR(a->second->GetIPString(), parameters[0]))
176                                 {
177                                         /* same IP. */
178                                         ServerInstance->DumpText(user, checkstr + " match " + ConvToStr(++x) + " " + a->second->GetFullRealHost());
179                                 }
180                         }
181
182                         ServerInstance->DumpText(user, checkstr + " matches " + ConvToStr(x));
183                 }
184
185                 ServerInstance->DumpText(user, checkstr + " END " + parameters[0]);
186
187                 return CMD_SUCCESS;
188         }
189
190         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
191         {
192                 if (parameters.size() > 1)
193                         return ROUTE_OPT_UCAST(parameters[1]);
194                 return ROUTE_LOCALONLY;
195         }
196 };
197
198
199 class ModuleCheck : public Module
200 {
201  private:
202         CommandCheck mycommand;
203  public:
204         ModuleCheck() : mycommand(this)
205         {
206                 ServerInstance->AddCommand(&mycommand);
207         }
208
209         ~ModuleCheck()
210         {
211         }
212
213         Version GetVersion()
214         {
215                 return Version("CHECK command, view user/channel details", VF_VENDOR|VF_OPTCOMMON);
216         }
217 };
218
219 MODULE_INIT(ModuleCheck)