Make the user's name colored in all messages

This commit is contained in:
Andreas Renberg (IQAndreas) 2014-12-13 01:42:23 -06:00
parent 1b73035495
commit d22e80d2c1
2 changed files with 16 additions and 12 deletions

View File

@ -55,6 +55,10 @@ func NewClient(server *Server, conn *ssh.ServerConn) *Client {
} }
} }
func (c *Client) ColoredName() string {
return ColorString(c.Color, c.Name)
}
func (c *Client) Write(msg string) { func (c *Client) Write(msg string) {
c.term.Write([]byte(msg + "\r\n")) c.term.Write([]byte(msg + "\r\n"))
} }
@ -85,7 +89,7 @@ func (c *Client) Resize(width int, height int) error {
func (c *Client) Rename(name string) { func (c *Client) Rename(name string) {
c.Name = name c.Name = name
c.term.SetPrompt(fmt.Sprintf("[%s] ", ColorString(c.Color, c.Name))) c.term.SetPrompt(fmt.Sprintf("[%s] ", c.ColoredName()))
} }
func (c *Client) Fingerprint() string { func (c *Client) Fingerprint() string {
@ -135,7 +139,7 @@ func (c *Client) handleShell(channel ssh.Channel) {
if me == "" { if me == "" {
me = " is at a loss for words." me = " is at a loss for words."
} }
msg := fmt.Sprintf("** %s%s", c.Name, me) msg := fmt.Sprintf("** %s%s", c.ColoredName(), me)
if c.IsSilenced() || len(msg) > 1000 { if c.IsSilenced() || len(msg) > 1000 {
c.Msg <- fmt.Sprintf("-> Message rejected.") c.Msg <- fmt.Sprintf("-> Message rejected.")
} else { } else {
@ -155,7 +159,7 @@ func (c *Client) handleShell(channel ssh.Channel) {
if len(version) > 100 { if len(version) > 100 {
version = "Evil Jerk with a superlong string" version = "Evil Jerk with a superlong string"
} }
c.Msg <- fmt.Sprintf("-> %s is %s via %s", client.Name, client.Fingerprint(), version) c.Msg <- fmt.Sprintf("-> %s is %s via %s", client.ColoredName(), client.Fingerprint(), version)
} else { } else {
c.Msg <- fmt.Sprintf("-> No such name: %s", parts[1]) c.Msg <- fmt.Sprintf("-> No such name: %s", parts[1])
} }
@ -176,10 +180,10 @@ func (c *Client) handleShell(channel ssh.Channel) {
c.Msg <- fmt.Sprintf("-> No such name: %s", parts[1]) c.Msg <- fmt.Sprintf("-> No such name: %s", parts[1])
} else { } else {
fingerprint := client.Fingerprint() fingerprint := client.Fingerprint()
client.Write(fmt.Sprintf("-> Banned by %s.", c.Name)) client.Write(fmt.Sprintf("-> Banned by %s.", c.ColoredName()))
c.Server.Ban(fingerprint, nil) c.Server.Ban(fingerprint, nil)
client.Conn.Close() client.Conn.Close()
c.Server.Broadcast(fmt.Sprintf("* %s was banned by %s", parts[1], c.Name), nil) c.Server.Broadcast(fmt.Sprintf("* %s was banned by %s", parts[1], c.ColoredName()), nil)
} }
} }
case "/op": case "/op":
@ -193,7 +197,7 @@ func (c *Client) handleShell(channel ssh.Channel) {
c.Msg <- fmt.Sprintf("-> No such name: %s", parts[1]) c.Msg <- fmt.Sprintf("-> No such name: %s", parts[1])
} else { } else {
fingerprint := client.Fingerprint() fingerprint := client.Fingerprint()
client.Write(fmt.Sprintf("-> Made op by %s.", c.Name)) client.Write(fmt.Sprintf("-> Made op by %s.", c.ColoredName()))
c.Server.Op(fingerprint) c.Server.Op(fingerprint)
} }
} }
@ -215,7 +219,7 @@ func (c *Client) handleShell(channel ssh.Channel) {
c.Msg <- fmt.Sprintf("-> No such name: %s", parts[1]) c.Msg <- fmt.Sprintf("-> No such name: %s", parts[1])
} else { } else {
client.Silence(duration) client.Silence(duration)
client.Write(fmt.Sprintf("-> Silenced for %s by %s.", duration, c.Name)) client.Write(fmt.Sprintf("-> Silenced for %s by %s.", duration, c.ColoredName()))
} }
} }
default: default:
@ -224,7 +228,7 @@ func (c *Client) handleShell(channel ssh.Channel) {
continue continue
} }
msg := fmt.Sprintf("%s: %s", ColorString(c.Color, c.Name), line) msg := fmt.Sprintf("%s: %s", c.ColoredName(), line)
if c.IsSilenced() || len(msg) > 1000 { if c.IsSilenced() || len(msg) > 1000 {
c.Msg <- fmt.Sprintf("-> Message rejected.") c.Msg <- fmt.Sprintf("-> Message rejected.")
continue continue
@ -235,7 +239,7 @@ func (c *Client) handleShell(channel ssh.Channel) {
} }
func (c *Client) handleChannels(channels <-chan ssh.NewChannel) { func (c *Client) handleChannels(channels <-chan ssh.NewChannel) {
prompt := fmt.Sprintf("[%s] ", ColorString(c.Color, c.Name)) prompt := fmt.Sprintf("[%s] ", c.ColoredName())
hasShell := false hasShell := false

View File

@ -91,7 +91,7 @@ func (s *Server) Add(client *Client) {
newName, err := s.proposeName(client.Name) newName, err := s.proposeName(client.Name)
if err != nil { if err != nil {
client.Msg <- fmt.Sprintf("-> Your name '%s' is not available, renamed to '%s'. Use /nick <name> to change it.", client.Name, newName) client.Msg <- fmt.Sprintf("-> Your name '%s' is not available, renamed to '%s'. Use /nick <name> to change it.", client.ColoredName(), ColorString(client.Color, newName))
} }
client.Rename(newName) client.Rename(newName)
@ -99,7 +99,7 @@ func (s *Server) Add(client *Client) {
num := len(s.clients) num := len(s.clients)
s.lock.Unlock() s.lock.Unlock()
s.Broadcast(fmt.Sprintf("* %s joined. (Total connected: %d)", client.Name, num), client) s.Broadcast(fmt.Sprintf("* %s joined. (Total connected: %d)", client.ColoredName(), num), client)
} }
func (s *Server) Remove(client *Client) { func (s *Server) Remove(client *Client) {
@ -107,7 +107,7 @@ func (s *Server) Remove(client *Client) {
delete(s.clients, client.Name) delete(s.clients, client.Name)
s.lock.Unlock() s.lock.Unlock()
s.Broadcast(fmt.Sprintf("* %s left.", client.Name), nil) s.Broadcast(fmt.Sprintf("* %s left.", client.ColoredName()), nil)
} }
func (s *Server) proposeName(name string) (string, error) { func (s *Server) proposeName(name string) (string, error) {