summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-15 04:47:46 -0500
committerJune McEnroe <june@causal.agency>2020-02-15 04:47:46 -0500
commit91fa13667206ff43c4541c71eb34d0fb8eb733f7 (patch)
treecfde12c566b5c5efec021dbdf8ec04cf0bf71577
parentDocument exit status (diff)
downloadcatgirl-91fa13667206ff43c4541c71eb34d0fb8eb733f7.tar.gz
catgirl-91fa13667206ff43c4541c71eb34d0fb8eb733f7.zip
Add /ns and /cs
-rw-r--r--catgirl.14
-rw-r--r--command.c14
2 files changed, 18 insertions, 0 deletions
diff --git a/catgirl.1 b/catgirl.1
index f1b816d..fb2a454 100644
--- a/catgirl.1
+++ b/catgirl.1
@@ -242,6 +242,8 @@ can be typed
 .Bl -tag -width Ds
 .It Ic /away Op Ar message
 Set or clear your away status.
+.It Ic /cs Ar command
+Send a command to ChanServ.
 .It Ic /invite Ar nick
 Invite a user to the channel.
 .It Ic /join Ar channel
@@ -260,6 +262,8 @@ List users in the channel.
 Change nicknames.
 .It Ic /notice Ar message
 Send a notice.
+.It Ic /ns Ar command
+Send a command to NickServ.
 .It Ic /part Op Ar message
 Leave the channel.
 .It Ic /query Ar nick
diff --git a/command.c b/command.c
index 3b94270..8d781f7 100644
--- a/command.c
+++ b/command.c
@@ -168,6 +168,18 @@ static void commandWhois(size_t id, char *params) {
 	replies.whois++;
 }
 
+static void commandNS(size_t id, char *params) {
+	(void)id;
+	if (!params) return;
+	ircFormat("PRIVMSG NickServ :%s\r\n", params);
+}
+
+static void commandCS(size_t id, char *params) {
+	(void)id;
+	if (!params) return;
+	ircFormat("PRIVMSG ChanServ :%s\r\n", params);
+}
+
 static void commandQuery(size_t id, char *params) {
 	if (!params) return;
 	size_t query = idFor(params);
@@ -264,6 +276,7 @@ static const struct Handler {
 	{ "/away", .fn = commandAway },
 	{ "/close", .fn = commandClose },
 	{ "/copy", .fn = commandCopy, .restricted = true },
+	{ "/cs", .fn = commandCS },
 	{ "/debug", .fn = commandDebug, .restricted = true },
 	{ "/exec", .fn = commandExec, .restricted = true },
 	{ "/help", .fn = commandHelp },
@@ -277,6 +290,7 @@ static const struct Handler {
 	{ "/names", .fn = commandNames },
 	{ "/nick", .fn = commandNick },
 	{ "/notice", .fn = commandNotice },
+	{ "/ns", .fn = commandNS },
 	{ "/open", .fn = commandOpen, .restricted = true },
 	{ "/part", .fn = commandPart },
 	{ "/query", .fn = commandQuery, .restricted = true },
-02-23 00:08:50 +0100'>2019-02-23ui-ssdiff: resolve HTML5 validation errorsChris Mayo 2019-01-03filters: migrate from luacrypto to luaosslJason A. Donenfeld 2019-01-02ui-shared: fix broken sizeof in title setting and rewriteJason A. Donenfeld 2018-12-09git: update to v2.20.0Christian Hesse 2018-11-25ui-blame: set repo for sbJason A. Donenfeld 2018-11-25auth-filter: pass url with query string attachedJason A. Donenfeld 2018-11-21git: use xz compressed archive for downloadChristian Hesse 2018-10-12git: update to v2.19.1Christian Hesse 2018-09-11ui-ssdiff: ban strcat()Christian Hesse 2018-09-11ui-ssdiff: ban strncpy()Christian Hesse 2018-09-11ui-shared: ban strcat()Christian Hesse 2018-09-11ui-patch: ban sprintf()Christian Hesse 2018-09-11ui-log: ban strncpy()Christian Hesse 2018-09-11ui-log: ban strcpy()Christian Hesse 2018-09-11parsing: ban sprintf()Christian Hesse 2018-09-11parsing: ban strncpy()Christian Hesse 2018-08-28filters: generate anchor links from markdownChristian Hesse 2018-08-03Bump version.Jason A. Donenfeld 2018-08-03clone: fix directory traversalJason A. Donenfeld 2018-08-03config: record repo.snapshot-prefix in the per-repo configKonstantin Ryabitsev