1
0
mirror of https://github.com/irssi/irssi.git synced 2024-12-04 14:46:39 -05:00

Channel mode handling changed - there's no more mode_xxx fields in

channel structure, but instead just one mode string field. Also
handling half-ops (+h) should work right.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@617 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-08-20 07:17:13 +00:00 committed by cras
parent 7cbd164e75
commit 67cc9af1bd
15 changed files with 352 additions and 233 deletions

View File

@ -204,7 +204,8 @@ int server_connect(SERVER_REC *server)
server->connect_pipe[1]); server->connect_pipe[1]);
server->connect_tag = server->connect_tag =
g_input_add(server->connect_pipe[0], G_INPUT_READ, g_input_add(server->connect_pipe[0], G_INPUT_READ,
(GInputFunction) server_connect_callback_readpipe, server); (GInputFunction) server_connect_callback_readpipe,
server);
lookup_servers = g_slist_append(lookup_servers, server); lookup_servers = g_slist_append(lookup_servers, server);
@ -278,7 +279,8 @@ SERVER_REC *server_find_ircnet(const char *ircnet)
SERVER_REC *server = tmp->data; SERVER_REC *server = tmp->data;
if (server->connrec->ircnet != NULL && if (server->connrec->ircnet != NULL &&
g_strcasecmp(server->connrec->ircnet, ircnet) == 0) return server; g_strcasecmp(server->connrec->ircnet, ircnet) == 0)
return server;
} }
return NULL; return NULL;

View File

@ -149,7 +149,6 @@ static void cmd_channel_list_joined(void)
CHANNEL_REC *channel; CHANNEL_REC *channel;
GString *nicks; GString *nicks;
GSList *nicklist, *tmp, *ntmp; GSList *nicklist, *tmp, *ntmp;
char *mode;
if (channels == NULL) { if (channels == NULL) {
printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, IRCTXT_NOT_IN_CHANNELS); printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, IRCTXT_NOT_IN_CHANNELS);
@ -167,7 +166,6 @@ static void cmd_channel_list_joined(void)
channel = tmp->data; channel = tmp->data;
nicklist = nicklist_getnicks(channel); nicklist = nicklist_getnicks(channel);
mode = channel_get_mode(channel);
nicks = g_string_new(NULL); nicks = g_string_new(NULL);
for (ntmp = nicklist; ntmp != NULL; ntmp = ntmp->next) { for (ntmp = nicklist; ntmp != NULL; ntmp = ntmp->next) {
NICK_REC *rec = ntmp->data; NICK_REC *rec = ntmp->data;
@ -177,9 +175,8 @@ static void cmd_channel_list_joined(void)
if (nicks->len > 1) g_string_truncate(nicks, nicks->len-1); if (nicks->len > 1) g_string_truncate(nicks, nicks->len-1);
printformat(NULL, NULL, MSGLEVEL_CLIENTCRAP, IRCTXT_CHANLIST_LINE, printformat(NULL, NULL, MSGLEVEL_CLIENTCRAP, IRCTXT_CHANLIST_LINE,
channel->name, mode, channel->server->tag, nicks->str); channel->name, channel->mode, channel->server->tag, nicks->str);
g_free(mode);
g_slist_free(nicklist); g_slist_free(nicklist);
g_string_free(nicks, TRUE); g_string_free(nicks, TRUE);
} }

View File

@ -359,7 +359,7 @@ static void event_mode(const char *data, IRC_SERVER_REC *server,
show = TRUE; show = TRUE;
nick++; nick++;
} else { } else {
if (HAS_MODE_ARG(*mode) && *nick != NULL) if (HAS_MODE_ARG(type, *mode) && *nick != NULL)
nick++; nick++;
show = TRUE; show = TRUE;
} }

View File

@ -214,7 +214,7 @@ static void statusbar_channel(SBAR_ITEM_REC *item, int ypos)
WI_ITEM_REC *witem; WI_ITEM_REC *witem;
CHANNEL_REC *channel; CHANNEL_REC *channel;
SERVER_REC *server; SERVER_REC *server;
gchar channame[21], winnum[MAX_INT_STRLEN], *mode, *tmpname; gchar channame[21], winnum[MAX_INT_STRLEN], *tmpname;
int size_needed; int size_needed;
int mode_size; int mode_size;
@ -230,8 +230,8 @@ static void statusbar_channel(SBAR_ITEM_REC *item, int ypos)
{ {
/* display server tag */ /* display server tag */
channame[0] = '\0'; channame[0] = '\0';
mode = NULL;
mode_size = 0; mode_size = 0;
channel = NULL;
size_needed = 3 + strlen(winnum) + (server == NULL ? 0 : (17+strlen(server->tag))); size_needed = 3 + strlen(winnum) + (server == NULL ? 0 : (17+strlen(server->tag)));
} }
@ -245,10 +245,8 @@ static void statusbar_channel(SBAR_ITEM_REC *item, int ypos)
channel = irc_item_channel(witem); channel = irc_item_channel(witem);
if (channel == NULL) { if (channel == NULL) {
mode_size = 0; mode_size = 0;
mode = NULL;
} else { } else {
mode = channel_get_mode(channel); mode_size = strlen(channel->mode);
mode_size = strlen(mode);
if (mode_size > 0) mode_size += 3; /* (+) */ if (mode_size > 0) mode_size += 3; /* (+) */
} }
@ -259,7 +257,6 @@ static void statusbar_channel(SBAR_ITEM_REC *item, int ypos)
{ {
/* we need more (or less..) space! */ /* we need more (or less..) space! */
statusbar_item_resize(item, size_needed); statusbar_item_resize(item, size_needed);
if (mode != NULL) g_free(mode);
return; return;
} }
@ -284,14 +281,12 @@ static void statusbar_channel(SBAR_ITEM_REC *item, int ypos)
{ {
set_color(stdscr, sbar_color_bold); addch('('); set_color(stdscr, sbar_color_bold); addch('(');
set_color(stdscr, sbar_color_dim); addch('+'); set_color(stdscr, sbar_color_dim); addch('+');
set_color(stdscr, sbar_color_normal); addstr(mode); set_color(stdscr, sbar_color_normal); addstr(channel->mode);
set_color(stdscr, sbar_color_bold); addch(')'); set_color(stdscr, sbar_color_bold); addch(')');
} }
} }
set_color(stdscr, sbar_color_dim); addch(']'); set_color(stdscr, sbar_color_dim); addch(']');
screen_refresh(NULL); screen_refresh(NULL);
if (mode != NULL) g_free(mode);
} }
static void sig_statusbar_channel_redraw(void) static void sig_statusbar_channel_redraw(void)

