added GPL header to all files and added INSTALL AUTHORS COPYING files.
[NeonServV5.git] / src / event_neonserv_invite.c
1 /* event_neonserv_invite.c - NeonServ v5.0
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     int botid = atoi(row[0]);
28     struct ClientSocket *bot;
29     for(bot = getBots(SOCKET_FLAG_READY, NULL); bot; bot = getBots(SOCKET_FLAG_READY, bot)) {
30         if(bot->clientid == botid)
31             break;
32     }
33     if(bot) {
34         struct ChanNode *chan = getChanByName(channel);
35         if(chan && isUserOnChan(bot->user, chan)) {
36             reply(client, user, "NS_INVITE_ON_CHAN", bot->user->nick, chan->name);
37         } else
38             putsock(bot, "JOIN %s", channel);
39     }
40 }
41