Some changes to bring the code i moved all around up-to-date.
This commit is contained in:
parent
6faf3f4d40
commit
aa35afbb1f
|
@ -1409,8 +1409,6 @@ check_forward(struct Client *source_p, struct Channel *chptr,
|
||||||
* output - NONE
|
* output - NONE
|
||||||
* side effects - Use has decided to join 0. This is legacy
|
* side effects - Use has decided to join 0. This is legacy
|
||||||
* from the days when channels were numbers not names. *sigh*
|
* from the days when channels were numbers not names. *sigh*
|
||||||
* There is a bunch of evilness necessary here due to
|
|
||||||
* anti spambot code.
|
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
do_join_0(struct Client *client_p, struct Client *source_p)
|
do_join_0(struct Client *client_p, struct Client *source_p)
|
||||||
|
@ -1425,12 +1423,12 @@ do_join_0(struct Client *client_p, struct Client *source_p)
|
||||||
|
|
||||||
sendto_server(client_p, NULL, CAP_TS6, NOCAPS, ":%s JOIN 0", use_id(source_p));
|
sendto_server(client_p, NULL, CAP_TS6, NOCAPS, ":%s JOIN 0", use_id(source_p));
|
||||||
|
|
||||||
|
while((ptr = source_p->user->channel.head))
|
||||||
|
{
|
||||||
if(source_p->user->channel.head && MyConnect(source_p) &&
|
if(source_p->user->channel.head && MyConnect(source_p) &&
|
||||||
!IsOper(source_p) && !IsExemptSpambot(source_p))
|
!IsOper(source_p) && !IsExemptSpambot(source_p))
|
||||||
check_spambot_warning(source_p, NULL);
|
check_spambot_warning(source_p, NULL);
|
||||||
|
|
||||||
while((ptr = source_p->user->channel.head))
|
|
||||||
{
|
|
||||||
msptr = ptr->data;
|
msptr = ptr->data;
|
||||||
chptr = msptr->chptr;
|
chptr = msptr->chptr;
|
||||||
sendto_channel_local(ALL_MEMBERS, chptr, ":%s!%s@%s PART %s",
|
sendto_channel_local(ALL_MEMBERS, chptr, ":%s!%s@%s PART %s",
|
||||||
|
@ -1443,27 +1441,37 @@ do_join_0(struct Client *client_p, struct Client *source_p)
|
||||||
int
|
int
|
||||||
check_channel_name_loc(struct Client *source_p, const char *name)
|
check_channel_name_loc(struct Client *source_p, const char *name)
|
||||||
{
|
{
|
||||||
|
const char *p;
|
||||||
|
|
||||||
s_assert(name != NULL);
|
s_assert(name != NULL);
|
||||||
if(EmptyString(name))
|
if(EmptyString(name))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if(ConfigFileEntry.disable_fake_channels && !IsOper(source_p))
|
if(ConfigFileEntry.disable_fake_channels && !IsOper(source_p))
|
||||||
{
|
{
|
||||||
for(; *name; ++name)
|
for(p = name; *p; ++p)
|
||||||
{
|
{
|
||||||
if(!IsChanChar(*name) || IsFakeChanChar(*name))
|
if(!IsChanChar(*p) || IsFakeChanChar(*p))
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
for(; *name; ++name)
|
for(p = name; *p; ++p)
|
||||||
{
|
{
|
||||||
if(!IsChanChar(*name))
|
if(!IsChanChar(*p))
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(ConfigChannel.only_ascii_channels)
|
||||||
|
{
|
||||||
|
for(p = name; *p; ++p)
|
||||||
|
if(*p < 33 || *p > 126)
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1479,7 +1487,6 @@ void user_join(struct Client * client_p, struct Client * source_p, const char *
|
||||||
char *p = NULL, *p2 = NULL;
|
char *p = NULL, *p2 = NULL;
|
||||||
char *chanlist;
|
char *chanlist;
|
||||||
char *mykey;
|
char *mykey;
|
||||||
int successful_join_count = 0; /* Number of channels successfully joined */
|
|
||||||
|
|
||||||
jbuf[0] = '\0';
|
jbuf[0] = '\0';
|
||||||
|
|
||||||
|
@ -1613,14 +1620,9 @@ void user_join(struct Client * client_p, struct Client * source_p, const char *
|
||||||
{
|
{
|
||||||
sendto_one(source_p, form_str(ERR_TOOMANYCHANNELS),
|
sendto_one(source_p, form_str(ERR_TOOMANYCHANNELS),
|
||||||
me.name, source_p->name, name);
|
me.name, source_p->name, name);
|
||||||
if(successful_join_count)
|
|
||||||
source_p->localClient->last_join_time = rb_current_time();
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(flags == 0) /* if channel doesn't exist, don't penalize */
|
|
||||||
successful_join_count++;
|
|
||||||
|
|
||||||
if(chptr == NULL) /* If I already have a chptr, no point doing this */
|
if(chptr == NULL) /* If I already have a chptr, no point doing this */
|
||||||
{
|
{
|
||||||
chptr = get_or_create_channel(source_p, name, NULL);
|
chptr = get_or_create_channel(source_p, name, NULL);
|
||||||
|
@ -1629,15 +1631,10 @@ void user_join(struct Client * client_p, struct Client * source_p, const char *
|
||||||
{
|
{
|
||||||
sendto_one(source_p, form_str(ERR_UNAVAILRESOURCE),
|
sendto_one(source_p, form_str(ERR_UNAVAILRESOURCE),
|
||||||
me.name, source_p->name, name);
|
me.name, source_p->name, name);
|
||||||
if(successful_join_count > 0)
|
|
||||||
successful_join_count--;
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!IsOper(source_p) && !IsExemptSpambot(source_p))
|
|
||||||
check_spambot_warning(source_p, name);
|
|
||||||
|
|
||||||
/* can_join checks for +i key, bans etc */
|
/* can_join checks for +i key, bans etc */
|
||||||
if((i = can_join(source_p, chptr, key)))
|
if((i = can_join(source_p, chptr, key)))
|
||||||
{
|
{
|
||||||
|
@ -1651,13 +1648,15 @@ void user_join(struct Client * client_p, struct Client * source_p, const char *
|
||||||
if(i != ERR_CUSTOM)
|
if(i != ERR_CUSTOM)
|
||||||
sendto_one(source_p, form_str(i), me.name, source_p->name, name);
|
sendto_one(source_p, form_str(i), me.name, source_p->name, name);
|
||||||
|
|
||||||
if(successful_join_count > 0)
|
|
||||||
successful_join_count--;
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
sendto_one_numeric(source_p, ERR_LINKCHANNEL, form_str(ERR_LINKCHANNEL), name, chptr->chname);
|
sendto_one_numeric(source_p, ERR_LINKCHANNEL, form_str(ERR_LINKCHANNEL), name, chptr->chname);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(flags == 0 &&
|
||||||
|
!IsOper(source_p) && !IsExemptSpambot(source_p))
|
||||||
|
check_spambot_warning(source_p, name);
|
||||||
|
|
||||||
/* add the user to the channel */
|
/* add the user to the channel */
|
||||||
add_user_to_channel(chptr, source_p, flags);
|
add_user_to_channel(chptr, source_p, flags);
|
||||||
|
@ -1714,9 +1713,6 @@ void user_join(struct Client * client_p, struct Client * source_p, const char *
|
||||||
|
|
||||||
channel_member_names(chptr, source_p, 1);
|
channel_member_names(chptr, source_p, 1);
|
||||||
|
|
||||||
if(successful_join_count)
|
|
||||||
source_p->localClient->last_join_time = rb_current_time();
|
|
||||||
|
|
||||||
hook_info.client = source_p;
|
hook_info.client = source_p;
|
||||||
hook_info.chptr = chptr;
|
hook_info.chptr = chptr;
|
||||||
hook_info.key = key;
|
hook_info.key = key;
|
||||||
|
|
Loading…
Reference in New Issue