summaryrefslogtreecommitdiff
path: root/src/irc/core/irc-special-vars.c
blob: 09e0db111adefdd26df8ae0b17341938e0f94d79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
/*
 irc-special-vars.c : irssi

    Copyright (C) 2000 Timo Sirainen

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/

#include "module.h"
#include "misc.h"
#include "special-vars.h"
#include "settings.h"

#include "irc.h"
#include "irc-server.h"
#include "channels.h"
#include "query.h"

static char *last_privmsg_from;
static char *last_sent_msg, *last_sent_msg_body;
static char *last_join, *last_public_from;

/* last person who sent you a MSG */
static char *expando_lastmsg(void *server, void *item, int *free_ret)
{
	return last_privmsg_from;
}

/* last person to whom you sent a MSG */
static char *expando_lastmymsg(void *server, void *item, int *free_ret)
{
	return last_sent_msg;
}

/* last person to join a channel you are on */
static char *expando_lastjoin(void *server, void *item, int *free_ret)
{
	return last_join;
}

/* last person to send a public message to a channel you are on */
static char *expando_lastpublic(void *server, void *item, int *free_ret)
{
	return last_public_from;
}

/* text of your AWAY message, if any */
static char *expando_awaymsg(void *server, void *item, int *free_ret)
{
	IRC_SERVER_REC *ircserver = server;

	return ircserver == NULL ? "" : ircserver->away_reason;
}

/* body of last MSG you sent */
static char *expando_lastmymsg_body(void *server, void *item, int *free_ret)
{
	return last_sent_msg_body;
}

/* current channel */
static char *expando_channel(void *server, void *item, int *free_ret)
{
        CHANNEL_REC *channel;

        channel = irc_item_channel(item);
	return channel == NULL ? NULL : channel->name;
}

/* current server numeric being processed */
static char *expando_server_numeric(void *server, void *item, int *free_ret)
{
	return current_server_event == NULL ||
		!is_numeric(current_server_event, 0) ? NULL :
		current_server_event;
}

/* channel you were last INVITEd to */
static char *expando_last_invite(void *server, void *item, int *free_ret)
{
	IRC_SERVER_REC *ircserver = server;

	return ircserver == NULL ? "" : ircserver->last_invite;
}

/* modes of current channel, if any */
static char *expando_chanmode(void *server, void *item, int *free_ret)
{
        CHANNEL_REC *channel;

	channel = irc_item_channel(item);
	if (channel == NULL) return NULL;

	*free_ret = TRUE;
	return channel_get_mode(channel);
}

/* current nickname */
static char *expando_nick(void *server, void *item, int *free_ret)
{
	IRC_SERVER_REC *ircserver = server;

	return ircserver == NULL ? "" : ircserver->nick;
}

/* value of STATUS_OPER if you are an irc operator */
static char *expando_statusoper(void *server, void *item, int *free_ret)
{
	IRC_SERVER_REC *ircserver = server;

	return ircserver == NULL || !ircserver->server_operator ? "" :
		(char *) settings_get_str("STATUS_OPER");
}

/* if you are a channel operator in $C, expands to a '@' */
static char *expando_chanop(void *server, void *item, int *free_ret)
{
        CHANNEL_REC *channel;

	channel = irc_item_channel(item);
	if (channel == NULL) return NULL;

	return channel->chanop ? "@" : "";
}

/* nickname of whomever you are QUERYing */
static char *expando_query(void *server, void *item, int *free_ret)
{
	QUERY_REC *query;

        query = irc_item_query(item);
	return query == NULL ? NULL : query->nick;
}

/* version of current server */
static char *expando_serverversion(void *server, void *item, int *free_ret)
{
	IRC_SERVER_REC *ircserver = server;

	return ircserver == NULL ? "" : ircserver->version;
}

/* current server name */
static char *expando_servername(void *server, void *item, int *free_ret)
{
	IRC_SERVER_REC *ircserver = server;

	return ircserver == NULL ? "" : ircserver->real_address;
}

/* target of current input (channel or QUERY nickname) */
static char *expando_target(void *server, void *item, int *free_ret)
{
	if (!irc_item_check(item))
		return NULL;

	return ((WI_IRC_REC *) item)->name;
}
/* your /userhost $N address (user@host) */
static char *expando_userhost(void *server, void *item, int *free_ret)
{
	IRC_SERVER_REC *ircserver = server;
	const char *username;
	char hostname[100];

	/* prefer the _real_ /userhost reply */
	if (ircserver != NULL && ircserver->userhost != NULL)
		return ircserver->userhost;

	/* haven't received userhost reply yet. guess something */
	*free_ret = TRUE;
	if (server == NULL)
		username = settings_get_str("user_name");
	else
		username = ircserver->connrec->username;

	if (gethostname(hostname, sizeof(hostname)) != 0 || *hostname == '\0')
		strcpy(hostname, "??");
	return g_strconcat(username, "@", hostname, NULL);;
}

