]> jfr.im git - irc/quakenet/newserv.git/blob - newsearch/ns-authname.c
merge
[irc/quakenet/newserv.git] / newsearch / ns-authname.c
1 /*
2 * AUTHNAME functionality
3 */
4
5 #include "newsearch.h"
6
7 #include <stdio.h>
8 #include <stdlib.h>
9
10 void *authname_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput);
11 void authname_free(searchCtx *ctx, struct searchNode *thenode);
12
13 struct searchNode *authname_parse(searchCtx *ctx, int argc, char **argv) {
14 struct searchNode *thenode;
15
16 if (!(thenode=(struct searchNode *)malloc(sizeof (struct searchNode)))) {
17 parseError = "malloc: could not allocate memory for this search.";
18 return NULL;
19 }
20
21 thenode->returntype = RETURNTYPE_STRING;
22 thenode->localdata = NULL;
23 thenode->exe = authname_exe;
24 thenode->free = authname_free;
25
26 return thenode;
27 }
28
29 void *authname_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput) {
30 nick *np = (nick *)theinput;
31
32 if (IsAccount(np))
33 return np->authname;
34 else
35 return ""; /* will cast to a FALSE */
36
37 }
38
39 void authname_free(searchCtx *ctx, struct searchNode *thenode) {
40 free(thenode);
41 }
42