added some code & compiler information to cmd_netinfo
[NeonServV5.git] / modcmd.c
index bde88d19991210699d67513d9aadb46d038afb3f..a5a3e67a5514ddd1d3e288591ac1107c0aa08ca1 100644 (file)
--- a/modcmd.c
+++ b/modcmd.c
@@ -8,6 +8,8 @@
 #include "ChanUser.h"
 #include "WHOHandler.h"
 #include "lang.h"
+#include "mysqlConn.h"
+#include "DBHelper.h"
 
 struct trigger_callback {
     int botid;
@@ -19,7 +21,7 @@ struct trigger_callback {
 struct command_check_user_cache {
     struct ClientSocket *client, *textclient;
     struct UserNode *user;
-    struct ChanNode *chan;
+    struct ChanNode *chan, *sent_chan;
     char **argv;
     int argc;
     char *message;
@@ -35,9 +37,9 @@ static const struct default_language_entry msgtab[] = {
     {"MODCMD_LESS_PARAM_COUNT", "This command requires more parameters."},
     {"MODCMD_CHAN_REQUIRED",    "You must provide the name of a channel that exists."},
     {"MODCMD_AUTH_REQUIRED",    "You need to be authenticated with AuthServ to use this command."},
-    {"MODCMD_PRIVILEGED",       "§b%s§b is a privileged command."},
-    
-    
+    {"MODCMD_PRIVILEGED",       "\002%s\002 is a privileged command."},
+    {"MODCMD_PUBCMD",           "Public commands in \002%s\002 are restricted."},
+    {"MODCMD_ACCESS_DENIED",    "Access denied."},
     {NULL, NULL}
 };
 
@@ -85,26 +87,18 @@ static char* get_channel_trigger(int botid, struct ChanNode *chan) {
     return trigger->trigger;
 }
 
+static void handle_command_async(struct ClientSocket *client, struct UserNode *user, struct ChanNode *chan, struct ChanNode *sent_chan, struct cmd_binding *cbind, char **argv, int argc);
+
 static USERAUTH_CALLBACK(command_checked_auth) {
     struct command_check_user_cache *cache = data;
-    int execute_cmd = 1;
     tmp_text_client = cache->textclient;
-    if((cache->cbind->func->flags & CMDFLAG_REQUIRE_AUTH) && !(user->flags & USERFLAG_ISAUTHED)) {
-        reply(tmp_text_client, user, "MODCMD_AUTH_REQUIRED");
-        execute_cmd = 0;
-    }
-    else if((cache->cbind->func->flags & CMDFLAG_REQUIRE_GOD) && !isGodMode(user)) {
-        reply(tmp_text_client, user, "MODCMD_PRIVILEGED", cache->cbind->cmd);
-        execute_cmd = 0;
-    }
-    if(execute_cmd) {
-        cache->cbind->func->func(cache->client, user, cache->chan, cache->argv, cache->argc);
-    }
+    handle_command_async(cache->client, user, cache->chan, cache->sent_chan, cache->cbind, cache->argv, cache->argc);
     free(cache->message);
     free(cache);
 }
 
 static void handle_command(struct ClientSocket *client, struct UserNode *user, struct ChanNode *chan, char *message) {
+    struct ChanNode *sent_chan = chan;
     if(message[0] == '#') {
         char *chanName = message;
         message = strstr(message, " ");
@@ -212,25 +206,140 @@ static void handle_command(struct ClientSocket *client, struct UserNode *user, s
                 data->client = client;
                 data->user = user;
                 data->chan = chan;
+                data->sent_chan = sent_chan;
                 data->message = message;
                 data->cbind = cbind;
                 data->textclient = tmp_text_client;
                 get_userauth(user, command_checked_auth, data);
                 return;
+            } else
+                handle_command_async(client, user, chan, sent_chan, cbind, argv, argc);
+            break;
+        }
+    }
+    free(message);
+}
+
+static void handle_command_async(struct ClientSocket *client, struct UserNode *user, struct ChanNode *chan, struct ChanNode *sent_chan, struct cmd_binding *cbind, char **argv, int argc) {
+    MYSQL_RES *res;
+    MYSQL_ROW row;
+    int uaccess;
+    if((cbind->func->flags & CMDFLAG_REQUIRE_AUTH) && !(user->flags & USERFLAG_ISAUTHED)) {
+        reply(tmp_text_client, user, "MODCMD_AUTH_REQUIRED");
+        return;
+    }
+    if(sent_chan && sent_chan != chan) {
+        //check pubcmd of this channel
+        printf_mysql_query("SELECT `channel_pubcmd` FROM `channels` WHERE `channel_name` = '%s'", escape_string(sent_chan->name));
+        res = mysql_use();
+        if ((row = mysql_fetch_row(res)) != NULL) {
+            uaccess = getChannelAccess(user, sent_chan, 1);
+            if(row[0] && uaccess < atoi(row[0])) { //NOTE: HARDCODED DEFAULT: pubcmd = 0
+                reply(tmp_text_client, user, "MODCMD_PUBCMD", sent_chan->name);
+                return;
             }
-            if((cbind->func->flags & CMDFLAG_REQUIRE_AUTH) && !(user->flags & USERFLAG_ISAUTHED)) {
-                reply(tmp_text_client, user, "MODCMD_AUTH_REQUIRED");
-                break;
-            }
-            if((cbind->func->flags & CMDFLAG_REQUIRE_GOD) && !isGodMode(user)) {
+        }
+    }
+    int global_access = ((cbind->flags & CMDFLAG_OVERRIDE_GLOBAL_ACCESS) ? cbind->global_access : cbind->func->global_access);
+    if(global_access > 0) {
+        int user_global_access = 0;
+        printf_mysql_query("SELECT `user_access` FROM `users` WHERE `user_user` = '%s'", escape_string(user->auth));
+        res = mysql_use();
+        if ((row = mysql_fetch_row(res)) != NULL) {
+            user_global_access = atoi(row[0]);
+        }
+        if(user_global_access < global_access) {
+            if(!user_global_access)
                 reply(tmp_text_client, user, "MODCMD_PRIVILEGED", cbind->cmd);
-                break;
+            else
+                reply(tmp_text_client, user, "MODCMD_ACCESS_DENIED");
+            return;
+        }
+    }
+    if((cbind->func->flags & CMDFLAG_REGISTERED_CHAN)) {
+        check_mysql();
+        MYSQL_ROW defaults = NULL;
+        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, ", `%s`", str_a);
+                    access_count++;
+                } else {
+                    if(atoi(str_a) > minaccess)
+                        minaccess = atoi(str_a);
+                }
             }
-            cbind->func->func(client, user, chan, argv, argc);
-            break;
+            free(str_c);
+        }
+        if(!(chan->flags & CHANFLAG_REQUESTED_CHANINFO) || (sent_chan && sent_chan == chan) || access_count || minaccess) {
+            printf_mysql_query("SELECT `channel_id`, `channel_pubcmd` %s FROM `channels` WHERE `channel_name` = '%s'", access_list, escape_string(chan->name));
+            res = mysql_use();
+            if ((row = mysql_fetch_row(res)) != NULL) {
+                chan->flags |= CHANFLAG_CHAN_REGISTERED;
+                chan->channel_id = atoi(row[0]);
+                if((sent_chan && sent_chan == chan) || access_count || minaccess) {
+                    uaccess = getChannelAccess(user, chan, 1);
+                    if(uaccess < minaccess) {
+                        //ACCESS DENIED
+                        reply(tmp_text_client, user, "MODCMD_ACCESS_DENIED");
+                        return;
+                    }
+                    if(!row[1] && !defaults) {
+                        printf_mysql_query("SELECT `channel_id`, `channel_pubcmd` %s FROM `channels` WHERE `channel_name` = 'defaults'", access_list);
+                        defaults = mysql_fetch_row(mysql_use());
+                    }
+                    if(sent_chan && (sent_chan == chan) && uaccess < (row[1] ? atoi(row[1]) : atoi(defaults[1]))) {
+                        //PUBCMD
+                        reply(tmp_text_client, user, "MODCMD_PUBCMD", chan->name);
+                        return;
+                    }
+                    int i;
+                    for(i = 0; i < access_count; i++) {
+                        if(!row[2+i] && !defaults) {
+                            printf_mysql_query("SELECT `channel_id`, `channel_pubcmd` %s FROM `channels` WHERE `channel_name` = 'defaults'", access_list);
+                            defaults = mysql_fetch_row(mysql_use());
+                        }
+                        if(uaccess < (row[2+i] ? atoi(row[2+i]) : atoi(defaults[2+i]))) {
+                            reply(tmp_text_client, user, "MODCMD_ACCESS_DENIED");
+                            return;
+                        }
+                    }
+                }
+            }
+            chan->flags |= CHANFLAG_REQUESTED_CHANINFO;
+        }
+        if(!(chan->flags & CHANFLAG_CHAN_REGISTERED)) {
+            reply(tmp_text_client, user, "MODCMD_CHAN_REQUIRED");
+            return;
+        }
+        printf_mysql_query("SELECT `botid` FROM `bot_channels` LEFT JOIN `bots` ON `bot_channels`.`botid` = `bots`.`id` WHERE `chanid` = '%d' AND `botclass` = '%d'", chan->channel_id, client->botid);
+        res = mysql_use();
+        if ((row = mysql_fetch_row(res)) == NULL) {
+            reply(tmp_text_client, user, "MODCMD_CHAN_REQUIRED");
+            return;
         }
     }