View File

@ -62,6 +62,7 @@ CHANNEL_REC *channel_create(IRC_SERVER_REC *server, const char *channel, int aut
rec->name = g_strdup(channel); rec->name = g_strdup(channel);
rec->server = server; rec->server = server;
rec->createtime = time(NULL); rec->createtime = time(NULL);
rec->mode = g_strdup("");
if (*channel == '+') if (*channel == '+')
rec->no_modes = TRUE; rec->no_modes = TRUE;
@ -126,34 +127,6 @@ CHANNEL_REC *channel_find(IRC_SERVER_REC *server, const char *channel)
} }
char *channel_get_mode(CHANNEL_REC *channel)
{
GString *mode;
char *ret;
g_return_val_if_fail(channel != NULL, NULL);
mode = g_string_new(NULL);
if (channel->mode_secret) g_string_append_c(mode, 's');
if (channel->mode_private) g_string_append_c(mode, 'p');
if (channel->mode_moderate) g_string_append_c(mode, 'm');
if (channel->mode_invite) g_string_append_c(mode, 'i');
if (channel->mode_nomsgs) g_string_append_c(mode, 'n');
if (channel->mode_optopic) g_string_append_c(mode, 't');
if (channel->mode_anonymous) g_string_append_c(mode, 'a');
if (channel->mode_reop) g_string_append_c(mode, 'r');
if (channel->mode_key) g_string_append_c(mode, 'k');
if (channel->limit > 0) g_string_append_c(mode, 'l');
if (channel->mode_key) g_string_sprintfa(mode, " %s", channel->key);
if (channel->limit > 0) g_string_sprintfa(mode, " %d", channel->limit);
ret = mode->str;
g_string_free(mode, FALSE);
return ret;
}
#define get_join_key(key) \ #define get_join_key(key) \
(((key) == NULL || *(key) == '\0') ? "x" : (key)) (((key) == NULL || *(key) == '\0') ? "x" : (key))

View File

@ -21,20 +21,12 @@ typedef struct {
GSList *invitelist; /* invite list */ GSList *invitelist; /* invite list */
char *topic; char *topic;
int limit; /* user limit */
char *key; /* password key */
/* channel mode */ /* channel mode */
int no_modes:1; /* channel doesn't support modes */ int no_modes:1; /* channel doesn't support modes */
int mode_invite:1; char *mode;
int mode_secret:1; int limit; /* user limit */
int mode_private:1; char *key; /* password key */
int mode_moderate:1;
int mode_nomsgs:1;
int mode_optopic:1;
int mode_key:1;
int mode_anonymous:1;
int mode_reop:1;
int chanop:1; /* You're a channel operator */ int chanop:1; /* You're a channel operator */
@ -64,8 +56,6 @@ void channel_destroy(CHANNEL_REC *channel);
/* find channel by name, if `server' is NULL, search from all servers */ /* find channel by name, if `server' is NULL, search from all servers */
CHANNEL_REC *channel_find(IRC_SERVER_REC *server, const char *channel); CHANNEL_REC *channel_find(IRC_SERVER_REC *server, const char *channel);
char *channel_get_mode(CHANNEL_REC *channel);
/* Join to channels. `data' contains channels and channel keys */ /* Join to channels. `data' contains channels and channel keys */
void channels_join(IRC_SERVER_REC *server, const char *data, int automatic); void channels_join(IRC_SERVER_REC *server, const char *data, int automatic);

View File

@ -101,10 +101,7 @@ static char *expando_chanmode(void *server, void *item, int *free_ret)
CHANNEL_REC *channel; CHANNEL_REC *channel;
channel = irc_item_channel(item); channel = irc_item_channel(item);
if (channel == NULL) return NULL; return channel == NULL ? NULL : channel->mode;
*free_ret = TRUE;
return channel_get_mode(channel);
} }
/* current nickname */ /* current nickname */

View File

