]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/command/banning.qc
cb878e75f35de42337f3b3ea48c520a7fd32ffaf
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / command / banning.qc
1 // =====================================================
2 //  Banning and kicking command code, written by Samual
3 //  Last updated: December 29th, 2011
4 // =====================================================
5
6 void BanCommand_ban(float request, float argc, string command)
7 {
8         switch(request)
9         {
10                 case CMD_REQUEST_COMMAND:
11                 {
12                         if(argc >= 2)
13                         {
14                                 string ip = argv(1);
15                                 float reason_arg, bantime;
16                                 string reason;
17                                 
18                                 reason_arg = 2; 
19                                 
20                                 GET_BAN_ARG(bantime, autocvar_g_ban_default_bantime);
21                                 GET_BAN_REASON(reason, "No reason provided");
22
23                                 Ban_Insert(ip, bantime, reason, 1);
24                                 return;
25                         }
26                 }
27                         
28                 default:
29                         print("Incorrect parameters for ^2ban^7\n");
30                 case CMD_REQUEST_USAGE:
31                 {
32                         print("\nUsage:^3 sv_cmd ban address [bantime] [reason]\n");
33                         print("  'address' is the IP address or range of the player to ban,\n");
34                         print("  'bantime' is the amount of time that the ban is active (default if not provided),\n");
35                         print("  and 'reason' is the string to label the ban with as reason for banning.\n");
36                         print("See also: ^2banlist, kickban, unban^7\n");
37                         return;
38                 }
39         }
40 }
41
42 void BanCommand_banlist(float request)
43 {
44         switch(request)
45         {
46                 case CMD_REQUEST_COMMAND:
47                 {
48                         Ban_View();
49                         return;
50                 }
51                         
52                 default:
53                 case CMD_REQUEST_USAGE:
54                 {
55                         print("\nUsage:^3 sv_cmd banlist\n");
56                         print("  No arguments required.\n");
57                         print("See also: ^2ban, kickban, unban^7\n");
58                         return;
59                 }
60         }
61 }
62
63 void BanCommand_kickban(float request, float argc, string command)
64 {
65         switch(request)
66         {
67                 case CMD_REQUEST_COMMAND:
68                 {
69                         if(argc >= 2)
70                         {
71                                 entity client = GetIndexedEntity(argc, 1);
72                                 float accepted = VerifyClientEntity(client, TRUE, FALSE);
73                                 float reason_arg, bantime, masksize;
74                                 string reason;
75                                 
76                                 if(accepted > 0) 
77                                 {
78                                         reason_arg = next_token; 
79
80                                         GET_BAN_ARG(bantime, autocvar_g_ban_default_bantime);
81                                         GET_BAN_ARG(masksize, autocvar_g_ban_default_masksize);
82                                         GET_BAN_REASON(reason, "No reason provided");
83
84                                         Ban_KickBanClient(client, bantime, masksize, reason);
85                                         
86                                         return;
87                                 }
88                                 else
89                                 {
90                                         print("kickban: ", GetClientErrorString(accepted, argv(1)), ".\n"); 
91                                 }
92                         }
93                 }
94                         
95                 default:
96                         print("Incorrect parameters for ^2kickban^7\n");
97                 case CMD_REQUEST_USAGE:
98                 {
99                         print("\nUsage:^3 sv_cmd kickban client [bantime] [masksize] [reason]\n");
100                         print("  'client' is the entity number or name of the player to ban,\n");
101                         print("  'bantime' is the amount of time that the ban is active (default if not provided),\n");
102                         print("  'masksize' is the range of the IP address (1-thru-4, default if not provided),\n");
103                         print("  and 'reason' is the string to label the ban with as reason for banning.\n");
104                         print("See also: ^2ban, banlist, unban^7\n");
105                         return;
106                 }
107         }
108 }
109
110 void BanCommand_mute(float request, float argc, string command)
111 {
112         switch(request)
113         {
114                 case CMD_REQUEST_COMMAND:
115                 {
116                         
117                         return;
118                 }
119                         
120                 default:
121                 case CMD_REQUEST_USAGE:
122                 {
123                         print("\nUsage:^3 sv_cmd mute\n");
124                         print("  No arguments required.\n");
125                         return;
126                 }
127         }
128 }
129
130 void BanCommand_unban(float request, float argc)
131 {
132         switch(request)
133         {
134                 case CMD_REQUEST_COMMAND:
135                 {
136                         if(argv(1))
137                         {
138                                 Ban_Delete(stof(argv(1)));
139                                 return;
140                         }
141                 }
142                         
143                 default:
144                 case CMD_REQUEST_USAGE:
145                 {
146                         print("\nUsage:^3 sv_cmd unban banid\n");
147                         print("  Where 'banid' is the ID of the ban of which to remove.\n");
148                         print("See also: ^2ban, banlist, kickban^7\n");
149                         return;
150                 }
151         }
152 }
153
154 void BanCommand_unmute(float request, float argc)
155 {
156         switch(request)
157         {
158                 case CMD_REQUEST_COMMAND:
159                 {
160                         
161                         return;
162                 }
163                         
164                 default:
165                 case CMD_REQUEST_USAGE:
166                 {
167                         print("\nUsage:^3 sv_cmd unmute\n");
168                         print("  No arguments required.\n");
169                         return;
170                 }
171         }
172 }
173
174 /* use this when creating a new command, making sure to place it in alphabetical order... also,
175 ** ADD ALL NEW COMMANDS TO commands.cfg WITH PROPER ALIASES IN THE SAME FASHION!
176 void BanCommand_(float request)
177 {
178         switch(request)
179         {
180                 case CMD_REQUEST_COMMAND:
181                 {
182                         
183                         return;
184                 }
185                         
186                 default:
187                 case CMD_REQUEST_USAGE:
188                 {
189                         print("\nUsage:^3 sv_cmd \n");
190                         print("  No arguments required.\n");
191                         return;
192                 }
193         }
194 }
195 */
196
197
198 // ==================================
199 //  Macro system for server commands
200 // ==================================
201
202 // Do not hard code aliases for these, instead create them in commands.cfg... also: keep in alphabetical order, please ;)
203 #define BAN_COMMANDS(request,arguments,command) \
204         BAN_COMMAND("ban", BanCommand_ban(request, arguments, command), "Ban an IP address or a range of addresses (like 1.2.3)") \
205         BAN_COMMAND("banlist", BanCommand_banlist(request), "List all existing bans") \
206         BAN_COMMAND("kickban", BanCommand_kickban(request, arguments, command), "Disconnect a client and ban it at the same time") \
207         BAN_COMMAND("mute", BanCommand_mute(request, arguments, command), "Disallow a client from talking by muting them") \
208         BAN_COMMAND("unban", BanCommand_unban(request, arguments), "Remove an existing ban") \
209         BAN_COMMAND("unmute", BanCommand_unmute(request, arguments), "Unmute a client") \
210         /* nothing */
211
212 void BanCommand_macro_help()
213 {
214         #define BAN_COMMAND(name,function,description) \
215                 { if(strtolower(description) != "") { print("  ^2", name, "^7: ", description, "\n"); } }
216                 
217         BAN_COMMANDS(0, 0, "")
218         #undef BAN_COMMAND
219         
220         return;
221 }
222
223 float BanCommand_macro_command(float argc, string command)
224 {
225         #define BAN_COMMAND(name,function,description) \
226                 { if(name == strtolower(argv(0))) { function; return TRUE; } }
227                 
228         BAN_COMMANDS(CMD_REQUEST_COMMAND, argc, command)
229         #undef BAN_COMMAND
230         
231         return FALSE;
232 }
233
234 float BanCommand_macro_usage(float argc)
235 {
236         #define BAN_COMMAND(name,function,description) \
237                 { if(name == strtolower(argv(1))) { function; return TRUE; } }
238                 
239         BAN_COMMANDS(CMD_REQUEST_USAGE, argc, "")
240         #undef BAN_COMMAND
241         
242         return FALSE;
243 }
244
245 void BanCommand_macro_write_aliases(float fh)
246 {
247         #define BAN_COMMAND(name,function,description) \
248                 { if(strtolower(description) != "") { CMD_Write_Alias("qc_cmd_sv", name, description); } }
249         
250         BAN_COMMANDS(0, 0, "")
251         #undef BAN_COMMAND
252         
253         return;
254 }
255
256 float BanCommand(string command)
257 {
258         float argc = tokenize_console(command);
259         
260         // Guide for working with argc arguments by example:
261         // argc:   1    - 2      - 3     - 4
262         // argv:   0    - 1      - 2     - 3 
263         // cmd     vote - master - login - password
264
265         if(BanCommand_macro_command(argc, command)) // continue as usual and scan for normal commands
266         {
267                 return TRUE; // handled by one of the above GenericCommand_* functions
268         }
269         
270         return FALSE;
271 }