added cmd_commands and changed cmd_command to a global command
[NeonServV5.git] / src / cmd_neonserv_command.c
diff --git a/src/cmd_neonserv_command.c b/src/cmd_neonserv_command.c
deleted file mode 100644 (file)
index 1f5b172..0000000
+++ /dev/null
@@ -1,175 +0,0 @@
-/* cmd_neonserv_command.c - NeonServ v5.2
- * Copyright (C) 2011  Philipp Kreil (pk910)
- * 
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * 
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License 
- * along with this program. If not, see <http://www.gnu.org/licenses/>. 
- */
-
-#include "cmd_neonserv.h"
-
-/*
-* argv[0-1]     command
-*/
-static int neonserv_cmd_command_chanaccess(struct cmd_binding *cbind, struct ChanNode *chan);
-static int neonserv_cmd_command_operaccess(struct cmd_binding *cbind);
-
-CMD_BIND(neonserv_cmd_command) {
-    char *ident;
-    MYSQL_RES *res;
-    MYSQL_ROW row;
-    struct cmd_binding *cbind = find_cmd_binding(client->botid, argv[0]);
-    if (!cbind) {
-        reply(getTextBot(), user, "NS_UNBIND_NOT_FOUND", argv[0]);
-        return;
-    }
-    ident = argv[0];
-    char parameters[MAXLEN];
-    if(cbind->paramcount) {
-        int i, parampos = 0;
-        for(i = 0; i < cbind->paramcount; i++) {
-            parampos += sprintf(parameters + parampos, (i ? " %s" : "%s"), cbind->parameters[i]);
-        }
-    } else
-        parameters[0] = '\0';
-    reply(getTextBot(), user, "NS_COMMAND_BINDING", cbind->cmd, cbind->func->name, parameters);
-    if(chan)
-        reply(getTextBot(), user, "NS_COMMAND_ACCESS", neonserv_cmd_command_chanaccess(cbind, chan), neonserv_cmd_command_operaccess(cbind));
-    printf_mysql_query("SELECT `user_lang` FROM `users` WHERE `user_user` = '%s'", escape_string(user->auth));
-    res = mysql_use();
-    char *lang;
-    if ((row = mysql_fetch_row(res)) != NULL)
-        lang = row[0];
-    else
-        lang = "en";
-    printf_mysql_query("SELECT `text` FROM `help` WHERE `lang` = '%s' AND `ident` = '%s'", escape_string(lang), escape_string(ident));
-    res = mysql_use();
-    if ((row = mysql_fetch_row(res)) == NULL) {
-        if(stricmp(lang, "en")) {
-            printf_mysql_query("SELECT `text` FROM `help` WHERE `lang` = 'en' AND `ident` = '%s'", escape_string(ident));
-            res = mysql_use();
-        }
-        if ((row = mysql_fetch_row(res)) == NULL) {
-            printf_mysql_query("SELECT `text` FROM `help` WHERE `lang` = '%s' AND `ident` = '%s'", escape_string(lang), escape_string(cbind->func->name));
-            res = mysql_use();
-            if ((row = mysql_fetch_row(res)) == NULL) {
-                if(stricmp(lang, "en")) {
-                    printf_mysql_query("SELECT `text` FROM `help` WHERE `lang` = 'en' AND `ident` = '%s'", escape_string(cbind->func->name));
-                    res = mysql_use();
-                }
-                if ((row = mysql_fetch_row(res)) == NULL) {
-                    return;
-                }
-            }
-        }
-    }
-    char sendBuf[MAXLEN];
-    int sendBufPos = 0;
-    int i;
-    for(i = 0; i < strlen(row[0]); i++) {
-        switch(row[0][i]) {
-            case '\n':
-                if(sendBufPos) {
-                    sendBuf[sendBufPos] = '\0';
-                    reply(getTextBot(), user, "%s", sendBuf);
-                    sendBufPos = 0;
-                }
-                break;
-            case '$':
-                switch(row[0][i+1]) {
-                    case 'b':
-                        sendBuf[sendBufPos++] = '\002';
-                        i++;
-                        break;
-                    case 'k':
-                        sendBuf[sendBufPos++] = '\003';
-                        i++;
-                        break;
-                    case 'u':
-                        sendBuf[sendBufPos++] = '\031';
-                        i++;
-                        break;
-                    case 'C':
-                    case 'S':
-                        sendBufPos += sprintf(sendBuf + sendBufPos, "%s", client->user->nick);
-                        i++;
-                        break;
-                    default:
-                        sendBuf[sendBufPos++] = '$';
-                        break;
-                }
-                break;
-            default:
-                sendBuf[sendBufPos++] = row[0][i];
-                break;
-        }
-    }
-    if(sendBufPos) {
-        sendBuf[sendBufPos] = '\0';
-        reply(getTextBot(), user, "%s", sendBuf);
-        sendBufPos = 0;
-    }
-}
-
-static int neonserv_cmd_command_chanaccess(struct cmd_binding *cbind, struct ChanNode *chan) {
-    char access_list[256];
-    int access_pos = 0;
-    int access_count = 0;
-    int minaccess = 0;
-    char *str_a, *str_b = cbind->func->channel_access, *str_c;
-    if(cbind->flags & CMDFLAG_OVERRIDE_CHANNEL_ACCESS)
-        str_b = cbind->channel_access;
-    access_list[0] = '\0';
-    if(str_b) {
-        str_c = strdup(str_b);
-        str_b = str_c;
-        while((str_a = str_b)) {
-            str_b = strstr(str_a, ",");
-            if(str_b) {
-                *str_b = '\0';
-                str_b++;
-            }
-            if(*str_a == '#') {
-                str_a++;
-                access_pos += sprintf(access_list+access_pos, (access_pos ? ", `%s`" : "`%s`"), str_a);
-                access_count++;
-            } else {
-               if(atoi(str_a) > minaccess)
-                     minaccess = atoi(str_a);
-            }
-        }
-        free(str_c);
-    }
-    if(access_count) {
-        MYSQL_RES *res;
-        MYSQL_ROW row, defaults = NULL;
-        printf_mysql_query("SELECT %s FROM `channels` WHERE `channel_name` = '%s'", access_list, escape_string(chan->name));
-        res = mysql_use();
-        if ((row = mysql_fetch_row(res)) != NULL) {
-            int i, caccess;
-            for(i = 0; i < access_count; i++) {
-                if(!row[i] && !defaults) {
-                    printf_mysql_query("SELECT %s FROM `channels` WHERE `channel_name` = 'defaults'", access_list);
-                    defaults = mysql_fetch_row(mysql_use());
-                }
-                caccess = (row[i] ? atoi(row[i]) : atoi(defaults[i]));
-                if(caccess > minaccess)
-                     minaccess = caccess;
-            }
-        }
-    }
-    return minaccess;
-}
-
-static int neonserv_cmd_command_operaccess(struct cmd_binding *cbind) {
-    return ((cbind->flags & CMDFLAG_OVERRIDE_GLOBAL_ACCESS) ? cbind->global_access : cbind->func->global_access);
-}