package barertc import ( "fmt" "os" "strconv" "time" "git.kirsle.net/apps/barertc/pkg/config" ourjwt "git.kirsle.net/apps/barertc/pkg/jwt" "git.kirsle.net/apps/barertc/pkg/log" "github.com/golang-jwt/jwt/v4" "github.com/mattn/go-shellwords" ) // ProcessCommand parses a chat message for "/commands" func (s *Server) ProcessCommand(sub *Subscriber, msg Message) bool { if len(msg.Message) == 0 || msg.Message[0] != '/' { return false } // Line begins with a slash, parse it apart. words, err := shellwords.Parse(msg.Message) if err != nil { log.Error("ProcessCommands: parsing shell words: %s", err) return false } else if len(words) == 0 { return false } // Moderator commands. if sub.JWTClaims != nil && sub.JWTClaims.IsAdmin { switch words[0] { case "/kick": s.KickCommand(words, sub) return true case "/ban": s.BanCommand(words, sub) return true case "/unban": s.UnbanCommand(words, sub) return true case "/bans": s.BansCommand(words, sub) return true case "/nsfw": if len(words) == 1 { sub.ChatServer("Usage: `/nsfw username` to add the NSFW flag to their camera.") } username := words[1] other, err := s.GetSubscriber(username) if err != nil { sub.ChatServer("/nsfw: username not found: %s", username) } else { other.ChatServer( "Just a friendly reminder to mark your camera as 'Explicit' by using the button at the top "+ "of the page if you are going to be sexual on webcam. Your camera has been marked as Explicit "+ "for you by @%s", sub.Username, ) other.VideoStatus |= VideoFlagNSFW other.SendMe() s.SendWhoList() sub.ChatServer("%s now has their camera marked as Explicit", username) } return true case "/help": sub.ChatServer(RenderMarkdown("Moderator commands are:\n\n" + "* `/kick ` to kick from chat\n" + "* `/ban ` to ban from chat (default duration is 24 (hours))\n" + "* `/unban ` to list the ban on a user\n" + "* `/bans` to list current banned users and their expiration date\n" + "* `/nsfw ` to mark their camera NSFW\n" + "* `/op ` to grant operator rights to a user\n" + "* `/deop ` to remove operator rights from a user\n" + "* `/shutdown` to gracefully shut down (reboot) the chat server\n" + "* `/kickall` to kick EVERYBODY off and force them to log back in\n" + "* `/help` to show this message\n\n" + "Note: shell-style quoting is supported, if a username has a space in it, quote the whole username, e.g.: `/kick \"username 2\"`", )) return true case "/shutdown": s.Broadcast(Message{ Action: ActionError, Username: "ChatServer", Message: "The chat server is going down for a reboot NOW!", }) os.Exit(1) return true case "/kickall": s.KickAllCommand() return true case "/op": s.OpCommand(words, sub) return true case "/deop": s.DeopCommand(words, sub) return true } } // Not handled. return false } // KickCommand handles the `/kick` operator command. func (s *Server) KickCommand(words []string, sub *Subscriber) { if len(words) == 1 { sub.ChatServer(RenderMarkdown( "Usage: `/kick username` to remove the user from the chat room.\n\nNote: if the username has spaces in it, quote the name (shell style), `/kick \"username 2\"`", )) return } username := words[1] other, err := s.GetSubscriber(username) if err != nil { sub.ChatServer("/kick: username not found: %s", username) } else if other.Username == sub.Username { sub.ChatServer("/kick: did you really mean to kick yourself?") } else { other.ChatServer("You have been kicked from the chat room by %s", sub.Username) other.SendJSON(Message{ Action: ActionKick, }) s.DeleteSubscriber(other) sub.ChatServer("%s has been kicked from the room", username) } } // KickAllCommand kicks everybody out of the room. func (s *Server) KickAllCommand() { // If we have JWT enabled and a landing page, link users to it. if config.Current.JWT.Enabled && config.Current.JWT.LandingPageURL != "" { s.Broadcast(Message{ Action: ActionError, Username: "ChatServer", Message: fmt.Sprintf( "Notice: The chat operator has requested that you log back in to the chat room. "+ "Probably, this is because a new feature was launched that needs you to reload the page. "+ "You may refresh the tab or click here to re-enter the room.", config.Current.JWT.LandingPageURL, ), }) } else { s.Broadcast(Message{ Action: ActionError, Username: "ChatServer", Message: "Notice: The chat operator has kicked everybody from the room. Usually, this " + "may mean a new feature of the chat has been launched and you need to reload the page for it " + "to function correctly.", }) } // Kick everyone off. s.Broadcast(Message{ Action: ActionKick, }) // Disconnect everybody. for _, sub := range s.IterSubscribers() { if !sub.authenticated { continue } s.DeleteSubscriber(sub) } } // BanCommand handles the `/ban` operator command. func (s *Server) BanCommand(words []string, sub *Subscriber) { if len(words) == 1 { sub.ChatServer(RenderMarkdown( "Usage: `/ban username` to remove the user from the chat room for 24 hours (default).\n\n" + "Set another duration (in hours) like: `/ban username 2` for a 2-hour ban.", )) return } // Parse the command. var ( username = words[1] duration = 24 * time.Hour ) if len(words) >= 3 { if dur, err := strconv.Atoi(words[2]); err == nil { duration = time.Duration(dur) * time.Hour } } log.Info("Operator %s bans %s for %d hours", sub.Username, username, duration/time.Hour) other, err := s.GetSubscriber(username) if err != nil { sub.ChatServer("/ban: username not found: %s", username) } else { // Ban them. BanUser(username, duration) other.ChatServer("You have been banned from the chat room by %s. You may come back after %d hours.", sub.Username, duration/time.Hour) other.SendJSON(Message{ Action: ActionKick, }) s.DeleteSubscriber(other) sub.ChatServer("%s has been banned from the room for %d hours.", username, duration/time.Hour) } } // UnbanCommand handles the `/unban` operator command. func (s *Server) UnbanCommand(words []string, sub *Subscriber) { if len(words) == 1 { sub.ChatServer(RenderMarkdown( "Usage: `/unban username` to lift the ban on a user and allow them back into the chat room.", )) return } // Parse the command. var username = words[1] if UnbanUser(username) { sub.ChatServer("The ban on %s has been lifted.", username) } else { sub.ChatServer("/unban: user %s was not found to be banned. Try `/bans` to see current banned users.", username) } } // BansCommand handles the `/bans` operator command. func (s *Server) BansCommand(words []string, sub *Subscriber) { result := StringifyBannedUsers() sub.ChatServer( RenderMarkdown("The listing of banned users currently includes:\n\n" + result), ) } // OpCommand handles the `/op` operator command. func (s *Server) OpCommand(words []string, sub *Subscriber) { if len(words) == 1 { sub.ChatServer(RenderMarkdown( "Usage: `/op username` to grant temporary operator rights to a user.", )) return } // Parse the command. var username = words[1] if other, err := s.GetSubscriber(username); err != nil { sub.ChatServer("/op: user %s was not found.", username) } else { if other.JWTClaims == nil { other.JWTClaims = &ourjwt.Claims{ RegisteredClaims: jwt.RegisteredClaims{ Subject: username, }, } } other.JWTClaims.IsAdmin = true // Send everyone the Who List. s.SendWhoList() sub.ChatServer("Operator rights have been granted to %s", username) } } // DeopCommand handles the `/deop` operator command. func (s *Server) DeopCommand(words []string, sub *Subscriber) { if len(words) == 1 { sub.ChatServer(RenderMarkdown( "Usage: `/deop username` to remove operator rights from a user.", )) return } // Parse the command. var username = words[1] if other, err := s.GetSubscriber(username); err != nil { sub.ChatServer("/deop: user %s was not found.", username) } else { if other.JWTClaims == nil { other.JWTClaims = &ourjwt.Claims{ RegisteredClaims: jwt.RegisteredClaims{ Subject: username, }, } } other.JWTClaims.IsAdmin = false // Send everyone the Who List. s.SendWhoList() sub.ChatServer("Operator rights have been taken from %s", username) } }