1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-27 20:36:18 +00:00

Refactor join_send_topic() into IRC_Send_Channel_Info() and use it for JOIN and NJOIN handlers

This reduces code duplication and brings the order of messages on JOIN
and NJOIN in line.

Fixes #288.
This commit is contained in:
Alexander Barton 2022-12-26 17:38:10 +01:00
parent 5ef1a657f4
commit 55744b1863
3 changed files with 36 additions and 49 deletions

View File

@ -248,46 +248,38 @@ join_forward(CLIENT *Client, CLIENT *target, CHANNEL *chan,
} /* join_forward */ } /* join_forward */
/** /**
* Acknowledge user JOIN request and send "channel info" numerics. * Send channel TOPIC and NAMES list to a newly (N)JOIN'ed client.
* *
* @param Client Client used to prefix the generated commands * @param Client Client used to prefix the generated commands
* @param target Forward commands/numerics to this user * @param Chan Channel structure
* @param chan Channel structure
* @param channame Channel name
*/ */
static bool GLOBAL bool
join_send_topic(CLIENT *Client, CLIENT *target, CHANNEL *chan, IRC_Send_Channel_Info(CLIENT *Client, CHANNEL *Chan)
const char *channame)
{ {
const char *topic; const char *topic;
if (Client_Type(Client) != CLIENT_USER) /* Send the topic (if any) to the new client: */
return true; topic = Channel_Topic(Chan);
/* acknowledge join */
if (!IRC_WriteStrClientPrefix(Client, target, "JOIN :%s", channame))
return false;
/* Send topic to client, if any */
topic = Channel_Topic(chan);
assert(topic != NULL); assert(topic != NULL);
if (*topic) { if (*topic) {
if (!IRC_WriteStrClient(Client, RPL_TOPIC_MSG, if (!IRC_WriteStrClient(Client, RPL_TOPIC_MSG,
Client_ID(Client), channame, topic)) Client_ID(Client), Channel_Name(Chan), topic))
return false; return false;
#ifndef STRICT_RFC #ifndef STRICT_RFC
if (!IRC_WriteStrClient(Client, RPL_TOPICSETBY_MSG, if (!IRC_WriteStrClient(Client, RPL_TOPICSETBY_MSG,
Client_ID(Client), channame, Client_ID(Client), Channel_Name(Chan),
Channel_TopicWho(chan), Channel_TopicWho(Chan),
Channel_TopicTime(chan))) Channel_TopicTime(Chan)))
return false; return false;
#endif #endif
} }
/* send list of channel members to client */
if (!IRC_Send_NAMES(Client, chan)) /* Send list of channel members to the new client: */
if (!IRC_Send_NAMES(Client, Chan))
return false; return false;
return IRC_WriteStrClient(Client, RPL_ENDOFNAMES_MSG, Client_ID(Client), return IRC_WriteStrClient(Client, RPL_ENDOFNAMES_MSG,
Channel_Name(chan)); Client_ID(Client), Channel_Name(Chan));
} /* join_send_topic */ }
/** /**
* Handler for the IRC "JOIN" command. * Handler for the IRC "JOIN" command.
@ -408,8 +400,15 @@ IRC_JOIN( CLIENT *Client, REQUEST *Req )
join_forward(Client, target, chan, channame); join_forward(Client, target, chan, channame);
if (!join_send_topic(Client, target, chan, channame)) if (Client_Type(Client) == CLIENT_USER) {
break; /* write error */ /* Acknowledge join ... */
if (!IRC_WriteStrClientPrefix(Client, target,
"JOIN :%s", channame))
break; /* write error */
/* ... and greet new user: */
if (!IRC_Send_Channel_Info(Client, chan))
break; /* write error */
}
join_next: join_next:
/* next channel? */ /* next channel? */

View File

@ -1,6 +1,6 @@
/* /*
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * Copyright (c)2001-2022 by Alexander Barton (alex@barton.de)
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by
@ -25,6 +25,8 @@ GLOBAL bool IRC_LIST PARAMS((CLIENT *Client, REQUEST *Req ));
GLOBAL bool IRC_CHANINFO PARAMS((CLIENT *Client, REQUEST *Req )); GLOBAL bool IRC_CHANINFO PARAMS((CLIENT *Client, REQUEST *Req ));
GLOBAL bool IRC_Send_Channel_Info PARAMS((CLIENT *Client, CHANNEL *Chan));
#endif #endif
/* -eof- */ /* -eof- */

View File

@ -1,6 +1,6 @@
/* /*
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001-2014 Alexander Barton (alex@barton.de) and Contributors. * Copyright (c)2001-2022 Alexander Barton (alex@barton.de) and Contributors.
* *
* This program is free software; you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by
@ -32,6 +32,7 @@
#include "numeric.h" #include "numeric.h"
#include "ngircd.h" #include "ngircd.h"
#include "irc.h" #include "irc.h"
#include "irc-channel.h"
#include "irc-info.h" #include "irc-info.h"
#include "irc-write.h" #include "irc-write.h"
#include "op.h" #include "op.h"
@ -250,7 +251,7 @@ IRC_SERVER( CLIENT *Client, REQUEST *Req )
GLOBAL bool GLOBAL bool
IRC_NJOIN( CLIENT *Client, REQUEST *Req ) IRC_NJOIN( CLIENT *Client, REQUEST *Req )
{ {
char nick_in[COMMAND_LEN], nick_out[COMMAND_LEN], *channame, *ptr, modes[8], *topic; char nick_in[COMMAND_LEN], nick_out[COMMAND_LEN], *channame, *ptr, modes[8];
bool is_owner, is_chanadmin, is_op, is_halfop, is_voiced; bool is_owner, is_chanadmin, is_op, is_halfop, is_voiced;
CHANNEL *chan; CHANNEL *chan;
CLIENT *c; CLIENT *c;
@ -320,26 +321,11 @@ IRC_NJOIN( CLIENT *Client, REQUEST *Req )
IRC_WriteStrChannelPrefix(Client, chan, c, false, IRC_WriteStrChannelPrefix(Client, chan, c, false,
"JOIN :%s", channame); "JOIN :%s", channame);
/* If the client is connected to me... */ /* If the client is connected to this server, it was remotely
if(Client_Conn(c) != NONE) { * joined to the channel by another server/service: So send
/* Send NAMES list to the joined user */ * TOPIC and NAMES messages like on a regular JOIN command! */
if(IRC_Send_NAMES(c, chan)) if(Client_Conn(c) != NONE)
IRC_WriteStrClient(c, RPL_ENDOFNAMES_MSG, Client_ID(Client), IRC_Send_Channel_Info(c, chan);
Channel_Name(chan));
/* Send topic to the joined user */
topic = Channel_Topic(chan);
assert(topic != NULL);
if (*topic) {
IRC_WriteStrClient(c, RPL_TOPIC_MSG, Client_ID(c), channame, topic);
#ifndef STRICT_RFC
IRC_WriteStrClient(c, RPL_TOPICSETBY_MSG,
Client_ID(c), channame,
Channel_TopicWho(chan),
Channel_TopicTime(chan));
#endif
}
}
/* Announce "channel user modes" to the channel, if any */ /* Announce "channel user modes" to the channel, if any */
strlcpy(modes, Channel_UserModes(chan, c), sizeof(modes)); strlcpy(modes, Channel_UserModes(chan, c), sizeof(modes));