quote-bot/main.c

257 lines
8.1 KiB
C
Raw Normal View History

/*
2021-03-11 20:48:32 -05:00
* Dictionary bot.
*
* Code adapted from:
*
* <https://gist.github.com/enile8/2424514>
* <https://www.rosettacode.org/wiki/Write_entire_file#C>
* <https://rosettacode.org/wiki/Read_entire_file#C>
* libircclient-1.10/examples/spammer.c
*
2021-03-11 20:48:32 -05:00
* And surely others.
*
* Copyright (C) 2004-2009 Georgy Yunaev gyunaev@ulduzsoft.com
* Copyright (C) 2021 Bubblegumdrop <Bubblegumdrop@lain.church>
*
* This example is free, and not covered by LGPL license. There is no
* restriction applied to their modification, redistribution, using and so on.
* You can study them, modify them, use them in your own program - either
* completely or partially. By using it you may give me some credits in your
* program, but you don't have to.
*
* DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
* Version 2, December 2004
*
* Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
* Copyright (C) 2021 Bubblegumdrop <Bubblegumdrop@lain.church>
*
* Everyone is permitted to copy and distribute verbatim or modified
* copies of this license document, and changing it is allowed as long
* as the name is changed.
*
* DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
* TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
*
* 0. You just DO WHAT THE FUCK YOU WANT TO.
*/
#define _POSIX_C_SOURCE 200809L /* strtok_r, strndup */
#include <string.h>
#include <assert.h> /* assert */
#include <errno.h>
#include <getopt.h> /* getopt */
#include <stdio.h> /* size_t */
#include <unistd.h> /* getopt */
#include "libircclient.h"
2021-03-12 12:41:17 -05:00
#include "data.h"
#include "db.h"
#include "events.h"
#include "levenshtein.h"
2021-03-11 20:48:32 -05:00
#include "strings.h"
#include "threads.h"
2021-03-12 12:41:17 -05:00
#include "unused.h"
extern void install_signal_handler(void);
2021-03-12 12:41:17 -05:00
char F_IRC_THREAD = STOPPED;
char F_MAIN_THREAD = STOPPED;
2021-03-12 12:41:17 -05:00
char IsIPv6Enabled = 0;
irc_session_t *irc_session = NULL;
2021-03-12 12:41:17 -05:00
2021-03-11 20:48:32 -05:00
THREAD_FUNCTION(IrcSessionThread) {
2021-03-12 12:41:17 -05:00
int rc;
const char *server;
struct irc_ctx_t *ctx;
2021-03-11 20:48:32 -05:00
irc_callbacks_t callbacks;
ctx = (struct irc_ctx_t *)arg;
assert(NULL != ctx);
server = ctx->server;
assert(NULL != server);
assert(NULL != ctx->nick);
assert(NULL != ctx->channel);
while (RUNNING == F_IRC_THREAD) {
/* Initialize the callbacks */
memset(&callbacks, 0, sizeof(callbacks));
/* Set up the callbacks we will use */
2021-03-12 12:41:17 -05:00
callbacks.event_channel = irc_event_channel;
callbacks.event_connect = irc_event_connect;
callbacks.event_dcc_chat_req = irc_event_dcc_chat;
callbacks.event_dcc_send_req = irc_event_dcc_send;
callbacks.event_join = irc_event_join;
callbacks.event_nick = irc_event_nick;
callbacks.event_numeric = irc_event_numeric;
callbacks.event_privmsg = irc_event_privmsg;
callbacks.event_ctcp_action = dump_event;
callbacks.event_ctcp_rep = dump_event;
callbacks.event_invite = dump_event;
callbacks.event_kick = dump_event;
callbacks.event_mode = dump_event;
callbacks.event_nick = dump_event;
callbacks.event_notice = dump_event;
callbacks.event_part = dump_event;
callbacks.event_quit = dump_event;
callbacks.event_topic = dump_event;
callbacks.event_umode = dump_event;
callbacks.event_unknown = dump_event;
/* And create the IRC session; 0 means error */
irc_session = irc_create_session(&callbacks);
if (!irc_session) {
2021-03-11 20:48:32 -05:00
fprintf(stderr, string_connect_failure, irc_strerror(irc_errno(irc_session)));
F_IRC_THREAD = STOPPED;
}
irc_set_ctx(irc_session, ctx);
irc_option_set(irc_session, LIBIRC_OPTION_STRIPNICKS);
/* If the port number is specified in the server string, use the port 0 so it gets parsed */
if (strchr(server, ':') != 0)
ctx->port = 0;
/*
* To handle the "SSL certificate verify failed" from command line we allow passing ## in front
* of the server name, and in this case tell libircclient not to verify the cert
*/
if (server[0] == '#' && server[0] == '#') {
/* Skip the first character as libircclient needs only one # for SSL support, i.e. #irc.freenode.net */
server++;
irc_option_set(irc_session, LIBIRC_OPTION_SSL_NO_VERIFY);
}
/* Initiate the IRC server connection */
2021-03-12 12:41:17 -05:00
rc = 1;
if (IsIPv6Enabled) {
rc = irc_connect6(irc_session, server, ctx->port, 0, ctx->nick, 0, 0);
} else {
rc = irc_connect(irc_session, server, ctx->port, 0, ctx->nick, 0, 0);
}
if (rc) {
2021-03-11 20:48:32 -05:00
fprintf(stderr, string_connect_failure, irc_strerror(irc_errno(irc_session)));
F_IRC_THREAD = STOPPED;
}
/* and run into forever loop, generating events */
if (irc_run(irc_session)) {
2021-03-11 20:48:32 -05:00
fprintf(stderr, string_connect_failure, irc_strerror(irc_errno(irc_session)));
F_IRC_THREAD = STOPPED;
}
2021-03-11 20:48:32 -05:00
irc_destroy_session(irc_session);
irc_session = NULL;
}
F_MAIN_THREAD = STOPPED;
2021-03-11 20:48:32 -05:00
#ifdef _WIN32
return 0;
#else
return NULL;
2021-03-11 20:48:32 -05:00
#endif
}
int main(int argc, char *argv[]) {
2021-03-12 12:41:17 -05:00
int c;
2021-03-11 20:48:32 -05:00
int rc;
int opt;
const char *db_name;
const char *query_str;
const char *filename;
sqlite3 *db;
struct irc_ctx_t ctx;
thread_id_t tid;
#if 0
const char *s1 = "rosettacode";
const char *s2 = "raisethysword";
printf("distance between `%s' and `%s': %d\n", s1, s2, levenshtein(s1, s2));
#endif
2021-03-11 20:48:32 -05:00
install_signal_handler();
db_name = "familyGuy.sqlite3";
2021-03-11 20:48:32 -05:00
query_str = NULL;
filename = NULL;
rc = -1;
db = NULL;
memset(&ctx, 0, sizeof(struct irc_ctx_t));
ctx.port = 6667;
2021-03-12 12:41:17 -05:00
while ((opt = getopt(argc, argv, "c:d:f:hn:p:q:s:46")) != -1) {
switch (opt) {
2021-03-12 12:41:17 -05:00
case '4':
IsIPv6Enabled = 0;
break;
case '6':
IsIPv6Enabled = 1;
break;
2021-03-11 20:48:32 -05:00
case 'c':
ctx.channel = optarg;
break;
case 'd':
db_name = optarg;
break;
2021-03-11 20:48:32 -05:00
case 'f':
filename = optarg;
break;
case 'n':
ctx.nick = optarg;
break;
case 'p':
ctx.port = atoi(optarg);
break;
2021-03-11 20:48:32 -05:00
case 'q':
query_str = optarg;
break;
case 's':
ctx.server = optarg;
break;
case 'h':
default:
2021-03-11 20:48:32 -05:00
fprintf(stderr, string_usage_fmt, argv[0]);
return -1;
break;
}
}
if (NULL != db_name) {
2021-03-11 13:25:53 -05:00
if (SQLITE_OK == (rc = sqlite3_open(db_name, &db))) {
2021-03-12 12:41:17 -05:00
printf("%s", string_opendb_success);
2021-03-11 13:25:53 -05:00
sqlite_version(db);
}
} else {
2021-03-11 20:48:32 -05:00
fprintf(stderr, string_opendb_failure, sqlite3_errmsg(db));
2021-03-11 13:25:53 -05:00
return -1;
}
2021-03-11 20:48:32 -05:00
/*run_one(db, create_db_query);*/
2021-03-11 20:48:32 -05:00
if (NULL != query_str) {
rc = run_one(db, query_str);
} else if (NULL != filename) {
rc = run_script(db, filename);
} else if (argc == 4) {
2021-03-11 20:48:32 -05:00
if (argc > 1)
ctx.server = argv[1];
if (argc > 2)
ctx.nick = argv[2];
if (argc > 3)
ctx.channel = argv[3];
if (!ctx.server || !ctx.nick || !ctx.channel) {
fprintf(stderr, string_usage_fmt, argv[0]);
return -1;
}
F_IRC_THREAD = RUNNING;
F_MAIN_THREAD = RUNNING;
2021-03-11 20:48:32 -05:00
if (CREATE_THREAD(&tid, IrcSessionThread, &ctx)) {
2021-03-12 12:41:17 -05:00
printf(string_thread_failure, strerror(errno));
} else {
2021-03-12 12:41:17 -05:00
printf("%s", string_ircthread_success);
}
while (RUNNING == F_MAIN_THREAD) {
sleep(1);
2021-03-12 12:41:17 -05:00
c = getchar();
if ('q' == c) {
if (irc_session)
irc_cmd_quit(irc_session, "Bye!");
F_MAIN_THREAD = STOPPED;
}
}
2021-03-11 20:48:32 -05:00
F_IRC_THREAD = STOPPED;
F_SPAM_THREADS = STOPPED;
rc = 0;
} else {
2021-03-11 20:48:32 -05:00
fprintf(stderr, string_usage_fmt, argv[0]);
return -1;
}
sqlite3_close(db);
2021-03-11 20:48:32 -05:00
return rc;
}