Commit 78003fdc authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Disallow usernames with spaces.

parent 563545bd
...@@ -12,6 +12,7 @@ import ( ...@@ -12,6 +12,7 @@ import (
"log" "log"
"math" "math"
"os" "os"
"strings"
"sync" "sync"
"sync/atomic" "sync/atomic"
"time" "time"
...@@ -151,6 +152,11 @@ func startClient(conn *websocket.Conn) (err error) { ...@@ -151,6 +152,11 @@ func startClient(conn *websocket.Conn) (err error) {
c.writerDone = make(chan struct{}) c.writerDone = make(chan struct{})
go clientWriter(conn, c.writeCh, c.writerDone) go clientWriter(conn, c.writeCh, c.writerDone)
if strings.ContainsRune(m.Username, ' ') {
err = userError("don't put spaces in your username")
return
}
g, users, err := addClient(m.Group, c, m.Username, m.Password) g, users, err := addClient(m.Group, c, m.Username, m.Password)
if err != nil { if err != nil {
return return
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment