From 3d1f7d80658db3b4839febb817c610dd06a7801b Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Tue, 2 Jul 2019 22:12:07 -0400 Subject: Add /list --- handle.c | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) (limited to 'handle.c') diff --git a/handle.c b/handle.c index e59960b..1364422 100644 --- a/handle.c +++ b/handle.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018 Curtis McEnroe +/* Copyright (C) 2018, 2019 Curtis McEnroe * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -157,6 +157,35 @@ static void handleReplyMOTD(char *prefix, char *params) { uiFmt(TagStatus, UICold, "%s", mesg); } +static void handleReplyList(char *prefix, char *params) { + char *chan, *count, *topic; + parse(prefix, NULL, NULL, NULL, params, 4, 0, NULL, &chan, &count, &topic); + if (topic[0] == '[') { + char *skip = strstr(topic, "] "); + if (skip) topic = &skip[2]; + } + const char *people = (strcmp(count, "1") ? "people" : "person"); + if (topic[0]) { + uiFmt( + TagStatus, UIWarm, + "You see %s %s in \3%d%s\3 under the banner, \"%s\"", + count, people, colorGen(chan), chan, topic + ); + } else { + uiFmt( + TagStatus, UIWarm, + "You see %s %s in \3%d%s\3", + count, people, colorGen(chan), chan + ); + } +} + +static void handleReplyListEnd(char *prefix, char *params) { + (void)prefix; + (void)params; + uiLog(TagStatus, UICold, L"You don't see anyone else"); +} + static enum IRCColor whoisColor; static void handleReplyWhoisUser(char *prefix, char *params) { char *nick, *user, *host, *real; @@ -499,6 +528,8 @@ static const struct { { "315", handleReplyEndOfWho }, { "317", handleReplyWhoisIdle }, { "319", handleReplyWhoisChannels }, + { "322", handleReplyList }, + { "323", handleReplyListEnd }, { "332", handleReplyTopic }, { "352", handleReplyWho }, { "366", handleReplyEndOfNames }, -- cgit 1.4.1