]> jfr.im git - irc/quakenet/newserv.git/blobdiff - newsearch/ns-country.c
LUA: add function for channel chanop notice
[irc/quakenet/newserv.git] / newsearch / ns-country.c
index ffd87813b5e0f1468cb83dc64da0d0ff3c6c8e58..3f8588270be54d0ea6d4b5857909208d0baa4c32 100644 (file)
 #include "../geoip/geoip.h"
 #include "../core/modules.h"
 
-void *country_exe(struct searchNode *thenode, void *theinput);
-void country_free(struct searchNode *thenode);
+void *country_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput);
+void country_free(searchCtx *ctx, struct searchNode *thenode);
 
 int ext;
 
-struct searchNode *country_parse(int type, int argc, char **argv) {
-  struct searchNode *thenode;
+struct searchNode *country_parse(searchCtx *ctx, int argc, char **argv) {
+  struct searchNode *thenode, *countrysn;
   GeoIP_LookupCode l;
-  int target;
-
-  if (type != SEARCHTYPE_NICK) {
-    parseError = "country: this function is only valid for nick searches.";
-    return NULL;
-  }
-
+  long target;
+  char *p;
+  
   if (argc<1) {
     parseError = "country: usage: country <country 2 character ISO code>";
     return NULL;
@@ -39,7 +35,17 @@ struct searchNode *country_parse(int type, int argc, char **argv) {
   }
   
   l = ndlsym("geoip", "geoip_lookupcode");
-  target = l(argv[0]);
+  if(!l) {
+    parseError = "unable to lookup geoip function pointer";
+    return NULL;
+  }
+  
+  if (!(countrysn=argtoconststr("country", ctx, argv[0], &p)))
+    return NULL;
+    
+  target = l(p);
+  countrysn->free(ctx, countrysn);
+  
   if(target == -1) {
     parseError = "country: invalid country.";
     return NULL;
@@ -58,9 +64,9 @@ struct searchNode *country_parse(int type, int argc, char **argv) {
   return thenode;
 }
 
-void *country_exe(struct searchNode *thenode, void *theinput) {
+void *country_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput) {
   nick *np = (nick *)theinput;
-  int country = (int)thenode->localdata, rc = (int)np->exts[ext];
+  long country = (long)thenode->localdata, rc = (long)np->exts[ext];
 
   if(country == rc)
     return (void *)1;
@@ -68,6 +74,6 @@ void *country_exe(struct searchNode *thenode, void *theinput) {
   return (void *)0;
 }
 
-void country_free(struct searchNode *thenode) {
+void country_free(searchCtx *ctx, struct searchNode *thenode) {
   free(thenode);
 }