X-Git-Url: https://jfr.im/git/irc/quakenet/newserv.git/blobdiff_plain/74620ebafeb4a94b61a3747e39d27a4ec7a9fe5a..7e032dc63479ed3d0b76fe71c05303fbe7dbc53a:/newsearch/ns-channel.c diff --git a/newsearch/ns-channel.c b/newsearch/ns-channel.c index badde2ff..0d364775 100644 --- a/newsearch/ns-channel.c +++ b/newsearch/ns-channel.c @@ -9,27 +9,24 @@ #include "../channel/channel.h" -void *channel_exe(struct searchNode *thenode, void *theinput); -void channel_free(struct searchNode *thenode); - -struct searchNode *channel_parse(int type, int argc, char **argv) { - struct searchNode *thenode; - channel *cp; - - if (type != SEARCHTYPE_NICK) { - parseError = "channel: this function is only valid for nick searches."; - return NULL; - } +void *channel_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput); +void channel_free(searchCtx *ctx, struct searchNode *thenode); +struct searchNode *channel_parse(searchCtx *ctx, int argc, char **argv) { + struct searchNode *thenode, *convsn; + chanindex *cip; + char *p; + if (argc<1) { parseError = "channel: usage: channel "; return NULL; } - if (!(cp=findchannel(argv[0]))) { - parseError = "channel: unknown channel"; + if (!(convsn=argtoconststr("channel", ctx, argv[0], &p))) return NULL; - } + + cip=findorcreatechanindex(p); + convsn->free(ctx, convsn); if (!(thenode=(struct searchNode *)malloc(sizeof (struct searchNode)))) { parseError = "malloc: could not allocate memory for this search."; @@ -37,25 +34,41 @@ struct searchNode *channel_parse(int type, int argc, char **argv) { } thenode->returntype = RETURNTYPE_BOOL; - thenode->localdata = cp; + thenode->localdata = cip; thenode->exe = channel_exe; thenode->free = channel_free; return thenode; } -void *channel_exe(struct searchNode *thenode, void *theinput) { +void *channel_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput) { nick *np = (nick *)theinput; - channel *cp = thenode->localdata; + chanindex *cip = thenode->localdata; + channel *cp; + whowas *ww; + int i; + + if (ctx->searchcmd == reg_nicksearch) { + cp = cip->channel; - if (getnumerichandlefromchanhash(cp->users, np->numeric)) { - return (void *)1; + if (!cp) + return (void *)0; + + if (getnumerichandlefromchanhash(cp->users, np->numeric)) + return (void *)1; } else { - return (void *)0; + ww = (whowas *)np->next; /* Eww. */ + + for (i = 0; i < WW_MAXCHANNELS; i++) + if (ww->channels[i] == cip) + return (void *)1; } + + return (void *)0; } -void channel_free(struct searchNode *thenode) { +void channel_free(searchCtx *ctx, struct searchNode *thenode) { + releasechanindex(thenode->localdata); free(thenode); }