summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-04-05 10:45:17 -0400
committerJune McEnroe <june@causal.agency>2020-04-05 10:45:17 -0400
commita8c5d13cb21ef08f7d2b5a718b5c93113dfc6448 (patch)
treedc3b606b12ebb467cd8bd464f5ee47ec463130c5
parentUpdate style (diff)
downloadlitterbox-a8c5d13cb21ef08f7d2b5a718b5c93113dfc6448.tar.gz
litterbox-a8c5d13cb21ef08f7d2b5a718b5c93113dfc6448.zip
Add Ban and Unban event types
Diffstat (limited to '')
-rw-r--r--database.h4
-rw-r--r--litterbox.c4
-rw-r--r--scoop.c18
3 files changed, 25 insertions, 1 deletions
diff --git a/database.h b/database.h
index 5893f77..c852e11 100644
--- a/database.h
+++ b/database.h
@@ -42,7 +42,9 @@ enum { DatabaseVersion = 2 };
 	X(Quit, "quit") \
 	X(Kick, "kick") \
 	X(Nick, "nick") \
-	X(Topic, "topic")
+	X(Topic, "topic") \
+	X(Ban, "ban") \
+	X(Unban, "unban")
 
 enum Type {
 #define X(id, _) id,
diff --git a/litterbox.c b/litterbox.c
index 14dd626..d0cafef 100644
--- a/litterbox.c
+++ b/litterbox.c
@@ -304,6 +304,10 @@ static void querySearch(struct Message *msg) {
 					"\3%02d%s\3 set the topic: %s\r\n",
 					color(user), nick, message
 				);
+			break; case Ban:
+				format("\3%02d%s\3 banned %s\r\n", color(user), nick, target);
+			break; case Unban:
+				format("\3%02d%s\3 unbanned %s\r\n", color(user), nick, target);
 		}
 	}
 	if (result != SQLITE_DONE) {
diff --git a/scoop.c b/scoop.c
index a1b75c7..d95a971 100644
--- a/scoop.c
+++ b/scoop.c
@@ -77,6 +77,12 @@ static void formatPlain(bool group, struct Event e) {
 		break; case Topic: {
 			printf("%s set the topic: %s\n", e.nick, e.message);
 		}
+		break; case Ban: {
+			printf("%s banned %s\n", e.nick, e.target);
+		}
+		break; case Unban: {
+			printf("%s unbanned %s\n", e.nick, e.target);
+		}
 	}
 }
 
@@ -189,6 +195,12 @@ static void formatColor(bool group, struct Event e) {
 				color(e.user), e.nick, ansi(e.message)
 			);
 		}
+		break; case Ban: {
+			printf(C "%s" O " banned %s\n", color(e.user), e.nick, e.target);
+		}
+		break; case Unban: {
+			printf(C "%s" O " unbanned %s\n", color(e.user), e.nick, e.target);
+		}
 	}
 #undef C
 #undef O
@@ -230,6 +242,12 @@ static void formatIRC(bool group, struct Event e) {
 		break; case Topic: {
 			printf("TOPIC %s :%s\r\n", e.context, e.message);
 		}
+		break; case Ban: {
+			printf("MODE %s +b %s\r\n", e.context, e.target);
+		}
+		break; case Unban: {
+			printf("MODE %s -b %s\r\n", e.context, e.target);
+		}
 	}
 }
 
/libretls/commit/man/Makefile.am?id=4b0ab841546a4341b23fa5270c2fb37c5f6cf302&follow=1'>build: Remove added x509_verify.3 links 3.3.2June McEnroe 2021-04-18tls: Use EC_KEY_set_ex_dataJune McEnroe 2021-04-18Import LibreSSL 3.3.2June McEnroe 2021-03-05Bump version to 3.3.1p1 3.3.1p1June McEnroe 2021-03-05build: Add OpenSSL includes to libcompatJune McEnroe Some compat sources (getentropy_linux.c for example) require OpenSSL. Reported by Robert Scheck. 2020-12-15Import LibreSSL 3.3.1June McEnroe 2020-11-24Import LibreSSL 3.3.0June McEnroe 2020-10-22Import LibreSSL 3.2.2June McEnroe 2020-09-29Import LibreSSL 3.2.1June McEnroe 2020-09-29import: Add m4/ax_add_fortify_source.m4June McEnroe 2020-08-05build: Add README.7 to EXTRA_DIST 3.2.0June McEnroe 2020-08-03doc: Indicate that only OpenSSL 1.1.1b and newer workJune McEnroe