]> jfr.im git - solanum.git/blobdiff - extensions/extb_oper.c
modules: add origin field to V2
[solanum.git] / extensions / extb_oper.c
index ff859aa4035a7c29aac6e5119cc3099ac3fdd553..0b257332020804c33043d0370ad4c13ca89b4e2b 100644 (file)
@@ -1,13 +1,13 @@
 /*
  * Oper extban type: matches opers
  * -- jilles
- *
- * $Id: extb_oper.c 1299 2006-05-11 15:43:03Z jilles $
  */
 
 #include "stdinc.h"
 #include "modules.h"
 #include "client.h"
+#include "privilege.h"
+#include "s_newconf.h"
 #include "ircd.h"
 
 static int _modinit(void);
@@ -36,9 +36,16 @@ static int eb_oper(const char *data, struct Client *client_p,
 
        (void)chptr;
        (void)mode_type;
-       /* perhaps use data somehow? (opernick/flags?) */
-       /* so deny any bans with data for now */
+
        if (data != NULL)
-               return EXTBAN_INVALID;
+       {
+               struct PrivilegeSet *set = privilegeset_get(data);
+               if (set != NULL && client_p->localClient->privset == set)
+                       return EXTBAN_MATCH;
+
+               /* $o:admin or whatever */
+               return HasPrivilege(client_p, data) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
+       }
+
        return IsOper(client_p) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
 }