mirror of
https://github.com/RedWizardsLab/EchoHub.git
synced 2026-09-04 16:46:08 +02:00
1.2 KiB
1.2 KiB
v0.2.0 - IRC Gateway
Features
- IRC protocol gateway -- native IRC clients (irssi, WeeChat, HexChat, etc.) can connect to EchoHub servers
- Cross-protocol messaging -- messages flow bidirectionally between IRC and TUI clients in real time
- SASL PLAIN authentication -- IRC clients can authenticate via SASL or traditional PASS/NICK/USER
- Full IRC command support -- JOIN, PART, PRIVMSG, QUIT, NAMES, TOPIC, WHO, WHOIS, AWAY, LIST, MODE, MOTD
- TLS support -- optional encrypted IRC connections on port 6697
- Image-to-IRC formatting -- images appear as ASCII art line-by-line with download URLs
- Message splitting -- long messages automatically split at word boundaries (~400 byte chunks)
- Configurable MOTD -- server message of the day for IRC clients
Architecture Changes
- Extracted shared business logic from
ChatHubinto protocol-agnosticIChatService - Introduced
IChatBroadcasterpattern for multi-protocol event fan-out ChatHubrefactored to thin adapter delegating toIChatServiceChannelsControllerupdated to useIChatServicefor broadcasts- New
EchoHub.Server.Ircproject for clean separation of concerns IChatServiceandIChatBroadcasterinterfaces live inEchoHub.Core/Contracts