-    free(message);
+    if((cbind->func->flags & CMDFLAG_REQUIRE_GOD) && !isGodMode(user)) {
+        reply(tmp_text_client, user, "MODCMD_PRIVILEGED", cbind->cmd);
+        return;
+    }
+    cbind->func->func(client, user, chan, argv, argc);
 }
 
 static void got_chanmsg(struct UserNode *user, struct ChanNode *chan, char *message) {
@@ -267,7 +376,7 @@ static void got_privmsg(struct UserNode *user, struct UserNode *target, char *me
     }
 }
 
-int register_command(int botid, char *name, cmd_bind_t *func, int paramcount, unsigned int flags) {
+int register_command(int botid, char *name, cmd_bind_t *func, int paramcount, unsigned int flags, char *channel_access, int global_access) {
     struct cmd_function *cmdfunc;
     for(cmdfunc = cmd_functions; cmdfunc; cmdfunc = cmdfunc->next) {
         if(cmdfunc->botid == botid && strcmp(cmdfunc->name, name) == 0)
@@ -281,8 +390,10 @@ int register_command(int botid, char *name, cmd_bind_t *func, int paramcount, un
     cmdfunc->botid = botid;
     cmdfunc->name = strdup(name);
     cmdfunc->func = func;
-    cmdfunc->flags = 0;
+    cmdfunc->flags = flags;
     cmdfunc->paramcount = paramcount;
+    cmdfunc->channel_access = channel_access;
+    cmdfunc->global_access = global_access;
     cmdfunc->next = cmd_functions;
     cmd_functions = cmdfunc;
     return 1;
@@ -336,7 +447,8 @@ int bind_cmd_to_function(int botid, char *cmd, struct cmd_function *func) {
     cbind->cmd = strdup(cmd);
     cbind->func = func;
     cbind->parameters = NULL;
-    cbind->gaccess = 0;
+    cbind->global_access = 0;
+    cbind->channel_access = NULL;
     cbind->flags = 0;
     cbind->next = cmd_binds[bind_index];
     cmd_binds[bind_index] = cbind;
@@ -366,7 +478,8 @@ int bind_cmd_to_command(int botid, char *cmd, char *func) {
     cbind->func = cmdfunc;
     cbind->next = cmd_binds[bind_index];
     cbind->parameters = NULL;
-    cbind->gaccess = 0;
+    cbind->global_access = 0;
+    cbind->channel_access = NULL;
     cbind->flags = 0;
     cmd_binds[bind_index] = cbind;
     return 1;
@@ -412,6 +525,8 @@ void free_modcmd() {
             free(cbind->cmd);
             if(cbind->parameters)
                 free(cbind->parameters);
+            if(cbind->channel_access)
+                free(cbind->channel_access);
             free(cbind);
         }
     }
@@ -432,10 +547,49 @@ void free_modcmd() {
 }
 
 void bind_set_parameters(int botid, char *cmd, char *parameters) {
-    
+    int bind_index = get_binds_index(cmd[0]);
+    struct cmd_binding *cbind;
+    for(cbind = cmd_binds[bind_index]; cbind; cbind = cbind->next) {
+        if(cbind->botid == botid && strcmp(cbind->cmd, cmd) == 0) {
+            if(cbind->parameters)
+                free(cbind->parameters);
+            cbind->parameters = strdup(parameters);
+            return;
+        }
+    }
 }
 
-void bind_set_gaccess(int botid, char *cmd, int gaccess) {
-    
+void bind_set_global_access(int botid, char *cmd, int gaccess) {
+    int bind_index = get_binds_index(cmd[0]);
+    struct cmd_binding *cbind;
+    for(cbind = cmd_binds[bind_index]; cbind; cbind = cbind->next) {
+        if(cbind->botid == botid && strcmp(cbind->cmd, cmd) == 0) {
+            if(gaccess > -1) {
+                cbind->global_access = gaccess;
+                cbind->flags |= CMDFLAG_OVERRIDE_GLOBAL_ACCESS;
+            } else {
+                cbind->flags &= ~CMDFLAG_OVERRIDE_GLOBAL_ACCESS;
+            }
+            return;
+        }
+    }
 }
 
+void bind_set_channel_access(int botid, char *cmd, char *chanaccess) {
+    int bind_index = get_binds_index(cmd[0]);
+    struct cmd_binding *cbind;
+    for(cbind = cmd_binds[bind_index]; cbind; cbind = cbind->next) {
+        if(cbind->botid == botid && strcmp(cbind->cmd, cmd) == 0) {
+            if(cbind->channel_access)
+                free(cbind->channel_access);
+            if(chanaccess) {
+                cbind->channel_access = strdup(chanaccess);
+                cbind->flags |= CMDFLAG_OVERRIDE_CHANNEL_ACCESS;
+            } else {
+                cbind->channel_access = NULL;
+                cbind->flags &= ~CMDFLAG_OVERRIDE_CHANNEL_ACCESS;
+            }
+            return;
+        }
+    }
+}