/* value of REALNAME */
static char *expando_realname(void *server, void *item, int *free_ret)
{
	IRC_SERVER_REC *ircserver = server;

	return ircserver == NULL ? "" : ircserver->connrec->realname;
}

/* Server tag */
static char *expando_servertag(void *server, void *item, int *free_ret)
{
	IRC_SERVER_REC *ircserver = server;

	return ircserver == NULL ? "" : ircserver->tag;
}

/* Server ircnet */
static char *expando_ircnet(void *server, void *item, int *free_ret)
{
	IRC_SERVER_REC *ircserver = server;

	return ircserver == NULL ? "" : ircserver->connrec->ircnet;
}

static void event_privmsg(const char *data, IRC_SERVER_REC *server, const char *nick, const char *addr)
{
	char *params, *target, *msg;

	g_return_if_fail(data != NULL);

	params = event_get_params(data, 2 | PARAM_FLAG_GETREST, &target, &msg);

	if (!ischannel(*target)) {
		g_free_not_null(last_privmsg_from);
		last_privmsg_from = g_strdup(nick);
	} else {
		g_free_not_null(last_public_from);
		last_public_from = g_strdup(nick);
	}

	g_free(params);
}

static void cmd_msg(const char *data, IRC_SERVER_REC *server)
{
	char *params, *target, *msg;

	g_return_if_fail(data != NULL);

	params = cmd_get_params(data, 2 | PARAM_FLAG_GETREST, &target, &msg);
	if (*target != '\0' && *msg != '\0' && !ischannel(*target) && isalpha(*target)) {
		g_free_not_null(last_sent_msg);
		g_free_not_null(last_sent_msg_body);
		last_sent_msg = g_strdup(target);
		last_sent_msg_body = g_strdup(msg);
	}

	g_free(params);
}

static void event_join(const char *data, IRC_SERVER_REC *server, const char *nick, const char *address)
{
	g_return_if_fail(nick != NULL);

	if (g_strcasecmp(nick, server->nick) != 0) {
		g_free_not_null(last_join);
		last_join = g_strdup(nick);
	}
}

void irc_special_vars_init(void)
{
	settings_add_str("misc", "STATUS_OPER", "*");

	last_privmsg_from = NULL;
	last_sent_msg = NULL; last_sent_msg_body = NULL;
	last_join = NULL; last_public_from = NULL;

	expando_create(",", expando_lastmsg);
	expando_create(".", expando_lastmymsg);
	expando_create(":", expando_lastjoin);
	expando_create(";", expando_lastpublic);
	expando_create("A", expando_awaymsg);
	expando_create("B", expando_lastmymsg_body);
	expando_create("C", expando_channel);
	expando_create("H", expando_server_numeric);
	expando_create("I", expando_last_invite);
	expando_create("M", expando_chanmode);
	expando_create("N", expando_nick);
	expando_create("O", expando_statusoper);
	expando_create("P", expando_chanop);
	expando_create("Q", expando_query);
	expando_create("R", expando_serverversion);
	expando_create("S", expando_servername);
	expando_create("T", expando_target);
	expando_create("X", expando_userhost);
	expando_create("Y", expando_realname);
	expando_create("tag", expando_servertag);
	expando_create("ircnet", expando_ircnet);

	signal_add("event privmsg", (SIGNAL_FUNC) event_privmsg);
	signal_add("event join", (SIGNAL_FUNC) event_join);
	signal_add("command msg", (SIGNAL_FUNC) cmd_msg);
}

void irc_special_vars_deinit(void)
{
	g_free_not_null(last_privmsg_from);
	g_free_not_null(last_sent_msg); g_free_not_null(last_sent_msg_body);
	g_free_not_null(last_join); g_free_not_null(last_public_from);

	expando_destroy(",", expando_lastmsg);
	expando_destroy(".", expando_lastmymsg);
	expando_destroy(":", expando_lastjoin);
	expando_destroy(";", expando_lastpublic);
	expando_destroy("A", expando_awaymsg);
	expando_destroy("B", expando_lastmymsg_body);
	expando_destroy("C", expando_channel);
	expando_destroy("H", expando_server_numeric);
	expando_destroy("I", expando_last_invite);
	expando_destroy("M", expando_chanmode);
	expando_destroy("N", expando_nick);
	expando_destroy("O", expando_statusoper);
	expando_destroy("P", expando_chanop);
	expando_destroy("Q", expando_query);
	expando_destroy("R", expando_serverversion);
	expando_destroy("S", expando_servername);
	expando_destroy("T", expando_target);
	expando_destroy("X", expando_userhost);
	expando_destroy("Y", expando_realname);
	expando_destroy("tag", expando_servertag);
	expando_destroy("ircnet", expando_ircnet);

	signal_remove("event privmsg", (SIGNAL_FUNC) event_privmsg);
	signal_remove("event join", (SIGNAL_FUNC) event_join);
	signal_remove("command msg", (SIGNAL_FUNC) cmd_msg);
}