]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_saquit.cpp
d43b9710238d0ac87ace78dd34096e68277e7269
[user/henk/code/inspircd.git] / src / modules / m_saquit.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                     E-mail:
7  *              <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *          the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 using namespace std;
18
19 /*
20  * SAQUIT module for InspIRCd
21  *  Author: w00t
22  *  Version: 1.0.0.0
23  *
24  *  Syntax: /SAQUIT <user> [reason]
25  *  Makes it appear as though <user> has /quit with [reason]
26  *  
27  */
28
29 #include <stdio.h>
30 #include <string>
31 #include "users.h"
32 #include "channels.h"
33 #include "modules.h"
34
35 /* $ModDesc: Provides support for an SAQUIT command, exits user with a reason */
36
37 static Server *Srv;
38
39 class cmd_saquit : public command_t
40 {
41  public:
42         cmd_saquit () : command_t("SAQUIT",'o',2)
43         {
44                 this->source = "m_saquit.so";
45         }
46
47         void Handle (const char** parameters, int pcnt, userrec *user)
48         {
49                 userrec* dest = Srv->FindNick(std::string(parameters[0]));
50                 if (dest)
51                 {
52                         if (Srv->IsUlined(dest->server))
53                         {
54                                 WriteServ(user->fd,"990 %s :Cannot use an SA command on a u-lined client",user->nick);
55                                 return;
56                         }
57                         std::string line = "";
58                         for (int i = 1; i < pcnt - 1; i++)
59                         {
60                                 line = line + std::string(parameters[i]) + " ";
61                         }
62                         line = line + std::string(parameters[pcnt-1]);
63                 
64                         Srv->SendOpers(std::string(user->nick)+" used SAQUIT to make "+std::string(dest->nick)+" quit with a reason of "+line);
65                         Srv->QuitUser(dest, line);
66                 }
67         }
68 };
69
70 class ModuleSaquit : public Module
71 {
72         cmd_saquit*     mycommand;
73  public:
74         ModuleSaquit(Server* Me)
75                 : Module::Module(Me)
76         {
77                 Srv = Me;
78                 mycommand = new cmd_saquit();
79                 Srv->AddCommand(mycommand);
80         }
81         
82         virtual ~ModuleSaquit()
83         {
84         }
85         
86         virtual Version GetVersion()
87         {
88                 return Version(1,0,0,1,VF_VENDOR);
89         }
90         
91 };
92
93 // stuff down here is the module-factory stuff. For basic modules you can ignore this.
94
95 class ModuleSaquitFactory : public ModuleFactory
96 {
97  public:
98         ModuleSaquitFactory()
99         {
100         }
101         
102         ~ModuleSaquitFactory()
103         {
104         }
105         
106         virtual Module * CreateModule(Server* Me)
107         {
108                 return new ModuleSaquit(Me);
109         }
110         
111 };
112
113
114 extern "C" void * init_module( void )
115 {
116         return new ModuleSaquitFactory;
117 }
118