IRCat/README.md
2024-12-09 09:16:06 -08:00

55 lines
No EOL
1.6 KiB
Markdown

# IRCat
Lightweight IRCd in Python
TODO:
- [ ] Implement the base of an IRCd, using Libera.Chat as a reference
- [ ] Add the (full) connection process
- [x] Add join/part, and it's requirements (WHO, etc)
- [x] Implement proper PRIVMSG
- [x] Broadcast QUIT
- [ ] DNS lookup
- [ ] Identity management
- [ ] WallOps
- [ ] Channel invite system
- [ ] Wildcard logic (for +b and +q)
- [ ] Send PING and wait for PONG
- [x] Reply PONG if received PING
- [ ] Change of nicknames
- [ ] User Flags
- [ ] i (invisible)
- [ ] o (IRCOP)
- [ ] w (gets wallops)
- [ ] Channel Flags
- [ ] o \<user\> (CHANOP)
- [ ] v \<user\> (voice)
- [ ] m (moderated, only let voice or op talk)
- [ ] s (don't show in LIST)
- [ ] i (invite-only)
- [ ] t (topic lock)
- [ ] n (no outside msgs, people have to join first)
- [ ] l \<num\> (user limit)
- [ ] b \<usermask\> (ban a user)
- [ ] k \<key\> (password lock)
- [ ] EXTRAS q (Quiet)
- [ ] Destructive features for CHANOPS
- [ ] `KICK`
- [ ] `MODE <channel>`
- [ ] Destructive features for IRCOPS
- [ ] `KILL <user> <comment>`
- [ ] `MODE <external user>`
- [ ] `RESTART`
- [ ] Extra commands
- [ ] `USERS`
- [ ] `WHOIS`
- [ ] `WHOWAS`
- [ ] Implement services.
- [ ] Nickserv
- [ ] ChanServ
- [ ] GitServ (Custom user for pull/restart)
- [ ] Link `PRIVMSG *serv` to `*serv`
- [ ] Add IRCv3 features.
- [ ] List capabilities (`CAP LS 302`)
- Will research later.
I am going to fully read [RFC 1459](https://datatracker.ietf.org/doc/html/rfc1459) soon and add each part to the TODO.