]> jfr.im git - irc/quakenet/newserv.git/blob - newsearch/ns-channel.c
newsearch changes to support addition of trust_search/patriciasearch
[irc/quakenet/newserv.git] / newsearch / ns-channel.c
1 /*
2 * CHANNEL functionality
3 */
4
5 #include "newsearch.h"
6
7 #include <stdio.h>
8 #include <stdlib.h>
9
10 #include "../channel/channel.h"
11
12 void *channel_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput);
13 void channel_free(searchCtx *ctx, struct searchNode *thenode);
14
15 struct searchNode *channel_parse(searchCtx *ctx, int argc, char **argv) {
16 struct searchNode *thenode;
17 channel *cp;
18
19 if (argc<1) {
20 parseError = "channel: usage: channel <channel name>";
21 return NULL;
22 }
23
24 if (!(cp=findchannel(argv[0]))) {
25 parseError = "channel: unknown channel";
26 return NULL;
27 }
28
29 if (!(thenode=(struct searchNode *)malloc(sizeof (struct searchNode)))) {
30 parseError = "malloc: could not allocate memory for this search.";
31 return NULL;
32 }
33
34 thenode->returntype = RETURNTYPE_BOOL;
35 thenode->localdata = cp;
36 thenode->exe = channel_exe;
37 thenode->free = channel_free;
38
39 return thenode;
40 }
41
42 void *channel_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput) {
43 nick *np = (nick *)theinput;
44 channel *cp = thenode->localdata;
45
46 if (getnumerichandlefromchanhash(cp->users, np->numeric)) {
47 return (void *)1;
48 } else {
49 return (void *)0;
50 }
51 }
52
53 void channel_free(searchCtx *ctx, struct searchNode *thenode) {
54 free(thenode);
55 }
56