fixed possible crash in cmd_NeonServ.mod/cmd_neonserv_mode.c
[NeonServV5.git] / src / modules / NeonServ.mod / event_neonserv_invite.c
1 /* event_neonserv_invite.c - NeonServ v5.6
2  * Copyright (C) 2011-2012  Philipp Kreil (pk910)
3  * 
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License 
15  * along with this program. If not, see <http://www.gnu.org/licenses/>. 
16  */
17
18 static void neonserv_event_invite(struct ClientSocket *client, struct UserNode *user, char *channel) {
19         if(client->botid != BOTID)
20                 return;
21     MYSQL_RES *res;
22     MYSQL_ROW row;
23     printf_mysql_query("SELECT `botid`, `bot_channels`.`id`, `suspended` FROM `bot_channels` LEFT JOIN `bots` ON `bot_channels`.`botid` = `bots`.`id` LEFT JOIN `channels` ON `chanid` = `channel_id` WHERE `channel_name` = '%s' AND `botclass` = '%d'", escape_string(channel), client->botid);
24     res = mysql_use();
25     if ((row = mysql_fetch_row(res)) == NULL) {
26         reply(client, user, "NS_INVITE_FAIL", channel, client->user->nick);
27         return;
28     }
29     if(!strcmp(row[2], "1")) {
30         reply(client, user, "MODCMD_CHAN_SUSPENDED");
31         return;
32     }
33     int botid = atoi(row[0]);
34     struct ClientSocket *bot;
35     for(bot = getBots(SOCKET_FLAG_READY, NULL); bot; bot = getBots(SOCKET_FLAG_READY, bot)) {
36         if(bot->clientid == botid)
37             break;
38     }
39     if(bot) {
40         struct ChanNode *chan = getChanByName(channel);
41         if(chan && isUserOnChan(bot->user, chan)) {
42             reply(client, user, "NS_INVITE_ON_CHAN", bot->user->nick, chan->name);
43         } else
44             putsock(bot, "JOIN %s", channel);
45     }
46 }
47