2011-02-24 04:14:30 +01:00
|
|
|
/* X-Chat
|
|
|
|
* Copyright (C) 1998 Peter Zelezny.
|
|
|
|
*
|
|
|
|
* 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
|
2012-12-23 20:36:54 +01:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2011-02-24 04:14:30 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2011-12-11 17:34:02 +01:00
|
|
|
#ifndef WIN32
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2012-10-24 21:33:02 +02:00
|
|
|
#include "hexchat.h"
|
2011-02-24 04:14:30 +01:00
|
|
|
#include "cfgfiles.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "modes.h"
|
|
|
|
#include "outbound.h"
|
|
|
|
#include "ignore.h"
|
|
|
|
#include "inbound.h"
|
|
|
|
#include "dcc.h"
|
|
|
|
#include "text.h"
|
|
|
|
#include "ctcp.h"
|
|
|
|
#include "server.h"
|
2012-10-24 21:33:02 +02:00
|
|
|
#include "hexchatc.h"
|
2011-02-24 04:14:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
ctcp_reply (session *sess, char *nick, char *word[], char *word_eol[],
|
|
|
|
char *conf)
|
|
|
|
{
|
|
|
|
char tbuf[4096]; /* can receive 2048 from IRC, so this is enough */
|
|
|
|
|
2014-12-28 12:37:25 +01:00
|
|
|
conf = g_strdup (conf);
|
2011-02-24 04:14:30 +01:00
|
|
|
/* process %C %B etc */
|
|
|
|
check_special_chars (conf, TRUE);
|
|
|
|
auto_insert (tbuf, sizeof (tbuf), conf, word, word_eol, "", "", word_eol[5],
|
2013-04-04 00:10:14 +02:00
|
|
|
server_get_network (sess->server, TRUE), "", "", nick, "");
|
2014-12-28 12:37:25 +01:00
|
|
|
g_free (conf);
|
2011-02-24 04:14:30 +01:00
|
|
|
handle_command (sess, tbuf, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ctcp_check (session *sess, char *nick, char *word[], char *word_eol[],
|
|
|
|
char *ctcp)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
char *po;
|
|
|
|
struct popup *pop;
|
|
|
|
GSList *list = ctcp_list;
|
|
|
|
|
|
|
|
po = strchr (ctcp, '\001');
|
|
|
|
if (po)
|
|
|
|
*po = 0;
|
|
|
|
|
|
|
|
po = strchr (word_eol[5], '\001');
|
|
|
|
if (po)
|
|
|
|
*po = 0;
|
|
|
|
|
|
|
|
while (list)
|
|
|
|
{
|
|
|
|
pop = (struct popup *) list->data;
|
2012-06-16 13:01:47 +02:00
|
|
|
if (!g_ascii_strcasecmp (ctcp, pop->name))
|
2011-02-24 04:14:30 +01:00
|
|
|
{
|
|
|
|
ctcp_reply (sess, nick, word, word_eol, pop->cmd);
|
|
|
|
ret = 1;
|
|
|
|
}
|
|
|
|
list = list->next;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ctcp_handle (session *sess, char *to, char *nick, char *ip,
|
2013-06-22 17:55:41 +02:00
|
|
|
char *msg, char *word[], char *word_eol[], int id,
|
|
|
|
const message_tags_data *tags_data)
|
2011-02-24 04:14:30 +01:00
|
|
|
{
|
|
|
|
char *po;
|
|
|
|
session *chansess;
|
|
|
|
server *serv = sess->server;
|
|
|
|
char outbuf[1024];
|
|
|
|
int ctcp_offset = 2;
|
|
|
|
|
|
|
|
if (serv->have_idmsg && (word[4][1] == '+' || word[4][1] == '-') )
|
|
|
|
ctcp_offset = 3;
|
|
|
|
|
|
|
|
/* consider DCC to be different from other CTCPs */
|
2012-06-16 13:01:47 +02:00
|
|
|
if (!g_ascii_strncasecmp (msg, "DCC", 3))
|
2011-02-24 04:14:30 +01:00
|
|
|
{
|
|
|
|
/* but still let CTCP replies override it */
|
|
|
|
if (!ctcp_check (sess, nick, word, word_eol, word[4] + ctcp_offset))
|
|
|
|
{
|
|
|
|
if (!ignore_check (word[1], IG_DCC))
|
2013-06-23 20:53:41 +02:00
|
|
|
handle_dcc (sess, nick, word, word_eol, tags_data);
|
2011-02-24 04:14:30 +01:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* consider ACTION to be different from other CTCPs. Check
|
|
|
|
ignore as if it was a PRIV/CHAN. */
|
2012-06-16 13:01:47 +02:00
|
|
|
if (!g_ascii_strncasecmp (msg, "ACTION ", 7))
|
2011-02-24 04:14:30 +01:00
|
|
|
{
|
|
|
|
if (is_channel (serv, to))
|
|
|
|
{
|
|
|
|
/* treat a channel action as a CHAN */
|
|
|
|
if (ignore_check (word[1], IG_CHAN))
|
|
|
|
return;
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
/* treat a private action as a PRIV */
|
|
|
|
if (ignore_check (word[1], IG_PRIV))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* but still let CTCP replies override it */
|
|
|
|
if (ctcp_check (sess, nick, word, word_eol, word[4] + ctcp_offset))
|
|
|
|
goto generic;
|
|
|
|
|
2013-06-23 20:53:41 +02:00
|
|
|
inbound_action (sess, to, nick, ip, msg + 7, FALSE, id, tags_data);
|
2011-02-24 04:14:30 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ignore_check (word[1], IG_CTCP))
|
|
|
|
return;
|
|
|
|
|
2012-10-22 14:50:36 +02:00
|
|
|
if (!g_ascii_strcasecmp (msg, "VERSION") && !prefs.hex_irc_hide_version)
|
2011-02-24 04:14:30 +01:00
|
|
|
{
|
2011-12-11 17:34:02 +01:00
|
|
|
#ifdef WIN32
|
2014-12-18 00:49:59 +01:00
|
|
|
g_snprintf (outbuf, sizeof (outbuf), "VERSION HexChat "PACKAGE_VERSION" [x%d] / %s",
|
2012-10-28 00:05:40 +02:00
|
|
|
get_cpu_arch (), get_sys_str (1));
|
2011-12-11 17:34:02 +01:00
|
|
|
#else
|
2014-12-18 00:49:59 +01:00
|
|
|
g_snprintf (outbuf, sizeof (outbuf), "VERSION HexChat "PACKAGE_VERSION" / %s",
|
2012-10-28 00:05:40 +02:00
|
|
|
get_sys_str (1));
|
2011-12-11 17:34:02 +01:00
|
|
|
#endif
|
2011-02-24 04:14:30 +01:00
|
|
|
serv->p_nctcp (serv, nick, outbuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ctcp_check (sess, nick, word, word_eol, word[4] + ctcp_offset))
|
|
|
|
{
|
2012-06-16 13:01:47 +02:00
|
|
|
if (!g_ascii_strncasecmp (msg, "SOUND", 5))
|
2011-02-24 04:14:30 +01:00
|
|
|
{
|
|
|
|
po = strchr (word[5], '\001');
|
|
|
|
if (po)
|
|
|
|
po[0] = 0;
|
|
|
|
|
|
|
|
if (is_channel (sess->server, to))
|
|
|
|
{
|
|
|
|
chansess = find_channel (sess->server, to);
|
|
|
|
if (!chansess)
|
|
|
|
chansess = sess;
|
|
|
|
|
2013-06-22 17:55:41 +02:00
|
|
|
EMIT_SIGNAL_TIMESTAMP (XP_TE_CTCPSNDC, chansess, word[5],
|
|
|
|
nick, to, NULL, 0, tags_data->timestamp);
|
2011-02-24 04:14:30 +01:00
|
|
|
} else
|
|
|
|
{
|
2013-06-22 17:55:41 +02:00
|
|
|
EMIT_SIGNAL_TIMESTAMP (XP_TE_CTCPSND, sess->server->front_session,
|
|
|
|
word[5], nick, NULL, NULL, 0,
|
|
|
|
tags_data->timestamp);
|
2011-02-24 04:14:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* don't let IRCers specify path */
|
|
|
|
#ifdef WIN32
|
|
|
|
if (strchr (word[5], '/') == NULL && strchr (word[5], '\\') == NULL)
|
|
|
|
#else
|
|
|
|
if (strchr (word[5], '/') == NULL)
|
|
|
|
#endif
|
2013-04-27 23:00:18 +02:00
|
|
|
sound_play (word[5], TRUE);
|
2011-02-24 04:14:30 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
generic:
|
|
|
|
po = strchr (msg, '\001');
|
|
|
|
if (po)
|
|
|
|
po[0] = 0;
|
|
|
|
|
|
|
|
if (!is_channel (sess->server, to))
|
|
|
|
{
|
2013-06-22 17:55:41 +02:00
|
|
|
EMIT_SIGNAL_TIMESTAMP (XP_TE_CTCPGEN, sess->server->front_session, msg,
|
|
|
|
nick, NULL, NULL, 0, tags_data->timestamp);
|
2011-02-24 04:14:30 +01:00
|
|
|
} else
|
|
|
|
{
|
|
|
|
chansess = find_channel (sess->server, to);
|
|
|
|
if (!chansess)
|
|
|
|
chansess = sess;
|
2013-06-22 17:55:41 +02:00
|
|
|
EMIT_SIGNAL_TIMESTAMP (XP_TE_CTCPGENC, chansess, msg, nick, to, NULL, 0,
|
|
|
|
tags_data->timestamp);
|
2011-02-24 04:14:30 +01:00
|
|
|
}
|
|
|
|
}
|