6c177d0dd250ebd7d3424f70db5bbc88bc4a3886
[NeonServV5.git] / src / event_neonserv_invite.c
1 /* event_neonserv_invite.c - NeonServ v5.1
2  * Copyright (C) 2011  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     MYSQL_RES *res;
20     MYSQL_ROW row;
21     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);
22     res = mysql_use();
23     if ((row = mysql_fetch_row(res)) == NULL) {
24         reply(client, user, "NS_INVITE_FAIL", channel, client->user->nick);
25         return;
26     }
27     if(!strcmp(row[2], "1")) {
28         reply(client, user, "MODCMD_CHAN_SUSPENDED");
29         return;
30     }
31     int botid = atoi(row[0]);
32     struct ClientSocket *bot;
33     for(bot = getBots(SOCKET_FLAG_READY, NULL); bot; bot = getBots(SOCKET_FLAG_READY, bot)) {
34         if(bot->clientid == botid)
35             break;
36     }
37     if(bot) {
38         struct ChanNode *chan = getChanByName(channel);
39         if(chan && isUserOnChan(bot->user, chan)) {
40             reply(client, user, "NS_INVITE_ON_CHAN", bot->user->nick, chan->name);
41         } else
42             putsock(bot, "JOIN %s", channel);
43     }
44 }
45