]> jfr.im git - irc/quakenet/newserv.git/blame - newsearch/ns-authname.c
r562@blue (orig r476): slug | 2006-05-01 20:48:42 +0100
[irc/quakenet/newserv.git] / newsearch / ns-authname.c
CommitLineData
052247fa
CP
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
12void *authname_exe(struct searchNode *thenode, int type, void *theinput);
13void authname_free(struct searchNode *thenode);
14
15struct 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
33void *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
47void authname_free(struct searchNode *thenode) {
48 free(thenode);
49}
50