]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_shun.cpp
5399f996ce4b65819c9efafaca67946d8236fe1a
[user/henk/code/inspircd.git] / src / modules / m_shun.cpp
1 #include "inspircd.h"
2 #include "xline.h"
3
4 /* $ModDesc: Provides the /shun command, which stops a user executing all commands except PING and PONG. */
5
6 class Shun : public XLine
7 {
8 public:
9         std::string matchtext;
10
11         Shun(InspIRCd* Instance, time_t s_time, long d, const char* src, const char* re, const char *shunmask) : XLine(Instance, s_time, d, src, re, "SHUN")
12         {
13                 this->matchtext = shunmask;
14         }
15
16         ~Shun()
17         {
18         }
19
20         bool Matches(User *u)
21         {
22                 if (ServerInstance->MatchText(u->GetFullHost(), matchtext) || ServerInstance->MatchText(u->GetFullRealHost(), matchtext))
23                         return true;
24
25                 return false;
26         }
27
28         bool Matches(const std::string &s)
29         {
30                 if (matchtext == s)
31                         return true;
32                 return false;
33         }
34
35         void Apply(User *u)
36         {
37                 if (!u->GetExt("shunned"))
38                         u->Extend("shunned");
39         }
40
41
42         void DisplayExpiry()
43         {
44                 ServerInstance->SNO->WriteToSnoMask('x',"Expiring timed shun %s (set by %s %ld seconds ago)", this->matchtext.c_str(), this->source, this->duration);
45         }
46
47         const char* Displayable()
48         {
49                 return matchtext.c_str();
50         }
51 };
52
53 /** An XLineFactory specialized to generate shun pointers
54  */
55 class ShunFactory : public XLineFactory
56 {
57  public:
58         ShunFactory(InspIRCd* Instance) : XLineFactory(Instance, "SHUN") { }
59
60         /** Generate a shun
61         */
62         XLine* Generate(time_t set_time, long duration, const char* source, const char* reason, const char* xline_specific_mask)
63         {
64                 return new Shun(ServerInstance, set_time, duration, source, reason, xline_specific_mask);
65         }
66 };
67
68 //typedef std::vector<Shun> shunlist;
69
70 class cmd_shun : public Command
71 {
72  private:
73         InspIRCd *Srv;
74
75  public:
76         cmd_shun(InspIRCd* Me) : Command(Me, "SHUN", "o", 1), Srv(Me)
77         {
78                 this->source = "m_shun.so";
79         }
80
81         CmdResult Handle(const std::vector<std::string>& parameters, User *user)
82         {
83                 /* syntax: SHUN nick!user@host time :reason goes here */
84                 /* 'time' is a human-readable timestring, like 2d3h2s. */
85
86                 if (parameters.size() == 1)
87                 {
88                         if (ServerInstance->XLines->DelLine(parameters[0].c_str(), "SHUN", user))
89                         {
90                                 ServerInstance->SNO->WriteToSnoMask('x',"%s Removed shun on %s.",user->nick.c_str(),parameters[0].c_str());
91                         }
92                         else
93                         {
94                                 // XXX todo implement stats
95                                 user->WriteServ("NOTICE %s :*** Shun %s not found in list, try /stats s.",user->nick.c_str(),parameters[0].c_str());
96                         }
97
98                         return CMD_SUCCESS;
99                 }
100                 else if (parameters.size() >= 2)
101                 {
102                         // Adding - XXX todo make this respect <insane> tag perhaps..
103                         long duration = ServerInstance->Duration(parameters[1]);
104                         Shun *r = NULL;
105
106                         try
107                         {
108                                 r = new Shun(ServerInstance, ServerInstance->Time(), duration, user->nick.c_str(), parameters[2].c_str(), parameters[0].c_str());
109                         }
110                         catch (...)
111                         {
112                                 ; // Do nothing. If we get here, the regex was fucked up, and they already got told it fucked up.
113                         }
114
115                         if (r)
116                         {
117                                 if (ServerInstance->XLines->AddLine(r, user))
118                                 {
119                                         if (!duration)
120                                         {
121                                                 ServerInstance->SNO->WriteToSnoMask('x',"%s added permanent shun for %s.", user->nick.c_str(), parameters[0].c_str());
122                                         }
123                                         else
124                                         {
125                                                 time_t c_requires_crap = duration + ServerInstance->Time();
126                                                 ServerInstance->SNO->WriteToSnoMask('x', "%s added timed shun for %s, expires on %s", user->nick.c_str(), parameters[0].c_str(),
127                                                 ServerInstance->TimeString(c_requires_crap).c_str());
128                                         }
129
130                                         ServerInstance->XLines->ApplyLines();
131                                 }
132                                 else
133                                 {
134                                         delete r;
135                                         user->WriteServ("NOTICE %s :*** Shun for %s already exists", user->nick.c_str(), parameters[0].c_str());
136                                 }
137                         }
138                 }
139
140                 return CMD_FAILURE;
141         }
142 };
143
144 class ModuleShun : public Module
145 {
146         cmd_shun* mycommand;
147         ShunFactory *f;
148
149  public:
150         ModuleShun(InspIRCd* Me) : Module(Me)
151         {
152                 f = new ShunFactory(ServerInstance);
153                 ServerInstance->XLines->RegisterFactory(f);
154
155                 mycommand = new cmd_shun(ServerInstance);
156                 ServerInstance->AddCommand(mycommand);
157
158                 Implementation eventlist[] = { I_OnStats, I_OnPreCommand, I_OnUserConnect };
159                 ServerInstance->Modules->Attach(eventlist, this, 3);
160         }
161
162         virtual ~ModuleShun()
163         {
164                 ServerInstance->XLines->UnregisterFactory(f);
165         }
166
167         virtual int OnStats(char symbol, User* user, string_list& out)
168         {
169                 if (symbol != 'S')
170                         return 0;
171
172                 ServerInstance->XLines->InvokeStats("SHUN", 223, user, out);
173                 return 1;
174         }
175
176         virtual void OnUserConnect(User* user)
177         {
178                 if (!IS_LOCAL(user))
179                         return;
180
181                 // Apply lines on user connect
182                 XLine *rl = ServerInstance->XLines->MatchesLine("SHUN", user);
183
184                 if (rl)
185                 {
186                         // Bang. :P
187                         rl->Apply(user);
188                 }
189         }
190
191         virtual int OnPreCommand(std::string &command, std::vector<std::string>& parameters, User* user, bool validated, const std::string &original_line)
192         {
193                 if (validated || !user->GetExt("shunned"))
194                         return 0;
195
196                 if (!ServerInstance->XLines->MatchesLine("SHUN", user))
197                 {
198                         /* The shun previously set on this user has expired or been removed */
199                         user->Shrink("shunned");
200                         return 0;
201                 }
202
203                 if (command == "QUIT")
204                 {
205                         /* Allow QUIT but dont show any quit message */
206                         parameters.clear();
207                         return 0;
208                 }
209
210                 /* Always allow PONG and PING */
211                 if (command == "PONG" || command == "PING")
212                         return 0;
213
214                 return 1;
215         }
216
217         virtual Version GetVersion()
218         {
219                 return Version(1,2,0,0,VF_VENDOR|VF_COMMON,API_VERSION);
220         }
221 };
222
223 MODULE_INIT(ModuleShun)
224