]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_testcommand.cpp
Removed a pointless check in ./configure --clean that made it only work with one...
[user/henk/code/inspircd.git] / src / modules / m_testcommand.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 <stdio.h>
15 #include "users.h"
16 #include "channels.h"
17 #include "modules.h"
18 #include "dns.h"
19 #include "inspircd.h"
20
21 /* $ModDesc: Povides a proof-of-concept test /WOOT command */
22
23 /** A test resolver class for IPV6
24  */
25 class MyV6Resolver : public Resolver
26 {
27         bool fw;
28  public:
29         MyV6Resolver(Module* me, const std::string &source, bool forward) : Resolver(ServerInstance, source, forward ? DNS_QUERY_AAAA : DNS_QUERY_PTR6, me)
30         {
31                 fw = forward;
32         }
33
34         virtual void OnLookupComplete(const std::string &result)
35         {
36                 ServerInstance->Log(DEBUG,"*** RESOLVER COMPLETED %s LOOKUP, IP IS: '%s'",fw ? "FORWARD" : "REVERSE", result.c_str());
37         }
38
39         virtual void OnError(ResolverError e, const std::string &errormessage)
40         {
41                 ServerInstance->Log(DEBUG,"*** RESOLVER GOT ERROR: %d: %s",e,errormessage.c_str());
42         }
43 };
44
45 /** Handle /WOOT
46  */
47 class cmd_woot : public command_t
48 {
49         Module* Creator;
50  public:
51         /* Command 'woot', takes no parameters and needs no special modes */
52         cmd_woot (InspIRCd* Instance, Module* maker) : command_t(Instance,"WOOT", 0, 0), Creator(maker)
53         {
54                 this->source = "m_testcommand.so";
55         }
56
57         CmdResult Handle (const char** parameters, int pcnt, userrec *user)
58         {
59                 /* We dont have to worry about deleting 'r', the core will
60                  * do it for us as required.*/
61                 try
62                 {
63                         MyV6Resolver* r = new MyV6Resolver(Creator, "shake.stacken.kth.se", true);
64                         ServerInstance->AddResolver(r);
65                         r = new MyV6Resolver(Creator, "2001:6b0:1:ea:202:a5ff:fecd:13a6", false);
66                         ServerInstance->AddResolver(r);
67                 }
68                 catch (ModuleException& e)
69                 {
70                         ServerInstance->Log(DEBUG,"Danger, will robinson! There was an exception: %s",e.GetReason());
71                 }
72
73                 return CMD_FAILURE;
74         }
75 };
76
77 class ModuleTestCommand : public Module
78 {
79         cmd_woot* newcommand;
80  public:
81         ModuleTestCommand(InspIRCd* Me)
82                 : Module::Module(Me)
83         {
84                 
85                 // Create a new command
86                 newcommand = new cmd_woot(ServerInstance, this);
87                 ServerInstance->AddCommand(newcommand);
88         }
89
90         void Implements(char* List)
91         {
92                 List[I_OnUserJoin] = 1;
93         }
94
95         virtual void OnUserJoin(userrec* user, chanrec* channel)
96         {
97                 /* This is an example, we do nothing here */
98         }
99         
100         virtual ~ModuleTestCommand()
101         {
102                 delete newcommand;
103         }
104
105         virtual Version GetVersion()
106         {
107                 return Version(1, 1, 0, 0, VF_VENDOR, API_VERSION);
108         }
109 };
110
111
112 class ModuleTestCommandFactory : public ModuleFactory
113 {
114  public:
115         ModuleTestCommandFactory()
116         {
117         }
118         
119         ~ModuleTestCommandFactory()
120         {
121         }
122         
123         virtual Module * CreateModule(InspIRCd* Me)
124         {
125                 return new ModuleTestCommand(Me);
126         }
127         
128 };
129
130
131 extern "C" void * init_module( void )
132 {
133         return new ModuleTestCommandFactory;
134 }
135