2000-04-26 04:03:38 -04:00
|
|
|
/*
|
|
|
|
fe-irc-commands.c : irssi
|
|
|
|
|
|
|
|
Copyright (C) 1999-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 "module-formats.h"
|
|
|
|
#include "signals.h"
|
|
|
|
#include "commands.h"
|
|
|
|
#include "special-vars.h"
|
|
|
|
#include "settings.h"
|
|
|
|
|
|
|
|
#include "levels.h"
|
|
|
|
#include "irc.h"
|
2000-06-28 16:00:39 -04:00
|
|
|
#include "irc-commands.h"
|
2000-08-26 11:39:44 -04:00
|
|
|
#include "servers.h"
|
2000-04-26 04:03:38 -04:00
|
|
|
#include "mode-lists.h"
|
|
|
|
#include "nicklist.h"
|
2000-08-26 11:39:44 -04:00
|
|
|
#include "irc-channels.h"
|
|
|
|
#include "irc-queries.h"
|
2000-04-26 04:03:38 -04:00
|
|
|
|
2000-08-26 11:39:44 -04:00
|
|
|
#include "fe-queries.h"
|
2000-04-26 04:03:38 -04:00
|
|
|
#include "windows.h"
|
|
|
|
#include "window-items.h"
|
|
|
|
|
|
|
|
static void cmd_msg(gchar *data, IRC_SERVER_REC *server, WI_ITEM_REC *item)
|
|
|
|
{
|
2000-06-28 16:00:39 -04:00
|
|
|
GHashTable *optlist;
|
2000-04-26 04:03:38 -04:00
|
|
|
WINDOW_REC *window;
|
2000-08-26 11:39:44 -04:00
|
|
|
IRC_CHANNEL_REC *channel;
|
2000-04-26 04:03:38 -04:00
|
|
|
NICK_REC *nickrec;
|
2000-07-10 19:00:56 -04:00
|
|
|
const char *nickmode;
|
|
|
|
char *target, *msg, *freestr, *newtarget;
|
2000-06-17 21:18:12 -04:00
|
|
|
void *free_arg;
|
2000-07-22 21:39:08 -04:00
|
|
|
int free_ret, print_channel;
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
g_return_if_fail(data != NULL);
|
|
|
|
|
2000-06-28 16:00:39 -04:00
|
|
|
if (!cmd_get_params(data, &free_arg, 2 | PARAM_FLAG_OPTIONS |
|
|
|
|
PARAM_FLAG_UNKNOWN_OPTIONS | PARAM_FLAG_GETREST,
|
|
|
|
"msg", &optlist, &target, &msg))
|
2000-06-17 21:18:12 -04:00
|
|
|
return;
|
2000-04-26 04:03:38 -04:00
|
|
|
if (*target == '\0' || *msg == '\0') cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
2000-08-11 22:16:52 -04:00
|
|
|
server = irccmd_options_get_server("msg", optlist, server);
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
if (*target == '=')
|
|
|
|
{
|
|
|
|
/* dcc msg - handled in fe-dcc.c */
|
2000-06-17 21:18:12 -04:00
|
|
|
cmd_params_free(free_arg);
|
2000-04-26 04:03:38 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
free_ret = FALSE;
|
|
|
|
if (strcmp(target, ",") == 0 || strcmp(target, ".") == 0)
|
2000-08-26 11:39:44 -04:00
|
|
|
newtarget = parse_special(&target, SERVER(server), item, NULL, &free_ret, NULL);
|
2000-04-26 04:03:38 -04:00
|
|
|
else if (strcmp(target, "*") == 0 &&
|
2000-08-26 11:39:44 -04:00
|
|
|
(IS_IRC_CHANNEL(item) || IS_IRC_QUERY(item)))
|
2000-04-26 04:03:38 -04:00
|
|
|
newtarget = item->name;
|
|
|
|
else newtarget = target;
|
|
|
|
|
|
|
|
if (newtarget == NULL) {
|
|
|
|
printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, *target == ',' ?
|
|
|
|
IRCTXT_NO_MSGS_GOT : IRCTXT_NO_MSGS_SENT);
|
2000-06-17 21:18:12 -04:00
|
|
|
cmd_params_free(free_arg);
|
2000-04-26 04:03:38 -04:00
|
|
|
signal_stop();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
target = newtarget;
|
|
|
|
|
|
|
|
if (server == NULL || !server->connected) cmd_param_error(CMDERR_NOT_CONNECTED);
|
2000-08-26 11:39:44 -04:00
|
|
|
channel = irc_channel_find(server, target);
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
freestr = !free_ret ? NULL : target;
|
|
|
|
if (*target == '@' && ischannel(target[1]))
|
|
|
|
target++; /* Hybrid 6 feature, send msg to all ops in channel */
|
|
|
|
|
|
|
|
if (ischannel(*target))
|
|
|
|
{
|
|
|
|
/* msg to channel */
|
2000-08-26 11:39:44 -04:00
|
|
|
nickrec = channel == NULL ? NULL :
|
|
|
|
nicklist_find(CHANNEL(channel), server->nick);
|
2000-05-04 06:32:42 -04:00
|
|
|
nickmode = !settings_get_bool("show_nickmode") || nickrec == NULL ? "" :
|
2000-04-26 04:03:38 -04:00
|
|
|
nickrec->op ? "@" : nickrec->voice ? "+" : " ";
|
|
|
|
|
|
|
|
window = channel == NULL ? NULL : window_item_window((WI_ITEM_REC *) channel);
|
2000-07-22 21:39:08 -04:00
|
|
|
|
|
|
|
print_channel = window == NULL ||
|
|
|
|
window->active != (WI_ITEM_REC *) channel;
|
|
|
|
if (!print_channel && settings_get_bool("print_active_channel") &&
|
|
|
|
window != NULL && g_slist_length(window->items) > 1)
|
|
|
|
print_channel = TRUE;
|
|
|
|
|
|
|
|
if (!print_channel)
|
2000-04-26 04:03:38 -04:00
|
|
|
{
|
2000-08-11 21:42:54 -04:00
|
|
|
printformat(server, target, MSGLEVEL_PUBLIC | MSGLEVEL_NOHILIGHT | MSGLEVEL_NO_ACT,
|
2000-04-26 04:03:38 -04:00
|
|
|
IRCTXT_OWN_MSG, server->nick, msg, nickmode);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2000-08-11 21:42:54 -04:00
|
|
|
printformat(server, target, MSGLEVEL_PUBLIC | MSGLEVEL_NOHILIGHT | MSGLEVEL_NO_ACT,
|
2000-04-26 04:03:38 -04:00
|
|
|
IRCTXT_OWN_MSG_CHANNEL, server->nick, target, msg, nickmode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* private message */
|
2000-06-14 15:05:51 -04:00
|
|
|
item = (WI_ITEM_REC *) privmsg_get_query(server, target, TRUE);
|
2000-08-11 21:42:54 -04:00
|
|
|
printformat(server, target, MSGLEVEL_MSGS | MSGLEVEL_NOHILIGHT | MSGLEVEL_NO_ACT,
|
2000-06-10 15:51:36 -04:00
|
|
|
item == NULL ? IRCTXT_OWN_MSG_PRIVATE : IRCTXT_OWN_MSG_PRIVATE_QUERY, target, msg, server->nick);
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
g_free_not_null(freestr);
|
|
|
|
|
2000-06-17 21:18:12 -04:00
|
|
|
cmd_params_free(free_arg);
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
|
2000-07-23 19:19:22 -04:00
|
|
|
/* SYNTAX: ME <message> */
|
2000-08-26 11:39:44 -04:00
|
|
|
static void cmd_me(gchar *data, IRC_SERVER_REC *server, WI_ITEM_REC *item)
|
2000-04-26 04:03:38 -04:00
|
|
|
{
|
|
|
|
g_return_if_fail(data != NULL);
|
|
|
|
|
2000-08-26 11:39:44 -04:00
|
|
|
if (!IS_IRC_ITEM(item))
|
2000-04-26 04:03:38 -04:00
|
|
|
return;
|
|
|
|
|
2000-07-15 09:04:03 -04:00
|
|
|
if (server == NULL || !server->connected)
|
|
|
|
cmd_return_error(CMDERR_NOT_CONNECTED);
|
2000-04-26 04:03:38 -04:00
|
|
|
|
2000-08-11 21:42:54 -04:00
|
|
|
printformat(server, item->name, MSGLEVEL_ACTIONS | MSGLEVEL_NOHILIGHT | MSGLEVEL_NO_ACT |
|
2000-07-15 09:04:03 -04:00
|
|
|
(ischannel(*item->name) ? MSGLEVEL_PUBLIC : MSGLEVEL_MSGS),
|
2000-04-26 04:03:38 -04:00
|
|
|
IRCTXT_OWN_ME, server->nick, data);
|
|
|
|
|
|
|
|
irc_send_cmdv(server, "PRIVMSG %s :\001ACTION %s\001", item->name, data);
|
|
|
|
}
|
|
|
|
|
2000-07-23 19:19:22 -04:00
|
|
|
/* SYNTAX: ACTION [<target>] <message> */
|
2000-04-26 04:03:38 -04:00
|
|
|
static void cmd_action(const char *data, IRC_SERVER_REC *server)
|
|
|
|
{
|
2000-06-17 21:18:12 -04:00
|
|
|
char *target, *text;
|
|
|
|
void *free_arg;
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
g_return_if_fail(data != NULL);
|
2000-07-15 09:04:03 -04:00
|
|
|
if (server == NULL || !server->connected)
|
|
|
|
cmd_return_error(CMDERR_NOT_CONNECTED);
|
2000-04-26 04:03:38 -04:00
|
|
|
|
2000-06-20 05:21:54 -04:00
|
|
|
if (!cmd_get_params(data, &free_arg, 2 | PARAM_FLAG_GETREST, &target, &text))
|
2000-06-17 21:18:12 -04:00
|
|
|
return;
|
2000-07-15 09:04:03 -04:00
|
|
|
if (*target == '\0' || *text == '\0')
|
|
|
|
cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
2000-04-26 04:03:38 -04:00
|
|
|
|
2000-08-11 21:42:54 -04:00
|
|
|
printformat(server, target, MSGLEVEL_ACTIONS | MSGLEVEL_NOHILIGHT | MSGLEVEL_NO_ACT |
|
2000-07-15 09:04:03 -04:00
|
|
|
(ischannel(*target) ? MSGLEVEL_PUBLIC : MSGLEVEL_MSGS),
|
|
|
|
IRCTXT_OWN_ME, server->nick, text);
|
2000-04-26 04:03:38 -04:00
|
|
|
irc_send_cmdv(server, "PRIVMSG %s :\001ACTION %s\001", target, text);
|
2000-06-17 21:18:12 -04:00
|
|
|
cmd_params_free(free_arg);
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
|
2000-07-23 19:19:22 -04:00
|
|
|
/* SYNTAX: NOTICE [<target>] <message> */
|
|
|
|
static void cmd_notice(const char *data, IRC_SERVER_REC *server)
|
2000-06-03 21:36:07 -04:00
|
|
|
{
|
2000-06-17 21:18:12 -04:00
|
|
|
char *target, *msg;
|
|
|
|
void *free_arg;
|
2000-06-03 21:36:07 -04:00
|
|
|
|
|
|
|
g_return_if_fail(data != NULL);
|
|
|
|
if (server == NULL || !server->connected) cmd_return_error(CMDERR_NOT_CONNECTED);
|
|
|
|
|
2000-06-17 21:18:12 -04:00
|
|
|
if (!cmd_get_params(data, &free_arg, 2 | PARAM_FLAG_GETREST, &target, &msg))
|
|
|
|
return;
|
2000-06-03 21:36:07 -04:00
|
|
|
if (*target == '\0' || *msg == '\0') cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
|
|
|
|
|
|
|
if (*target == '@' && ischannel(target[1]))
|
|
|
|
target++; /* Hybrid 6 feature, send notice to all ops in channel */
|
|
|
|
|
2000-08-11 21:42:54 -04:00
|
|
|
printformat(server, target, MSGLEVEL_NOTICES | MSGLEVEL_NOHILIGHT | MSGLEVEL_NO_ACT,
|
2000-06-03 21:36:07 -04:00
|
|
|
IRCTXT_OWN_NOTICE, target, msg);
|
|
|
|
|
2000-06-17 21:18:12 -04:00
|
|
|
cmd_params_free(free_arg);
|
2000-06-03 21:36:07 -04:00
|
|
|
}
|
|
|
|
|
2000-04-26 04:03:38 -04:00
|
|
|
static void cmd_ctcp(const char *data, IRC_SERVER_REC *server)
|
|
|
|
{
|
2000-06-17 21:18:12 -04:00
|
|
|
char *target, *ctcpcmd, *ctcpdata;
|
|
|
|
void *free_arg;
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
g_return_if_fail(data != NULL);
|
|
|
|
if (server == NULL || !server->connected) cmd_return_error(CMDERR_NOT_CONNECTED);
|
|
|
|
|
2000-06-17 21:18:12 -04:00
|
|
|
if (!cmd_get_params(data, &free_arg, 3 | PARAM_FLAG_GETREST, &target, &ctcpcmd, &ctcpdata))
|
|
|
|
return;
|
2000-04-26 04:03:38 -04:00
|
|
|
if (*target == '\0' || *ctcpcmd == '\0') cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
|
|
|
|
2000-07-15 09:04:03 -04:00
|
|
|
if (*target == '=') {
|
|
|
|
/* don't handle DCC CTCPs */
|
|
|
|
cmd_params_free(free_arg);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-04-26 04:03:38 -04:00
|
|
|
if (*target == '@' && ischannel(target[1]))
|
|
|
|
target++; /* Hybrid 6 feature, send ctcp to all ops in channel */
|
|
|
|
|
|
|
|
g_strup(ctcpcmd);
|
|
|
|
printformat(server, target, MSGLEVEL_CTCPS, IRCTXT_OWN_CTCP, target, ctcpcmd, ctcpdata);
|
|
|
|
|
2000-06-17 21:18:12 -04:00
|
|
|
cmd_params_free(free_arg);
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void cmd_nctcp(const char *data, IRC_SERVER_REC *server)
|
|
|
|
{
|
2000-06-17 21:18:12 -04:00
|
|
|
char *target, *ctcpcmd, *ctcpdata;
|
|
|
|
void *free_arg;
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
g_return_if_fail(data != NULL);
|
|
|
|
if (server == NULL || !server->connected) cmd_return_error(CMDERR_NOT_CONNECTED);
|
|
|
|
|
2000-06-17 21:18:12 -04:00
|
|
|
if (!cmd_get_params(data, &free_arg, 3 | PARAM_FLAG_GETREST, &target, &ctcpcmd, &ctcpdata))
|
|
|
|
return;
|
2000-04-26 04:03:38 -04:00
|
|
|
if (*target == '\0' || *ctcpcmd == '\0') cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
|
|
|
|
|
|
|
if (*target == '@' && ischannel(target[1]))
|
|
|
|
target++; /* Hybrid 6 feature, send notice to all ops in channel */
|
|
|
|
|
|
|
|
g_strup(ctcpcmd);
|
|
|
|
printformat(server, target, MSGLEVEL_NOTICES, IRCTXT_OWN_NOTICE, target, ctcpcmd, ctcpdata);
|
|
|
|
|
2000-06-17 21:18:12 -04:00
|
|
|
cmd_params_free(free_arg);
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
|
2000-08-26 11:39:44 -04:00
|
|
|
static void cmd_wall(const char *data, IRC_SERVER_REC *server, WI_ITEM_REC *item)
|
2000-06-09 11:50:04 -04:00
|
|
|
{
|
2000-08-26 11:39:44 -04:00
|
|
|
IRC_CHANNEL_REC *chanrec;
|
2000-06-17 21:18:12 -04:00
|
|
|
char *channame, *msg;
|
|
|
|
void *free_arg;
|
2000-06-09 11:50:04 -04:00
|
|
|
|
|
|
|
g_return_if_fail(data != NULL);
|
2000-08-26 11:39:44 -04:00
|
|
|
if (server == NULL || !server->connected || !IS_IRC_SERVER(server))
|
2000-06-09 11:50:04 -04:00
|
|
|
cmd_return_error(CMDERR_NOT_CONNECTED);
|
|
|
|
|
2000-06-17 21:18:12 -04:00
|
|
|
if (!cmd_get_params(data, &free_arg, 2 | PARAM_FLAG_OPTCHAN | PARAM_FLAG_GETREST, item, &channame, &msg))
|
|
|
|
return;
|
2000-06-09 11:50:04 -04:00
|
|
|
if (*msg == '\0') cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
|
|
|
|
2000-08-26 11:39:44 -04:00
|
|
|
chanrec = irc_channel_find(server, channame);
|
2000-06-09 11:50:04 -04:00
|
|
|
if (chanrec == NULL) cmd_param_error(CMDERR_CHAN_NOT_FOUND);
|
|
|
|
|
|
|
|
printformat(server, chanrec->name, MSGLEVEL_NOTICES, IRCTXT_OWN_WALL, chanrec->name, msg);
|
|
|
|
|
2000-06-17 21:18:12 -04:00
|
|
|
cmd_params_free(free_arg);
|
2000-06-09 11:50:04 -04:00
|
|
|
}
|
|
|
|
|
2000-07-23 20:11:40 -04:00
|
|
|
static void bans_ask_channel(const char *channel, IRC_SERVER_REC *server,
|
2000-08-26 11:39:44 -04:00
|
|
|
WI_ITEM_REC *item)
|
2000-04-26 04:03:38 -04:00
|
|
|
{
|
2000-07-23 20:11:40 -04:00
|
|
|
GString *str;
|
|
|
|
|
|
|
|
str = g_string_new(NULL);
|
|
|
|
g_string_sprintf(str, "%s b", channel);
|
|
|
|
signal_emit("command mode", 3, str->str, server, item);
|
|
|
|
if (server->emode_known) {
|
|
|
|
g_string_sprintf(str, "%s e", channel);
|
|
|
|
signal_emit("command mode", 3, str->str, server, item);
|
|
|
|
}
|
|
|
|
g_string_free(str, TRUE);
|
|
|
|
}
|
2000-04-26 04:03:38 -04:00
|
|
|
|
2000-08-26 11:39:44 -04:00
|
|
|
static void bans_show_channel(IRC_CHANNEL_REC *channel, IRC_SERVER_REC *server)
|
2000-07-23 20:11:40 -04:00
|
|
|
{
|
|
|
|
GSList *tmp;
|
2000-04-26 04:03:38 -04:00
|
|
|
|
2000-07-23 20:11:40 -04:00
|
|
|
if (channel->banlist == NULL && channel->ebanlist == NULL) {
|
|
|
|
printformat(server, channel->name, MSGLEVEL_CRAP,
|
|
|
|
IRCTXT_NO_BANS, channel->name);
|
|
|
|
return;
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* show bans.. */
|
|
|
|
for (tmp = channel->banlist; tmp != NULL; tmp = tmp->next) {
|
2000-07-23 20:11:40 -04:00
|
|
|
BAN_REC *rec = tmp->data;
|
|
|
|
|
|
|
|
printformat(server, channel->name, MSGLEVEL_CRAP,
|
2000-08-25 06:46:47 -04:00
|
|
|
(rec->setby == NULL || *rec->setby == '\0') ?
|
|
|
|
IRCTXT_BANLIST : IRCTXT_BANLIST_LONG,
|
|
|
|
channel->name, rec->ban, rec->setby,
|
|
|
|
(int) (time(NULL)-rec->time));
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ..and show ban exceptions.. */
|
|
|
|
for (tmp = channel->ebanlist; tmp != NULL; tmp = tmp->next) {
|
2000-07-23 20:11:40 -04:00
|
|
|
BAN_REC *rec = tmp->data;
|
|
|
|
|
|
|
|
printformat(server, channel->name, MSGLEVEL_CRAP,
|
2000-08-25 06:46:47 -04:00
|
|
|
(rec->setby == NULL || *rec->setby == '\0') ?
|
|
|
|
IRCTXT_EBANLIST : IRCTXT_EBANLIST_LONG,
|
|
|
|
channel->name, rec->ban, rec->setby,
|
|
|
|
(int) (time(NULL)-rec->time));
|
2000-07-23 20:11:40 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* SYNTAX: BAN [<channel>] [<nicks>] */
|
|
|
|
static void cmd_ban(const char *data, IRC_SERVER_REC *server,
|
2000-08-26 11:39:44 -04:00
|
|
|
WI_ITEM_REC *item)
|
2000-07-23 20:11:40 -04:00
|
|
|
{
|
2000-08-26 11:39:44 -04:00
|
|
|
IRC_CHANNEL_REC *chanrec;
|
2000-07-23 20:11:40 -04:00
|
|
|
char *channel, *nicks;
|
|
|
|
void *free_arg;
|
|
|
|
|
|
|
|
g_return_if_fail(data != NULL);
|
|
|
|
if (server == NULL || !server->connected)
|
|
|
|
cmd_return_error(CMDERR_NOT_CONNECTED);
|
|
|
|
|
|
|
|
if (!cmd_get_params(data, &free_arg, 2 |
|
|
|
|
PARAM_FLAG_OPTCHAN | PARAM_FLAG_GETREST,
|
|
|
|
item, &channel, &nicks))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (*nicks != '\0') {
|
|
|
|
/* setting ban - don't handle here */
|
|
|
|
cmd_params_free(free_arg);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* display bans */
|
2000-08-26 11:39:44 -04:00
|
|
|
chanrec = IRC_CHANNEL(item);
|
2000-07-23 20:11:40 -04:00
|
|
|
if (chanrec == NULL && *channel == '\0')
|
|
|
|
cmd_param_error(CMDERR_NOT_JOINED);
|
|
|
|
|
|
|
|
if (*channel != '\0' && strcmp(channel, "*") != 0)
|
2000-08-26 11:39:44 -04:00
|
|
|
chanrec = irc_channel_find(server, channel);
|
2000-07-23 20:11:40 -04:00
|
|
|
|
|
|
|
if (chanrec == NULL) {
|
|
|
|
/* not joined to such channel,
|
|
|
|
but ask ban lists from server */
|
|
|
|
bans_ask_channel(channel, server, item);
|
|
|
|
} else {
|
|
|
|
bans_show_channel(chanrec, server);
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
2000-04-27 07:44:55 -04:00
|
|
|
|
|
|
|
signal_stop();
|
2000-07-23 20:11:40 -04:00
|
|
|
cmd_params_free(free_arg);
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
|
2000-07-23 19:19:22 -04:00
|
|
|
/* SYNTAX: INVITELIST [<channel>] */
|
2000-08-26 11:39:44 -04:00
|
|
|
static void cmd_invitelist(const char *data, IRC_SERVER_REC *server, WI_ITEM_REC *item)
|
2000-04-26 04:03:38 -04:00
|
|
|
{
|
2000-08-26 11:39:44 -04:00
|
|
|
IRC_CHANNEL_REC *channel, *cur_channel;
|
2000-04-26 04:03:38 -04:00
|
|
|
GSList *tmp;
|
|
|
|
|
|
|
|
g_return_if_fail(data != NULL);
|
|
|
|
if (server == NULL || !server->connected) cmd_return_error(CMDERR_NOT_CONNECTED);
|
|
|
|
|
2000-08-26 11:39:44 -04:00
|
|
|
cur_channel = IRC_CHANNEL(item);
|
2000-04-26 04:03:38 -04:00
|
|
|
if (cur_channel == NULL) cmd_return_error(CMDERR_NOT_JOINED);
|
|
|
|
|
|
|
|
if (strcmp(data, "*") == 0 || *data == '\0')
|
|
|
|
channel = cur_channel;
|
|
|
|
else
|
2000-08-26 11:39:44 -04:00
|
|
|
channel = irc_channel_find(server, data);
|
2000-04-26 04:03:38 -04:00
|
|
|
if (channel == NULL) cmd_return_error(CMDERR_CHAN_NOT_FOUND);
|
|
|
|
|
|
|
|
for (tmp = channel->invitelist; tmp != NULL; tmp = tmp->next)
|
|
|
|
printformat(server, channel->name, MSGLEVEL_CRAP, IRCTXT_INVITELIST, channel->name, tmp->data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cmd_join(const char *data, IRC_SERVER_REC *server)
|
|
|
|
{
|
|
|
|
if ((*data == '\0' || g_strncasecmp(data, "-invite", 7) == 0) &&
|
|
|
|
server->last_invite == NULL) {
|
|
|
|
printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, IRCTXT_NOT_INVITED);
|
|
|
|
signal_stop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cmd_nick(const char *data, IRC_SERVER_REC *server)
|
|
|
|
{
|
|
|
|
g_return_if_fail(data != NULL);
|
|
|
|
|
|
|
|
if (*data != '\0') return;
|
|
|
|
if (server == NULL || !server->connected)
|
|
|
|
cmd_return_error(CMDERR_NOT_CONNECTED);
|
|
|
|
|
|
|
|
/* display current nick */
|
|
|
|
printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, IRCTXT_YOUR_NICK, server->nick);
|
|
|
|
signal_stop();
|
|
|
|
}
|
|
|
|
|
2000-07-23 19:19:22 -04:00
|
|
|
/* SYNTAX: VER [<target>] */
|
2000-08-26 11:39:44 -04:00
|
|
|
static void cmd_ver(gchar *data, IRC_SERVER_REC *server, WI_ITEM_REC *item)
|
2000-04-26 04:03:38 -04:00
|
|
|
{
|
|
|
|
char *str;
|
|
|
|
|
|
|
|
g_return_if_fail(data != NULL);
|
|
|
|
|
2000-08-26 11:39:44 -04:00
|
|
|
if (!IS_IRC_SERVER(server) || !server->connected)
|
2000-04-26 04:03:38 -04:00
|
|
|
cmd_return_error(CMDERR_NOT_CONNECTED);
|
2000-08-26 11:39:44 -04:00
|
|
|
if (*data == '\0' && !IS_IRC_ITEM(item))
|
2000-04-26 04:03:38 -04:00
|
|
|
cmd_return_error(CMDERR_NOT_JOINED);
|
|
|
|
|
|
|
|
str = g_strdup_printf("%s VERSION", *data == '\0' ? item->name : data);
|
|
|
|
signal_emit("command ctcp", 3, str, server, item);
|
|
|
|
g_free(str);
|
|
|
|
}
|
|
|
|
|
2000-07-23 19:19:22 -04:00
|
|
|
/* SYNTAX: TS */
|
2000-04-26 04:03:38 -04:00
|
|
|
static void cmd_ts(const char *data)
|
|
|
|
{
|
|
|
|
GSList *tmp;
|
|
|
|
|
|
|
|
g_return_if_fail(data != NULL);
|
|
|
|
|
|
|
|
for (tmp = channels; tmp != NULL; tmp = tmp->next) {
|
|
|
|
CHANNEL_REC *rec = tmp->data;
|
|
|
|
|
|
|
|
printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, IRCTXT_TOPIC,
|
|
|
|
rec->name, rec->topic == NULL ? "" : rec->topic);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void fe_irc_commands_init(void)
|
|
|
|
{
|
2000-06-03 21:36:07 -04:00
|
|
|
command_bind_last("msg", NULL, (SIGNAL_FUNC) cmd_msg);
|
|
|
|
command_bind_last("me", NULL, (SIGNAL_FUNC) cmd_me);
|
|
|
|
command_bind_last("action", NULL, (SIGNAL_FUNC) cmd_action);
|
2000-04-26 04:03:38 -04:00
|
|
|
command_bind("notice", NULL, (SIGNAL_FUNC) cmd_notice);
|
|
|
|
command_bind("ctcp", NULL, (SIGNAL_FUNC) cmd_ctcp);
|
|
|
|
command_bind("nctcp", NULL, (SIGNAL_FUNC) cmd_nctcp);
|
2000-06-09 11:50:04 -04:00
|
|
|
command_bind("wall", NULL, (SIGNAL_FUNC) cmd_wall);
|
2000-04-27 07:44:55 -04:00
|
|
|
command_bind("ban", NULL, (SIGNAL_FUNC) cmd_ban);
|
2000-04-26 04:03:38 -04:00
|
|
|
command_bind("invitelist", NULL, (SIGNAL_FUNC) cmd_invitelist);
|
|
|
|
command_bind("join", NULL, (SIGNAL_FUNC) cmd_join);
|
|
|
|
command_bind("nick", NULL, (SIGNAL_FUNC) cmd_nick);
|
|
|
|
command_bind("ver", NULL, (SIGNAL_FUNC) cmd_ver);
|
|
|
|
command_bind("ts", NULL, (SIGNAL_FUNC) cmd_ts);
|
|
|
|
}
|
|
|
|
|
|
|
|
void fe_irc_commands_deinit(void)
|
|
|
|
{
|
|
|
|
command_unbind("msg", (SIGNAL_FUNC) cmd_msg);
|
|
|
|
command_unbind("me", (SIGNAL_FUNC) cmd_me);
|
|
|
|
command_unbind("action", (SIGNAL_FUNC) cmd_action);
|
2000-06-03 21:36:07 -04:00
|
|
|
command_unbind("notice", (SIGNAL_FUNC) cmd_notice);
|
2000-04-26 04:03:38 -04:00
|
|
|
command_unbind("ctcp", (SIGNAL_FUNC) cmd_ctcp);
|
|
|
|
command_unbind("nctcp", (SIGNAL_FUNC) cmd_nctcp);
|
2000-06-09 11:50:04 -04:00
|
|
|
command_unbind("wall", (SIGNAL_FUNC) cmd_wall);
|
2000-04-27 07:44:55 -04:00
|
|
|
command_unbind("ban", (SIGNAL_FUNC) cmd_ban);
|
2000-04-26 04:03:38 -04:00
|
|
|
command_unbind("invitelist", (SIGNAL_FUNC) cmd_invitelist);
|
|
|
|
command_unbind("join", (SIGNAL_FUNC) cmd_join);
|
|
|
|
command_unbind("nick", (SIGNAL_FUNC) cmd_nick);
|
|
|
|
command_unbind("ver", (SIGNAL_FUNC) cmd_ver);
|
|
|
|
command_unbind("ts", (SIGNAL_FUNC) cmd_ts);
|
|
|
|
}
|