]> jfr.im git - irc/quakenet/newserv.git/blame - newsearch/ns-authname.c
SearchCtx should contain 'type' - this is to make life easier when defining new searc...
[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
c8be5183
CP
10void *authname_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput);
11void authname_free(searchCtx *ctx, struct searchNode *thenode);
052247fa 12
f33f3f52 13struct searchNode *authname_parse(searchCtx *ctx, int argc, char **argv) {
052247fa
CP
14 struct searchNode *thenode;
15
f33f3f52 16 if (ctx->type != SEARCHTYPE_NICK) {
052247fa
CP
17 parseError = "authname: this function is only valid for nick searches.";
18 return NULL;
19 }
20
9ce4f0be
IB
21 if (!(thenode=(struct searchNode *)malloc(sizeof (struct searchNode)))) {
22 parseError = "malloc: could not allocate memory for this search.";
23 return NULL;
24 }
052247fa
CP
25
26 thenode->returntype = RETURNTYPE_STRING;
27 thenode->localdata = NULL;
28 thenode->exe = authname_exe;
29 thenode->free = authname_free;
30
31 return thenode;
32}
33
c8be5183 34void *authname_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput) {
052247fa
CP
35 nick *np = (nick *)theinput;
36
052247fa
CP
37 if (IsAccount(np))
38 return np->authname;
39 else
c7f7a584 40 return ""; /* will cast to a FALSE */
052247fa
CP
41
42}
43
c8be5183 44void authname_free(searchCtx *ctx, struct searchNode *thenode) {
052247fa
CP
45 free(thenode);
46}
47