@ -12,9 +12,19 @@
= i line with OTHER type ident = i line with OTHER type ident
- i line, no ident - i line, no ident
*/ */
#define ishostflag(a) ((a) == '^' || (a) == '~' || (a) == '+' || (a) == '=' || (a) == '-') #define ishostflag(a) \
#define isnickflag(a) ((a) == '@' || (a) == '+' || (a) == '-' || (a) == '~') ((a) == '^' || (a) == '~' || \
#define ischannel(a) ((a) == '#' || (a) == '&' || (a) == '!' || (a) == '+') (a) == '+' || (a) == '=' || (a) == '-')
#define isnickflag(a) \
((a) == '@' || (a) == '+' || (a) == '%' || /* op / voice / half-op */ \
(a) == '-' || (a) == '~') /* no idea, just copied from somewhere.. */
#define ischannel(a) \
((a) == '#' || /* normal */ \
(a) == '&' || /* local */ \
(a) == '!' || /* secure */ \
(a) == '+') /* modeless */
/* values returned by module_category() */ /* values returned by module_category() */
enum { enum {

View File

@ -39,11 +39,17 @@ static int check_mask(const char *mask, int *wildcards)
return FALSE; return FALSE;
} }
int irc_mask_match(const char *mask, const char *nick, const char *user, const char *host) int irc_mask_match(const char *mask, const char *nick,
const char *user, const char *host)
{ {
char *str; char *str;
int ret, wildcards; int ret, wildcards;
g_return_val_if_fail(mask != NULL, FALSE);
g_return_val_if_fail(nick != NULL, FALSE);
g_return_val_if_fail(user != NULL, FALSE);
g_return_val_if_fail(host != NULL, FALSE);
if (!check_mask(mask, &wildcards)) { if (!check_mask(mask, &wildcards)) {
return wildcards ? return wildcards ?
match_wildcards(mask, nick) : match_wildcards(mask, nick) :
@ -57,12 +63,14 @@ int irc_mask_match(const char *mask, const char *nick, const char *user, const c
return ret; return ret;
} }
int irc_mask_match_address(const char *mask, const char *nick, const char *address) int irc_mask_match_address(const char *mask, const char *nick,
const char *address)
{ {
char *str; char *str;
int ret, wildcards; int ret, wildcards;
g_return_val_if_fail(address != NULL, FALSE); g_return_val_if_fail(mask != NULL, FALSE);
g_return_val_if_fail(nick != NULL, FALSE);
if (!check_mask(mask, &wildcards)) { if (!check_mask(mask, &wildcards)) {
return wildcards ? return wildcards ?
@ -70,7 +78,7 @@ int irc_mask_match_address(const char *mask, const char *nick, const char *addre
g_strcasecmp(mask, nick) == 0; g_strcasecmp(mask, nick) == 0;
} }
str = g_strdup_printf("%s!%s", nick, address); str = g_strdup_printf("%s!%s", nick, address != NULL ? address : "");
ret = match_wildcards(mask, str); ret = match_wildcards(mask, str);
g_free(str); g_free(str);
@ -136,7 +144,8 @@ char *irc_get_mask(const char *nick, const char *address, int flags)
char *ret, *user, *host; char *ret, *user, *host;
/* strip -, ^ or ~ from start.. */ /* strip -, ^ or ~ from start.. */
user = g_strconcat("*", ishostflag(*address) ? address+1 : address, NULL); user = g_strconcat("*", ishostflag(*address) ?
address+1 : address, NULL);
/* split user and host */ /* split user and host */
host = strchr(user, '@'); host = strchr(user, '@');

View File

@ -43,17 +43,18 @@ void banlist_free(GSList *banlist)
ban_free(&banlist, banlist->data); ban_free(&banlist, banlist->data);
} }
BAN_REC *banlist_add(CHANNEL_REC *channel, const char *ban, const char *nick, time_t time) BAN_REC *banlist_add(CHANNEL_REC *channel, const char *ban,
const char *nick, time_t time)
{ {
BAN_REC *rec; BAN_REC *rec;
g_return_val_if_fail(channel != NULL, NULL); g_return_val_if_fail(channel != NULL, NULL);
g_return_val_if_fail(ban != NULL, NULL); g_return_val_if_fail(ban != NULL, NULL);
g_return_val_if_fail(nick != NULL, NULL);
rec = g_new(BAN_REC, 1); rec = g_new(BAN_REC, 1);
rec->ban = g_strdup(ban); rec->ban = g_strdup(ban);
rec->setby = g_strdup(nick); rec->setby = nick == NULL || *nick == '\0' ? NULL :
g_strdup(nick);
rec->time = time; rec->time = time;
channel->banlist = g_slist_append(channel->banlist, rec); channel->banlist = g_slist_append(channel->banlist, rec);
@ -62,36 +63,48 @@ BAN_REC *banlist_add(CHANNEL_REC *channel, const char *ban, const char *nick, ti
return rec; return rec;
} }
void banlist_remove(CHANNEL_REC *channel, const char *ban) static BAN_REC *banlist_find(GSList *list, const char *ban)
{ {
GSList *tmp; GSList *tmp;
g_return_if_fail(ban != NULL); g_return_val_if_fail(ban != NULL, NULL);
for (tmp = channel->banlist; tmp != NULL; tmp = tmp->next) for (tmp = list; tmp != NULL; tmp = tmp->next) {
{
BAN_REC *rec = tmp->data; BAN_REC *rec = tmp->data;
if (g_strcasecmp(rec->ban, ban) == 0) if (g_strcasecmp(rec->ban, ban) == 0)
{ return rec;
signal_emit("ban remove", 1, rec); }
ban_free(&channel->banlist, rec);
break; return NULL;
} }
void banlist_remove(CHANNEL_REC *channel, const char *ban)
{
BAN_REC *rec;
g_return_if_fail(channel != NULL);
g_return_if_fail(ban != NULL);
rec = banlist_find(channel->banlist, ban);
if (rec != NULL) {
signal_emit("ban remove", 1, rec);
ban_free(&channel->banlist, rec);
} }
} }
BAN_REC *banlist_exception_add(CHANNEL_REC *channel, const char *ban, const char *nick, time_t time) BAN_REC *banlist_exception_add(CHANNEL_REC *channel, const char *ban,
const char *nick, time_t time)
{ {
BAN_REC *rec; BAN_REC *rec;
g_return_val_if_fail(channel != NULL, NULL); g_return_val_if_fail(channel != NULL, NULL);
g_return_val_if_fail(ban != NULL, NULL); g_return_val_if_fail(ban != NULL, NULL);
g_return_val_if_fail(nick != NULL, NULL);
rec = g_new(BAN_REC, 1); rec = g_new(BAN_REC, 1);
rec->ban = g_strdup(ban); rec->ban = g_strdup(ban);
rec->setby = g_strdup(nick); rec->setby = nick == NULL || *nick == '\0' ? NULL :
g_strdup(nick);
rec->time = time; rec->time = time;
channel->ebanlist = g_slist_append(channel->ebanlist, rec); channel->ebanlist = g_slist_append(channel->ebanlist, rec);
@ -102,20 +115,15 @@ BAN_REC *banlist_exception_add(CHANNEL_REC *channel, const char *ban, const char
void banlist_exception_remove(CHANNEL_REC *channel, const char *ban) void banlist_exception_remove(CHANNEL_REC *channel, const char *ban)
{ {
GSList *tmp; BAN_REC *rec;
g_return_if_fail(channel != NULL);
g_return_if_fail(ban != NULL); g_return_if_fail(ban != NULL);
for (tmp = channel->ebanlist; tmp != NULL; tmp = tmp->next) rec = banlist_find(channel->ebanlist, ban);
{ if (rec != NULL) {
BAN_REC *rec = tmp->data; signal_emit("ban exception remove", 1, rec);
ban_free(&channel->ebanlist, rec);
if (g_strcasecmp(rec->ban, ban) == 0)
{
signal_emit("ban exception remove", 1, rec);
ban_free(&channel->ebanlist, rec);
break;
}
} }
} }
@ -172,9 +180,7 @@ static void event_banlist(const char *data, IRC_SERVER_REC *server)
params = event_get_params(data, 5, NULL, &channel, &ban, &setby, &tims); params = event_get_params(data, 5, NULL, &channel, &ban, &setby, &tims);
chanrec = channel_find(server, channel); chanrec = channel_find(server, channel);
if (chanrec != NULL) { if (chanrec != NULL) {
if (sscanf(tims, "%ld", (long *) &tim) != 1) tim = (time_t) atol(tims);
tim = time(NULL);
banlist_add(chanrec, ban, setby, tim); banlist_add(chanrec, ban, setby, tim);
} }
g_free(params); g_free(params);
@ -191,9 +197,7 @@ static void event_ebanlist(const char *data, IRC_SERVER_REC *server)
params = event_get_params(data, 5, NULL, &channel, &ban, &setby, &tims); params = event_get_params(data, 5, NULL, &channel, &ban, &setby, &tims);
chanrec = channel_find(server, channel); chanrec = channel_find(server, channel);
if (chanrec != NULL) { if (chanrec != NULL) {
if (sscanf(tims, "%ld", (long *) &tim) != 1) tim = (time_t) atol(tims);
tim = time(NULL);
banlist_exception_add(chanrec, ban, setby, tim); banlist_exception_add(chanrec, ban, setby, tim);
} }
g_free(params); g_free(params);

View File

@ -28,7 +28,8 @@
#include "nicklist.h" #include "nicklist.h"
/* Change nick's mode in channel */ /* Change nick's mode in channel */
static void nick_mode_change(CHANNEL_REC *channel, const char *nick, const char mode, gboolean set) static void nick_mode_change(CHANNEL_REC *channel, const char *nick,
const char mode, int type)
{ {
NICK_REC *nickrec; NICK_REC *nickrec;
@ -38,26 +39,173 @@ static void nick_mode_change(CHANNEL_REC *channel, const char *nick, const char
nickrec = nicklist_find(channel, nick); nickrec = nicklist_find(channel, nick);
if (nickrec == NULL) return; /* No /names list got yet */ if (nickrec == NULL) return; /* No /names list got yet */
if (mode == '@') nickrec->op = set; if (mode == '@') nickrec->op = type == '+';
if (mode == '+') nickrec->voice = set; if (mode == '+') nickrec->voice = type == '+';
if (mode == '%') nickrec->halfop = type == '+';
signal_emit("nick mode changed", 2, channel, nickrec); signal_emit("nick mode changed", 2, channel, nickrec);
} }
/* Parse channel mode string */ static int mode_is_set(const char *str, char mode)
void parse_channel_modes(CHANNEL_REC *channel, const char *setby, const char *mode)
{ {
char *dup, *modestr, *ptr, *curmode, type; char *end, *pos;
g_return_val_if_fail(str != NULL, FALSE);
end = strchr(str, ' ');
pos = strchr(str, mode);
return pos != NULL && (end == NULL || pos < end);
}
/* add argument to specified position */
static void mode_add_arg(GString *str, int pos, const char *arg)
{
char *p;
for (p = str->str; *p != '\0'; p++) {
if (*p != ' ')
continue;
if (pos == 0)
break;
pos--;
}
/* .. GLib shouldn't fail when inserting at the end of the string */
if (*p == '\0') {
g_string_append_c(str, ' ');
g_string_append(str, arg);
} else {
pos = (int) (p-str->str);
g_string_insert_c(str, pos, ' ');
g_string_insert(str, pos+1, arg);
}
}
/* Add mode character to list sorted alphabetically */
static void mode_add_sorted(GString *str, char mode, const char *arg)
{
char *p;
int argpos = 0;
/* check that mode isn't already set */
if (mode_is_set(str->str, mode))
return;
for (p = str->str; *p != '\0' && *p != ' '; p++) {
if (mode < *p)
break;
if (HAS_MODE_ARG_SET(*p))
argpos++;
}
/* .. GLib shouldn't fail when inserting at the end of the string */
if (*p == '\0')
g_string_append_c(str, mode);
else
g_string_insert_c(str, (int) (p-str->str), mode);
if (arg != NULL)
mode_add_arg(str, argpos+1, arg);
}
/* remove the n'th argument */
static void node_remove_arg(GString *str, int pos)
{
char *p;
int startpos;
startpos = -1;
for (p = str->str; *p != '\0'; p++) {
if (*p != ' ')
continue;
if (pos < 0)
break;
if (pos == 0)
startpos = (int) (p-str->str);
pos--;
}
if (startpos == -1)
return; /* not found */
g_string_erase(str, startpos, (int) (p-str->str)-startpos);
}
/* remove mode (and it's argument) from string */
static void mode_remove(GString *str, char mode)
{
char *p;
int argpos = 0;
for (p = str->str; *p != '\0' && *p != ' '; p++) {
if (mode == *p) {
g_string_erase(str, (int) (p-str->str), 1);
if (HAS_MODE_ARG_SET(mode))
node_remove_arg(str, argpos);
break;
}
if (HAS_MODE_ARG_SET(*p))
argpos++;
}
}
static void mode_set(GString *str, char type, char mode)
{
g_return_if_fail(str != NULL);
if (type == '-')
mode_remove(str, mode);
else
mode_add_sorted(str, mode, NULL);
}
static void mode_set_arg(GString *str, char type, char mode, const char *arg)
{
g_return_if_fail(str != NULL);
g_return_if_fail(type == '-' || arg != NULL);
if (type == '-')
mode_remove(str, mode);
else
mode_add_sorted(str, mode, arg);
}
int channel_mode_is_set(CHANNEL_REC *channel, char mode)
{
g_return_val_if_fail(channel != NULL, FALSE);
return channel->mode == NULL ? FALSE :
mode_is_set(channel->mode, mode);
}
/* Parse channel mode string */
void parse_channel_modes(CHANNEL_REC *channel, const char *setby,
const char *mode)
{
GString *newmode;
char *dup, *modestr, *arg, *curmode, type;
g_return_if_fail(channel != NULL); g_return_if_fail(channel != NULL);
g_return_if_fail(setby != NULL);
g_return_if_fail(mode != NULL); g_return_if_fail(mode != NULL);
type = '+'; type = '+';
newmode = g_string_new(channel->mode);
dup = modestr = g_strdup(mode); dup = modestr = g_strdup(mode);
curmode = cmd_get_param(&modestr); curmode = cmd_get_param(&modestr);
while (*curmode != '\0') { while (*curmode != '\0') {
if (HAS_MODE_ARG(type, *curmode)) {
/* get the argument for the mode. since we're
expecting argument, ignore the mode if there's
no argument (shouldn't happen). */
arg = cmd_get_param(&modestr);
if (*arg == '\0')
continue;
} else {
arg = NULL;
}
switch (*curmode) { switch (*curmode) {
case '+': case '+':
case '-': case '-':
@ -65,98 +213,50 @@ void parse_channel_modes(CHANNEL_REC *channel, const char *setby, const char *mo
break; break;
case 'b': case 'b':
ptr = cmd_get_param(&modestr);
if (*ptr == '\0') break;
if (type == '+') if (type == '+')
banlist_add(channel, ptr, setby, time(NULL)); banlist_add(channel, arg, setby, time(NULL));
else else
banlist_remove(channel, ptr); banlist_remove(channel, arg);
break; break;
case 'e': case 'e':
ptr = cmd_get_param(&modestr);
if (*ptr == '\0') break;
if (type == '+') if (type == '+')
banlist_exception_add(channel, ptr, setby, time(NULL)); banlist_exception_add(channel, arg, setby,
time(NULL));
else else
banlist_exception_remove(channel, ptr); banlist_exception_remove(channel, arg);
break; break;
case 'I': case 'I':
ptr = cmd_get_param(&modestr);
if (*ptr == '\0') break;
if (type == '+') if (type == '+')
invitelist_add(channel, ptr); invitelist_add(channel, arg);
else else
invitelist_remove(channel, ptr); invitelist_remove(channel, arg);
break;
case 'v':
ptr = cmd_get_param(&modestr);
if (*ptr != '\0')
nick_mode_change(channel, ptr, '+', type == '+');
break; break;
case 'o': case 'o':
ptr = cmd_get_param(&modestr); if (g_strcasecmp(channel->server->nick, arg) == 0)
if (*ptr == '\0') break; channel->chanop = type == '+';
nick_mode_change(channel, arg, '@', type);
if (g_strcasecmp(channel->server->nick, ptr) == 0) break;
channel->chanop = type == '+' ? TRUE : FALSE; case 'h':
nick_mode_change(channel, ptr, '@', type == '+'); nick_mode_change(channel, arg, '%', type);
break;
case 'v':
nick_mode_change(channel, arg, '+', type);
break; break;
case 'l': case 'l':
if (type == '-') mode_set_arg(newmode, type, 'l', arg);
channel->limit = 0; channel->limit = type == '-' ? 0 : atoi(arg);
else {
ptr = cmd_get_param(&modestr);
sscanf(ptr, "%d", &channel->limit);
}
signal_emit("channel mode changed", 1, channel);
break; break;
case 'k': case 'k':
ptr = cmd_get_param(&modestr); mode_set_arg(newmode, type, 'k', arg);
if (*ptr != '\0' || type == '-') { g_free_and_null(channel->key);
g_free_and_null(channel->key); if (type == '+')
channel->mode_key = type == '+'; channel->key = g_strdup(arg);
if (type == '+')
channel->key = g_strdup(ptr);
}
signal_emit("channel mode changed", 1, channel);
break; break;
default: default:
switch (*curmode) { mode_set(newmode, type, *curmode);
case 'i':
channel->mode_invite = type == '+';
break;
case 'm':
channel->mode_moderate = type == '+';
break;
case 's':
channel->mode_secret = type == '+';
break;
case 'p':
channel->mode_private = type == '+';
break;
case 'n':
channel->mode_nomsgs = type == '+';
break;
case 't':
channel->mode_optopic = type == '+';
break;
case 'a':
channel->mode_anonymous = type == '+';
break;
case 'r':
channel->mode_reop = type == '+';
break;
}
signal_emit("channel mode changed", 1, channel);
break; break;
} }
@ -164,52 +264,57 @@ void parse_channel_modes(CHANNEL_REC *channel, const char *setby, const char *mo
} }
g_free(dup); g_free(dup);
if (!channel->mode_key && channel->key != NULL) { if (strchr(channel->mode, 'k') == NULL && channel->key != NULL) {
/* join was used with key but there's no key set /* join was used with key but there's no key set
in channel modes.. */ in channel modes.. */
g_free(channel->key); g_free(channel->key);
channel->key = NULL; channel->key = NULL;
} }
}
static int compare_char(const void *p1, const void *p2) if (strcmp(newmode->str, channel->mode) != 0) {
{ g_free(channel->mode);
const char *c1 = p1, *c2 = p2; channel->mode = g_strdup(newmode->str);
return *c1 < *c2 ? -1 : signal_emit("channel mode changed", 1, channel);
(*c1 > *c2 ? 1 : 0); }
g_string_free(newmode, TRUE);
} }
/* add `mode' to `old' - return newly allocated mode. */ /* add `mode' to `old' - return newly allocated mode. */
char *modes_join(const char *old, const char *mode) char *modes_join(const char *old, const char *mode)
{ {
GString *newmode; GString *newmode;
char type, *p; char *dup, *modestr, *curmode, type;
g_return_val_if_fail(mode != NULL, NULL); g_return_val_if_fail(mode != NULL, NULL);
type = '+'; type = '+';
newmode = g_string_new(old); newmode = g_string_new(old);
while (*mode != '\0' && *mode != ' ') {
if (*mode == '+' || *mode == '-') {
type = *mode;
} else {
p = strchr(newmode->str, *mode);
if (type == '+' && p == NULL) dup = modestr = g_strdup(mode);
g_string_append_c(newmode, *mode); curmode = cmd_get_param(&modestr);
else if (type == '-' && p != NULL) while (*curmode != '\0' && *curmode != ' ') {
g_string_erase(newmode, (int) (p-newmode->str), 1); if (*curmode == '+' || *curmode == '-') {
type = *curmode;
curmode++;
continue;
} }
mode++; if (!HAS_MODE_ARG(type, *curmode))
mode_set(newmode, type, *curmode);
else {
mode_set_arg(newmode, type, *curmode,
cmd_get_param(&modestr));
}
curmode++;
} }
g_free(dup);
qsort(newmode->str, sizeof(char), newmode->len, compare_char); modestr = newmode->str;
p = newmode->str;
g_string_free(newmode, FALSE); g_string_free(newmode, FALSE);
return p; return modestr;
} }
/* Parse user mode string */ /* Parse user mode string */
@ -280,7 +385,8 @@ static void event_unaway(const char *data, IRC_SERVER_REC *server)
signal_emit("away mode changed", 1, server); signal_emit("away mode changed", 1, server);
} }
void channel_set_singlemode(IRC_SERVER_REC *server, const char *channel, const char *nicks, const char *mode) void channel_set_singlemode(IRC_SERVER_REC *server, const char *channel,
const char *nicks, const char *mode)
{ {
GString *str; GString *str;
int num, modepos; int num, modepos;
@ -323,9 +429,10 @@ void channel_set_singlemode(IRC_SERVER_REC *server, const char *channel, const c
g_string_free(str, TRUE); g_string_free(str, TRUE);
} }
void channel_set_mode(IRC_SERVER_REC *server, const char *channel, const char *mode) void channel_set_mode(IRC_SERVER_REC *server, const char *channel,
const char *mode)
{ {
char *modestr, *curmode, *orig; char *modestr, *curmode, *orig, type;
GString *tmode, *targs; GString *tmode, *targs;
int count; int count;
@ -339,9 +446,14 @@ void channel_set_mode(IRC_SERVER_REC *server, const char *channel, const char *m
orig = modestr = g_strdup(mode); orig = modestr = g_strdup(mode);
type = '+';
curmode = cmd_get_param(&modestr); curmode = cmd_get_param(&modestr);
for (; *curmode != '\0'; curmode++) { for (; *curmode != '\0'; curmode++) {
if (count == server->max_modes_in_cmd && HAS_MODE_ARG(*curmode)) { if (*curmode == '+' || *curmode == '-')
type = *curmode;
if (count == server->max_modes_in_cmd &&
HAS_MODE_ARG(type, *curmode)) {
irc_send_cmdv(server, "MODE %s %s%s", channel, tmode->str, targs->str); irc_send_cmdv(server, "MODE %s %s%s", channel, tmode->str, targs->str);
count = 0; count = 0;
@ -351,7 +463,7 @@ void channel_set_mode(IRC_SERVER_REC *server, const char *channel, const char *m
g_string_append_c(tmode, *curmode); g_string_append_c(tmode, *curmode);
if (HAS_MODE_ARG(*curmode)) { if (HAS_MODE_ARG(type, *curmode)) {
char *arg; char *arg;
count++; count++;

View File

@ -4,8 +4,21 @@
#include "server.h" #include "server.h"
#include "channels.h" #include "channels.h"
#define HAS_MODE_ARG(c) ((c) == 'b' || (c) == 'e' || (c) == 'I' || \ /* modes that have argument always */
(c) == 'v' || (c) == 'o' || (c) == 'l' || (c) == 'k') #define HAS_MODE_ARG_ALWAYS(mode) \
((mode) == 'b' || (mode) == 'e' || (mode) == 'I' || \
(mode) == 'o' || (mode) == 'h' || (mode) == 'v' || (mode) == 'k')
/* modes that have argument when being set (+) */
#define HAS_MODE_ARG_SET(mode) \
(HAS_MODE_ARG_ALWAYS(mode) || (mode) == 'l')
/* modes that have argument when being unset (-) */
#define HAS_MODE_ARG_UNSET(mode) \
HAS_MODE_ARG_ALWAYS(mode)
#define HAS_MODE_ARG(type, mode) \
((type) == '+' ? HAS_MODE_ARG_SET(mode) : HAS_MODE_ARG_UNSET(mode))
void modes_init(void); void modes_init(void);
void modes_deinit(void); void modes_deinit(void);
@ -13,9 +26,14 @@ void modes_deinit(void);
/* add `mode' to `old' - return newly allocated mode. */ /* add `mode' to `old' - return newly allocated mode. */
char *modes_join(const char *old, const char *mode); char *modes_join(const char *old, const char *mode);
void parse_channel_modes(CHANNEL_REC *channel, const char *setby, const char *modestr); int channel_mode_is_set(CHANNEL_REC *channel, char mode);
void channel_set_singlemode(IRC_SERVER_REC *server, const char *channel, const char *nicks, const char *mode); void parse_channel_modes(CHANNEL_REC *channel, const char *setby,
void channel_set_mode(IRC_SERVER_REC *server, const char *channel, const char *mode); const char *modestr);
void channel_set_singlemode(IRC_SERVER_REC *server, const char *channel,
const char *nicks, const char *mode);
void channel_set_mode(IRC_SERVER_REC *server, const char *channel,
const char *mode);
#endif #endif

View File

@ -25,11 +25,13 @@
#include "channels.h" #include "channels.h"
#include "irc.h" #include "irc.h"
#include "masks.h" #include "masks.h"
#include "modes.h"
#include "nicklist.h" #include "nicklist.h"
#include "irc-server.h" #include "irc-server.h"
/* Add new nick to list */ /* Add new nick to list */
NICK_REC *nicklist_insert(CHANNEL_REC *channel, const char *nick, int op, int voice, int send_massjoin) NICK_REC *nicklist_insert(CHANNEL_REC *channel, const char *nick,
int op, int voice, int send_massjoin)
{ {
NICK_REC *rec; NICK_REC *rec;
@ -70,7 +72,8 @@ void nicklist_remove(CHANNEL_REC *channel, NICK_REC *nick)
nicklist_destroy(channel, nick); nicklist_destroy(channel, nick);
} }
static NICK_REC *nicklist_find_wildcards(CHANNEL_REC *channel, const char *mask) static NICK_REC *nicklist_find_wildcards(CHANNEL_REC *channel,
const char *mask)
{ {
GSList *nicks, *tmp; GSList *nicks, *tmp;
NICK_REC *nick; NICK_REC *nick;
@ -80,7 +83,7 @@ static NICK_REC *nicklist_find_wildcards(CHANNEL_REC *channel, const char *mask)
for (tmp = nicks; tmp != NULL; tmp = tmp->next) { for (tmp = nicks; tmp != NULL; tmp = tmp->next) {
nick = tmp->data; nick = tmp->data;
if (irc_mask_match_address(mask, nick->nick, nick->host == NULL ? "" : nick->host)) if (irc_mask_match_address(mask, nick->nick, nick->host))
break; break;
} }
g_slist_free(nicks); g_slist_free(nicks);
@ -96,7 +99,7 @@ GSList *nicklist_find_multiple(CHANNEL_REC *channel, const char *mask)
NICK_REC *nick = tmp->data; NICK_REC *nick = tmp->data;
next = tmp->next; next = tmp->next;
if (!irc_mask_match_address(mask, nick->nick, nick->host == NULL ? "" : nick->host)) if (!irc_mask_match_address(mask, nick->nick, nick->host))
nicks = g_slist_remove(nicks, tmp->data); nicks = g_slist_remove(nicks, tmp->data);
} }
@ -170,7 +173,8 @@ GSList *nicklist_get_same(IRC_SERVER_REC *server, const char *nick)
rec.list = NULL; rec.list = NULL;
for (tmp = server->channels; tmp != NULL; tmp = tmp->next) { for (tmp = server->channels; tmp != NULL; tmp = tmp->next) {
rec.channel = tmp->data; rec.channel = tmp->data;
g_hash_table_foreach(rec.channel->nicks, (GHFunc) get_nicks_same_hash, &rec); g_hash_table_foreach(rec.channel->nicks,
(GHFunc) get_nicks_same_hash, &rec);
} }
return rec.list; return rec.list;
} }
@ -224,8 +228,9 @@ int irc_nick_match(const char *nick, const char *msg)
g_return_val_if_fail(nick != NULL, FALSE); g_return_val_if_fail(nick != NULL, FALSE);
g_return_val_if_fail(msg != NULL, FALSE); g_return_val_if_fail(msg != NULL, FALSE);
if (g_strncasecmp(msg, nick, strlen(nick)) == 0 && len = strlen(nick);
!isalnum((int) msg[strlen(nick)])) return TRUE; if (g_strncasecmp(msg, nick, len) == 0 && !isalnum((int) msg[len]))
return TRUE;
stripnick = nick_strip(nick); stripnick = nick_strip(nick);
stripmsg = nick_strip(msg); stripmsg = nick_strip(msg);
@ -262,9 +267,9 @@ static void event_names_list(const char *data, IRC_SERVER_REC *server)
get to know if the channel is +p or +s a few seconds before get to know if the channel is +p or +s a few seconds before
we receive the MODE reply... */ we receive the MODE reply... */
if (*type == '*') if (*type == '*')
chanrec->mode_private = TRUE; parse_channel_modes(chanrec, NULL, "+p");
else if (*type == '@') else if (*type == '@')
chanrec->mode_secret = TRUE; parse_channel_modes(chanrec, NULL, "+s");
while (*names != '\0') { while (*names != '\0') {
while (*names == ' ') names++; while (*names == ' ') names++;
@ -275,7 +280,8 @@ static void event_names_list(const char *data, IRC_SERVER_REC *server)
if (*ptr == '@' && g_strcasecmp(server->nick, ptr+1) == 0) if (*ptr == '@' && g_strcasecmp(server->nick, ptr+1) == 0)
chanrec->chanop = TRUE; chanrec->chanop = TRUE;
nicklist_insert(chanrec, ptr+isnickflag(*ptr), *ptr == '@', *ptr == '+', FALSE); nicklist_insert(chanrec, ptr+isnickflag(*ptr),
*ptr == '@', *ptr == '+', FALSE);
} }
g_free(params); g_free(params);
@ -299,7 +305,8 @@ static void event_end_of_names(const char *data, IRC_SERVER_REC *server)
g_free(params); g_free(params);
} }
static void nicklist_update_flags(IRC_SERVER_REC *server, const char *nick, int gone, int ircop) static void nicklist_update_flags(IRC_SERVER_REC *server, const char *nick,
int gone, int ircop)
{ {
GSList *nicks, *tmp; GSList *nicks, *tmp;
CHANNEL_REC *channel; CHANNEL_REC *channel;
@ -336,7 +343,8 @@ static void event_who(const char *data, IRC_SERVER_REC *server)
g_return_if_fail(data != NULL); g_return_if_fail(data != NULL);
params = event_get_params(data, 8, NULL, &channel, &user, &host, NULL, &nick, &stat, &realname); params = event_get_params(data, 8, NULL, &channel, &user, &host,
NULL, &nick, &stat, &realname);
/* get hop count */ /* get hop count */
hops = realname; hops = realname;
@ -372,8 +380,10 @@ static void event_whois(const char *data, IRC_SERVER_REC *server)
server->whois_coming = TRUE; server->whois_coming = TRUE;
/* first remove the gone-flag, if user is gone it will be set later.. */ /* first remove the gone-flag, if user is gone
params = event_get_params(data, 6, NULL, &nick, NULL, NULL, NULL, &realname); it will be set later.. */
params = event_get_params(data, 6, NULL, &nick, NULL,
NULL, NULL, &realname);
nicks = nicklist_get_same(server, nick); nicks = nicklist_get_same(server, nick);
for (tmp = nicks; tmp != NULL; tmp = tmp->next->next) { for (tmp = nicks; tmp != NULL; tmp = tmp->next->next) {
@ -477,7 +487,8 @@ static void event_target_unavailable(const char *data, IRC_SERVER_REC *server)
g_free(params); g_free(params);
} }
static void event_nick(const char *data, IRC_SERVER_REC *server, const char *orignick) static void event_nick(const char *data, IRC_SERVER_REC *server,
const char *orignick)
{ {
CHANNEL_REC *channel; CHANNEL_REC *channel;
NICK_REC *nickrec; NICK_REC *nickrec;
@ -550,10 +561,12 @@ static void sig_channel_created(CHANNEL_REC *channel)
{ {
g_return_if_fail(channel != NULL); g_return_if_fail(channel != NULL);
channel->nicks = g_hash_table_new((GHashFunc) g_istr_hash, (GCompareFunc) g_istr_equal); channel->nicks = g_hash_table_new((GHashFunc) g_istr_hash,
(GCompareFunc) g_istr_equal);
} }
static void nicklist_remove_hash(gpointer key, NICK_REC *nick, CHANNEL_REC *channel) static void nicklist_remove_hash(gpointer key, NICK_REC *nick,
CHANNEL_REC *channel)
{ {
nicklist_destroy(channel, nick); nicklist_destroy(channel, nick);
} }
@ -562,7 +575,8 @@ static void sig_channel_destroyed(CHANNEL_REC *channel)
{ {
g_return_if_fail(channel != NULL); g_return_if_fail(channel != NULL);
g_hash_table_foreach(channel->nicks, (GHFunc) nicklist_remove_hash, channel); g_hash_table_foreach(channel->nicks,
(GHFunc) nicklist_remove_hash, channel);
g_hash_table_destroy(channel->nicks); g_hash_table_destroy(channel->nicks);
} }

View File

@ -15,6 +15,7 @@ typedef struct {
int hops; int hops;
int op:1; int op:1;
int halfop:1;
int voice:1; int voice:1;
int gone:1; int gone:1;
int ircop:1; int ircop:1;

View File

@ -76,6 +76,7 @@ PPCODE:
hv_store(hv, "createtime", 10, newSViv(channel->createtime), 0); hv_store(hv, "createtime", 10, newSViv(channel->createtime), 0);
hv_store(hv, "topic", 5, new_pv(channel->topic), 0); hv_store(hv, "topic", 5, new_pv(channel->topic), 0);
hv_store(hv, "mode", 4, new_pv(channel->mode), 0);
hv_store(hv, "limit", 5, newSViv(channel->limit), 0); hv_store(hv, "limit", 5, newSViv(channel->limit), 0);
hv_store(hv, "key", 3, new_pv(channel->key), 0); hv_store(hv, "key", 3, new_pv(channel->key), 0);
@ -109,10 +110,6 @@ command(channel, cmd)
CODE: CODE:
signal_emit("send command", 3, cmd, channel->server, channel); signal_emit("send command", 3, cmd, channel->server, channel);
char *
channel_get_mode(channel)
Irssi::Channel channel
Irssi::Nick Irssi::Nick
nicklist_insert(channel, nick, op, voice, send_massjoin) nicklist_insert(channel, nick, op, voice, send_massjoin)
Irssi::Channel channel Irssi::Channel channel