2000-04-27 06:31:14 -04:00
|
|
|
/*
|
|
|
|
irc-log.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 "signals.h"
|
|
|
|
#include "levels.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "settings.h"
|
|
|
|
|
|
|
|
#include "irc-server.h"
|
|
|
|
|
2000-04-26 04:03:38 -04:00
|
|
|
static void event_away(const char *data, IRC_SERVER_REC *server)
|
|
|
|
{
|
2000-04-27 06:31:14 -04:00
|
|
|
const char *fname, *levelstr;
|
2000-04-26 04:03:38 -04:00
|
|
|
LOG_REC *log;
|
2000-04-27 06:31:14 -04:00
|
|
|
int level;
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
fname = settings_get_str("awaylog_file");
|
2000-04-27 06:31:14 -04:00
|
|
|
levelstr = settings_get_str("awaylog_level");
|
|
|
|
if (*fname == '\0' || *levelstr == '\0') return;
|
|
|
|
|
|
|
|
level = level2bits(levelstr);
|
|
|
|
if (level == 0) return;
|
2000-04-26 04:03:38 -04:00
|
|
|
|
2000-04-27 06:31:14 -04:00
|
|
|
log = log_find(fname);
|
2000-04-26 04:03:38 -04:00
|
|
|
if (log != NULL) {
|
|
|
|
/* awaylog already created */
|
|
|
|
if (log->handle == -1) {
|
|
|
|
/* ..but not open, open it. */
|
2000-04-27 06:31:14 -04:00
|
|
|
log_start_logging(log);
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-04-27 06:31:14 -04:00
|
|
|
log = log_create_rec(fname, level, NULL);
|
|
|
|
if (log != NULL) {
|
|
|
|
log->temp = TRUE;
|
|
|
|
log_update(log);
|
|
|
|
log_start_logging(log);
|
|
|
|
}
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void event_unaway(const char *data, IRC_SERVER_REC *server)
|
|
|
|
{
|
|
|
|
const char *fname;
|
2000-04-27 06:31:14 -04:00
|
|
|
LOG_REC *log;
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
fname = settings_get_str("awaylog_file");
|
|
|
|
if (*fname == '\0') return;
|
|
|
|
|
2000-04-27 06:31:14 -04:00
|
|
|
log = log_find(fname);
|
|
|
|
if (log == NULL || log->handle == -1) {
|
2000-04-26 04:03:38 -04:00
|
|
|
/* awaylog not open */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-04-27 06:31:14 -04:00
|
|
|
log_close(log);
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
|
2000-04-27 06:31:14 -04:00
|
|
|
void irc_log_init(void)
|
2000-04-26 04:03:38 -04:00
|
|
|
{
|
2000-05-04 06:32:42 -04:00
|
|
|
settings_add_str("log", "awaylog_file", "~/.irssi/away.log");
|
|
|
|
settings_add_str("log", "awaylog_level", "msgs hilight");
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
signal_add("event 306", (SIGNAL_FUNC) event_away);
|
|
|
|
signal_add("event 305", (SIGNAL_FUNC) event_unaway);
|
|
|
|
}
|
|
|
|
|
2000-04-27 06:31:14 -04:00
|
|
|
void irc_log_deinit(void)
|
2000-04-26 04:03:38 -04:00
|
|
|
{
|
|
|
|
signal_remove("event 306", (SIGNAL_FUNC) event_away);
|
|
|
|
signal_remove("event 305", (SIGNAL_FUNC) event_unaway);
|
|
|
|
}
|