]> jfr.im git - irc/quakenet/newserv.git/blob - newsearch/ns-host.c
SearchCtx should contain 'type' - this is to make life easier when defining new searc...
[irc/quakenet/newserv.git] / newsearch / ns-host.c
1 /*
2 * HOST functionality
3 */
4
5 #include "newsearch.h"
6
7 #include <stdio.h>
8 #include <stdlib.h>
9
10 #include "../irc/irc_config.h"
11 #include "../lib/irc_string.h"
12
13 void *host_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput);
14 void *host_exe_real(searchCtx *ctx, struct searchNode *thenode, void *theinput);
15 void host_free(searchCtx *ctx, struct searchNode *thenode);
16
17 struct searchNode *host_parse(searchCtx *ctx, int argc, char **argv) {
18 struct searchNode *thenode;
19
20 if (ctx->type != SEARCHTYPE_NICK) {
21 parseError = "host: this function is only valid for nick searches.";
22 return NULL;
23 }
24
25 if (!(thenode=(struct searchNode *)malloc(sizeof (struct searchNode)))) {
26 parseError = "malloc: could not allocate memory for this search.";
27 return NULL;
28 }
29
30 thenode->returntype = RETURNTYPE_STRING;
31 if (!(thenode->localdata = (void *)malloc(HOSTLEN+1))) {
32 /* couldn't malloc() memory for thenode->localdata, so free thenode to avoid leakage */
33 parseError = "malloc: could not allocate memory for this search.";
34 free(thenode);
35 return NULL;
36 }
37 thenode->exe = host_exe;
38 thenode->free = host_free;
39
40 /* Allow "host real" to match realhost */
41
42 if (argc>0 && !ircd_strcmp(argv[0],"real")) {
43 thenode->exe = host_exe_real;
44 }
45
46 return thenode;
47 }
48
49 void *host_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput) {
50 nick *np = (nick *)theinput;
51 char *buf = thenode->localdata;
52
53 if (IsSetHost(np)) {
54 return np->sethost->content;
55 } else if (IsHideHost(np)) {
56 sprintf(buf,"%s.%s",np->authname,HIS_HIDDENHOST);
57 return buf;
58 } else {
59 return np->host->name->content;
60 }
61 }
62
63 void *host_exe_real(searchCtx *ctx, struct searchNode *thenode, void *theinput) {
64 nick *np = (nick *)theinput;
65
66 return np->host->name->content;
67 }
68
69 void host_free(searchCtx *ctx, struct searchNode *thenode) {
70 free(thenode->localdata);
71 free(thenode);
72 }