added owner history to cmd_info
[NeonServV5.git] / src / cmd_neonserv_info.c
1 /* cmd_neonserv_info.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 #include "cmd_neonserv.h"
19
20 /*
21 * no parameters
22 */
23
24 CMD_BIND(neonserv_cmd_info) {
25     MYSQL_RES *res;
26     MYSQL_ROW row, row2;
27     struct Table *table;
28     printf_mysql_query("SELECT `channel_defaulttopic`, `channel_modes`, `channel_maxusers`, `channel_lastvisit`, `channel_registered`, `user_user` FROM `channels` LEFT JOIN `users` ON `channel_registrator` = `user_id` WHERE `channel_id` = '%d'", chan->channel_id);
29     res = mysql_use();
30     row = mysql_fetch_row(res);
31     table = table_init(2, 9, 0);
32     table_set_bold(table, 0, 1);
33     char *content[2];
34     reply(getTextBot(), user, "NS_INFO_HEADER", chan->name);
35     content[0] = get_language_string(user, "NS_INFO_DEFAULTTOPIC");
36     content[1] = row[0];
37     table_add(table, content);
38     content[0] = get_language_string(user, "NS_INFO_MODELOCK");
39     content[1] = row[1];
40     table_add(table, content);
41     content[0] = get_language_string(user, "NS_INFO_RECORD");
42     content[1] = row[2];
43     table_add(table, content);
44     printf_mysql_query("SELECT `user_user`, `chanuser_access` FROM `chanusers` LEFT JOIN `users` ON `user_id` = `chanuser_uid` WHERE `chanuser_cid` = '%d'", chan->channel_id);
45     res = mysql_use();
46     char ownerstr[MAXLEN];
47     int ownerpos = 0, usercount = 0;
48     while((row2 = mysql_fetch_row(res))) {
49         if(!strcmp(row2[1], "500"))
50             ownerpos += sprintf(ownerstr + ownerpos, (ownerpos ? ", %s" : "%s"), row2[0]);
51         usercount++;
52     }
53     content[0] = get_language_string(user, "NS_INFO_OWNER");
54     content[1] = ownerstr;
55     table_add(table, content);
56     sprintf(ownerstr, "%d", usercount);
57     content[0] = get_language_string(user, "NS_INFO_USERS");
58     content[1] = ownerstr;
59     table_add(table, content);
60     printf_mysql_query("SELECT COUNT(*) FROM `bans` WHERE `ban_channel` = '%d'", chan->channel_id);
61     res = mysql_use();
62     row2 = mysql_fetch_row(res);
63     content[0] = get_language_string(user, "NS_INFO_BANS");
64     content[1] = row2[0];
65     table_add(table, content);
66     content[0] = get_language_string(user, "NS_INFO_VISITED");
67     content[1] = timeToStr(user, time(0) - atoi(row[3]), 2, ownerstr);
68     table_add(table, content);
69     if(strcmp(row[4], "0")) {
70         content[0] = get_language_string(user, "NS_INFO_REGISTERED");
71         content[1] = timeToStr(user, time(0) - atoi(row[4]), 2, ownerstr);
72         table_add(table, content);
73     }
74     if(row[5]) {
75         content[0] = get_language_string(user, "NS_INFO_REGISTRAR");
76         content[1] = row[5];
77         table_add(table, content);
78     }
79     char **table_lines = table_end(table);
80     int i;
81     for(i = 0; i < table->entrys; i++) {
82         reply(getTextBot(), user, table_lines[i]);
83     }
84     table_free(table);
85     printf_mysql_query("SELECT `owner_history_time`, a.`user_user`, b.`user_user` FROM `owner_history` LEFT JOIN `users` a ON `owner_history_from_uid` = a.`user_id` LEFT JOIN `users` b ON `owner_history_to_uid` = b.`user_id` WHERE `owner_history_cid` = '%d'", chan->channel_id);
86     res = mysql_use();
87     if(mysql_num_rows(res)) {
88         reply(getTextBot(), user, "NS_INFO_OWNERLOG", chan->name);
89         time_t rawtime;
90         struct tm *timeinfo;
91         char timeBuf[80];
92         while((row = mysql_fetch_row(res))) {
93             rawtime = (time_t) atol(row[0]);
94             timeinfo = localtime(&rawtime);
95             strftime(timeBuf, 80, "%c", timeinfo);
96             reply(getTextBot(), user, "NS_INFO_OWNERCHANGE", row[1], row[2], timeBuf);
97         }
98     }
99 }