hibot/source/bot.h

88 lines
1.9 KiB
C
Raw Normal View History

2023-12-15 17:45:27 -05:00
#ifndef BOT_H
#include <libircclient.h>
#include <string.h>
irc_session_t * session;
irc_callbacks_t callbacks;
void ircmsg(const char * const message) {
irc_cmd_msg(session, channel, message);
}
void event_connect(irc_session_t * session,
const char * event,
const char * origin,
const char ** params,
unsigned int count) {
(void)event;
(void)origin;
(void)params;
(void)count;
2023-12-15 18:23:46 -05:00
// XXX: msg ChanServ IDENTIFY?
2023-12-15 17:45:27 -05:00
log_notice("IRC connection secured.");
irc_cmd_join(session, channel, 0);
2023-12-15 18:23:46 -05:00
char * buffer;
asprintf(&buffer, "Joined destination channel: `%s`.", channel);
log_notice(buffer);
free(buffer);
2023-12-15 17:45:27 -05:00
}
2023-12-15 18:23:46 -05:00
void event_privmsg(irc_session_t * session,
const char * event,
const char * origin,
const char ** params,
unsigned int count) {
2023-12-15 17:45:27 -05:00
(void)session;
(void)event;
(void)count;
2023-12-15 18:23:46 -05:00
char * buffer = (char *)origin;
while (*(buffer++) != '!') { ; }
asprintf(&buffer, "From %.*s:", (int)(buffer - origin)-1, origin);
ircmsg(buffer);
free(buffer);
2023-12-15 18:27:56 -05:00
char * message = strdup(params[1]);
ircmsg(syntax_highlight(message));
free(message);
2023-12-15 17:45:27 -05:00
}
int connect_bot(const char * const server, const short port) {
memset(&callbacks, 0, sizeof(callbacks));
callbacks.event_connect = event_connect;
2023-12-15 18:23:46 -05:00
callbacks.event_privmsg = event_privmsg;
2023-12-15 17:45:27 -05:00
session = irc_create_session(&callbacks);
if (!session) {
log_error("Error creating IRC session.");
return 1;
} else {
log_notice("IRC Session initialized.");
}
irc_connect(session,
server,
port,
password,
username,
username,
username
);
2023-12-15 18:23:46 -05:00
return 0;
2023-12-15 17:45:27 -05:00
}
int connection_loop(void) {
if (irc_run(session) != 0) {
log_error("Error running IRC session\n"
"Possible issue: bad URL, no network connection, bad port, refused connection.");
}
return 0;
}
#define BOT_H
#endif