]> jfr.im git - irc/quakenet/newserv.git/blob - newsearch/ns-authname.c
Add jupe support
[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 #include "../nick/nick.h"
11
12 void *authname_exe(struct searchNode *thenode, int type, void *theinput);
13 void authname_free(struct searchNode *thenode);
14
15 struct searchNode *authname_parse(int type, int argc, char **argv) {
16 struct searchNode *thenode;
17
18 if (type != SEARCHTYPE_NICK) {
19 parseError = "authname: this function is only valid for nick searches.";
20 return NULL;
21 }
22
23 thenode=(struct searchNode *)malloc(sizeof (struct searchNode));
24
25 thenode->returntype = RETURNTYPE_STRING;
26 thenode->localdata = NULL;
27 thenode->exe = authname_exe;
28 thenode->free = authname_free;
29
30 return thenode;
31 }
32
33 void *authname_exe(struct searchNode *thenode, int type, void *theinput) {
34 nick *np = (nick *)theinput;
35
36 if (type != RETURNTYPE_STRING) {
37 return (void *)1;
38 }
39
40 if (IsAccount(np))
41 return np->authname;
42 else
43 return "[NULL]";
44
45 }
46
47 void authname_free(struct searchNode *thenode) {
48 free(thenode);
49 }
50