forked from PsychoticNinja/ailin-nemui-irssi
226 lines
7.4 KiB
C
226 lines
7.4 KiB
C
/*
|
|
irc-session.c : irssi
|
|
|
|
Copyright (C) 2001 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.,
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
#include "module.h"
|
|
#include "signals.h"
|
|
#include "signal-registry.h"
|
|
#include "core/signal-registry.h"
|
|
#include "net-sendbuffer.h"
|
|
#include "lib-config/iconfig.h"
|
|
#include "misc.h"
|
|
|
|
#include "irc-servers.h"
|
|
#include "irc-channels.h"
|
|
#include "irc-nicklist.h"
|
|
|
|
#include "sasl.h"
|
|
|
|
struct _isupport_data { CONFIG_REC *config; CONFIG_NODE *node; };
|
|
|
|
static void session_isupport_foreach(char *key, char *value, struct _isupport_data *data)
|
|
{
|
|
config_node_set_str(data->config, data->node, key, value);
|
|
}
|
|
|
|
static void sig_session_save_server(SERVER_REC *gserver, CONFIG_REC *config,
|
|
CONFIG_NODE *node)
|
|
{
|
|
IRC_SERVER_REC *server;
|
|
GSList *tmp;
|
|
CONFIG_NODE *isupport;
|
|
struct _isupport_data isupport_data;
|
|
|
|
if ((server = IRC_SERVER(gserver)) == NULL)
|
|
return;
|
|
|
|
/* send all non-redirected commands to server immediately */
|
|
for (tmp = server->cmdqueue; tmp != NULL; tmp = tmp->next->next) {
|
|
const char *cmd = tmp->data;
|
|
void *redirect = tmp->next->data;
|
|
|
|
if (redirect == NULL) {
|
|
if (net_sendbuffer_send(server->handle, cmd,
|
|
strlen(cmd)) == -1)
|
|
break;
|
|
}
|
|
}
|
|
net_sendbuffer_flush(server->handle);
|
|
|
|
config_node_set_str(config, node, "real_address", server->real_address);
|
|
config_node_set_str(config, node, "userhost", server->userhost);
|
|
config_node_set_str(config, node, "usermode", server->usermode);
|
|
config_node_set_bool(config, node, "usermode_away", server->usermode_away);
|
|
config_node_set_str(config, node, "away_reason", server->away_reason);
|
|
config_node_set_bool(config, node, "emode_known", server->emode_known);
|
|
|
|
config_node_set_int(config, node, "sasl_mechanism", server->connrec->sasl_mechanism);
|
|
config_node_set_str(config, node, "sasl_username", server->connrec->sasl_username);
|
|
config_node_set_str(config, node, "sasl_password", server->connrec->sasl_password);
|
|
|
|
config_node_set_bool(config, node, "isupport_sent", server->isupport_sent);
|
|
isupport = config_node_section(config, node, "isupport", NODE_TYPE_BLOCK);
|
|
isupport_data.config = config;
|
|
isupport_data.node = isupport;
|
|
|
|
g_hash_table_foreach(server->isupport, (GHFunc) session_isupport_foreach, &isupport_data);
|
|
}
|
|
|
|
static void sig_session_restore_server(SERVER_REC *gserver,
|
|
CONFIG_NODE *node)
|
|
{
|
|
IRC_SERVER_REC *server;
|
|
GSList *tmp;
|
|
|
|
if ((server = IRC_SERVER(gserver)) == NULL)
|
|
return;
|
|
|
|
if (server->real_address == NULL)
|
|
server->real_address = g_strdup(config_node_get_str(node, "real_address", NULL));
|
|
server->userhost = g_strdup(config_node_get_str(node, "userhost", NULL));
|
|
server->usermode = g_strdup(config_node_get_str(node, "usermode", NULL));
|
|
server->usermode_away = config_node_get_bool(node, "usermode_away", FALSE);
|
|
server->away_reason = g_strdup(config_node_get_str(node, "away_reason", NULL));
|
|
server->emode_known = config_node_get_bool(node, "emode_known", FALSE);
|
|
server->isupport_sent = config_node_get_bool(node, "isupport_sent", FALSE);
|
|
|
|
server->connrec->sasl_mechanism = config_node_get_int(node, "sasl_mechanism", SASL_MECHANISM_NONE);
|
|
/* The fields below might have been filled when loading the chatnet
|
|
* description from the config and we favor the content that's been saved
|
|
* in the session file over that. */
|
|
g_free(server->connrec->sasl_username);
|
|
server->connrec->sasl_username = g_strdup(config_node_get_str(node, "sasl_username", NULL));
|
|
g_free(server->connrec->sasl_password);
|
|
server->connrec->sasl_password = g_strdup(config_node_get_str(node, "sasl_password", NULL));
|
|
|
|
if (server->isupport == NULL) {
|
|
server->isupport = g_hash_table_new((GHashFunc) g_istr_hash,
|
|
(GCompareFunc) g_istr_equal);
|
|
}
|
|
|
|
node = config_node_section(NULL, node, "isupport", -1);
|
|
tmp = node == NULL ? NULL : config_node_first(node->value);
|
|
|
|
for (; tmp != NULL; tmp = config_node_next(tmp)) {
|
|
node = tmp->data;
|
|
if (node == NULL)
|
|
break;
|
|
|
|
g_hash_table_insert(server->isupport, g_strdup(node->key),
|
|
g_strdup(node->value));
|
|
}
|
|
irc_server_init_isupport(server);
|
|
|
|
}
|
|
|
|
static void sig_session_restore_nick(CHANNEL_REC *gchannel,
|
|
CONFIG_NODE *node)
|
|
{
|
|
IRC_CHANNEL_REC *channel;
|
|
const char *nick, *prefixes;
|
|
int op, halfop, voice;
|
|
char newprefixes[MAX_USER_PREFIXES + 1];
|
|
int i;
|
|
|
|
if ((channel = IRC_CHANNEL(gchannel)) == NULL)
|
|
return;
|
|
|
|
nick = config_node_get_str(node, "nick", NULL);
|
|
if (nick == NULL)
|
|
return;
|
|
|
|
op = config_node_get_bool(node, "op", FALSE);
|
|
voice = config_node_get_bool(node, "voice", FALSE);
|
|
halfop = config_node_get_bool(node, "halfop", FALSE);
|
|
prefixes = config_node_get_str(node, "prefixes", NULL);
|
|
if (prefixes == NULL || *prefixes == '\0') {
|
|
/* upgrading from old irssi or from an in-between
|
|
* version that did not imply non-present prefixes from
|
|
* op/voice/halfop, restore prefixes
|
|
*/
|
|
i = 0;
|
|
if (op)
|
|
newprefixes[i++] = '@';
|
|
if (halfop)
|
|
newprefixes[i++] = '%';
|
|
if (voice)
|
|
newprefixes[i++] = '+';
|
|
newprefixes[i] = '\0';
|
|
prefixes = newprefixes;
|
|
}
|
|
irc_nicklist_insert(channel, nick, op, halfop, voice, FALSE, prefixes);
|
|
}
|
|
|
|
static void session_restore_channel(IRC_CHANNEL_REC *channel)
|
|
{
|
|
char *data;
|
|
|
|
SIGNAL_EMIT_(event, "join", (SERVER_REC *)channel->server, channel->name,
|
|
channel->server->nick, channel->server->userhost);
|
|
|
|
data = g_strconcat(channel->server->nick, " ", channel->name, NULL);
|
|
SIGNAL_EMIT_(event, "366", (SERVER_REC *)channel->server, data, NULL, NULL);
|
|
g_free(data);
|
|
}
|
|
|
|
static void sig_connected(SERVER_REC *gserver)
|
|
{
|
|
IRC_SERVER_REC *server;
|
|
GSList *tmp;
|
|
char *str, *addr;
|
|
|
|
if ((server = IRC_SERVER(gserver)) == NULL || !server->session_reconnect)
|
|
return;
|
|
|
|
str = g_strdup_printf("%s :Restoring connection to %s",
|
|
server->nick, server->connrec->address);
|
|
/* addr needs to be strdup'd because the event_connected() handler
|
|
free()'s the server->real_address and then tries to strdup() the
|
|
given origin again */
|
|
addr = g_strdup(server->real_address);
|
|
SIGNAL_EMIT_(event, "001", (SERVER_REC *)server, str, addr, NULL);
|
|
g_free(addr);
|
|
g_free(str);
|
|
|
|
for (tmp = server->channels; tmp != NULL; tmp = tmp->next) {
|
|
IRC_CHANNEL_REC *rec = tmp->data;
|
|
|
|
if (rec->session_rejoin)
|
|
session_restore_channel(rec);
|
|
}
|
|
}
|
|
|
|
void irc_session_init(void)
|
|
{
|
|
signal_add__session_save_server(sig_session_save_server);
|
|
signal_add__session_restore_server(sig_session_restore_server);
|
|
signal_add__session_restore_nick(sig_session_restore_nick);
|
|
|
|
signal_add__server_connected(sig_connected);
|
|
}
|
|
|
|
void irc_session_deinit(void)
|
|
{
|
|
signal_remove__session_save_server(sig_session_save_server);
|
|
signal_remove__session_restore_server(sig_session_restore_server);
|
|
signal_remove__session_restore_nick(sig_session_restore_nick);
|
|
|
|
signal_remove__server_connected(sig_connected);
|
|
}
|