Movie Night chat bridge MOVED TO https://git.ihatebeinga.live/IHBAGang/movie-night-chat https://git.ihatebeinga.live/IHBAGang/movie-night-chat

epi 65a523467f UwU пре 4 година
private c2659ae51f better and cleaner irc-functions/read-from-client пре 4 година
LICENSE 648a4033f5 add LICENSE пре 4 година
README.md 65a523467f UwU пре 4 година
api.rkt 9149384d8d use the `define-predicate` trick пре 4 година
chat.rkt 1bb8cc7cf5 handling of command-errors пре 4 година
ircd.rkt 17251045eb Handle nick collisions пре 4 година
macros.rkt 77a128e6a1 typing api.rkt пре 4 година
main.rkt ec8b38ac55 fix main пре 4 година
unheck-html.rkt f428297a5f add the STATS command пре 4 година

README.md

LOL

MOVED TO https://git.ihatebeinga.live/IHBAGang/movie-night-chat UwU

About

This projects aims to create a bridge for the chat programed used in MoveNight. So far, this is work in progress. At the moment it is a simple IRC server that relays messages back and forth. Unfortunately, error handling is abscent, and errors from the MoveNight chat are not propagated. But hey, it kinda works.

Basic usage

By default, the ircd binds on port 6667 on all the available addresses. Use the command line options --port and --host to change that.

The command line option --url specifies the URL for the MovieNight chat server (usually it is wss://movie-night-domain/ws).

To produce logs set the env variables PLTSTDOUT or PLTSTDERR to "warning" or "info". See the Racket docs on loggers for details.

Special commands

  • /STATS provide some basic statistics about the stream

Requirements & building

This developement is known to work on Racket v7.5 with packages:

  • rfc6455 (websockets implementation, try raco pkg install rfc6455)

Build it with raco make main.rkt and run racket main.rkt. Or: build native with raco exe main.rkt.

Known issues

  • Nick change is not implemented in the ircd
  • Nick collisions are handled weirdly: the ircd will send you a notice but won't change your nickname.
  • /me actions are not handeled
  • Bans from the MovieNight chat are not handled
  • HTML is not entierly unfucked, although this is somewhat working; see unheck-html.rkt.

Reading