feat: remove systembell and add 3 options to existing var 'Bell'

This commit is contained in:
izenynn 2022-07-07 14:38:17 +02:00
parent cc26a3c05d
commit c94c5c50a5
4 changed files with 45 additions and 19 deletions

View File

@ -265,19 +265,48 @@ func InitCommands(c *Commands) {
})
c.Add(Command{
Prefix: "/systembell",
Help: "Toggle system bell for all messages.",
Prefix: "/bell",
PrefixHelp: "[off|pm|all]",
Help: "Set system bell off, only for pm, or for all messages",
Handler: func(room *Room, msg message.CommandMsg) error {
u := msg.From()
cfg := u.Config()
cfg.Systembell = !cfg.Systembell
args := msg.Args()
mode := ""
if len(args) >= 1 {
mode = args[0]
}
switch mode {
case "":
// Toggle 0 and 1
if cfg.Bell != 0 {
cfg.Bell = 0
} else {
cfg.Bell = 1
}
case "off":
cfg.Bell = 0
case "pm":
cfg.Bell = 1
case "all":
cfg.Bell = 2
default:
return errors.New("bell value must be one of: off, pm, all")
}
u.SetConfig(cfg)
var body string
if cfg.Systembell {
body = "System bell is toggled ON"
if cfg.Bell != 0 {
if cfg.Bell == 1 {
body = "Bell is toggled ON for private messages"
} else {
body = "Bell is toggled ON for all messages"
}
} else {
body = "System bell is toggled OFF"
body = "Bell is toggled OFF"
}
room.Send(message.NewSystemMsg(body, u))
return nil

View File

@ -123,7 +123,7 @@ func (m PublicMsg) RenderFor(cfg UserConfig) string {
}
body := cfg.Highlight.ReplaceAllString(m.body, cfg.Theme.Highlight("${1}"))
if cfg.Bell {
if cfg.Bell != 0 {
body += Bel
}
return fmt.Sprintf("%s: %s", cfg.Theme.ColorName(m.from), body)

View File

@ -215,13 +215,14 @@ func (u *User) render(m Message) string {
return ""
} else {
out += m.RenderFor(cfg)
if cfg.Systembell {
if cfg.Bell == 2 {
out += Bel
}
}
case *PrivateMsg:
out += m.Render(cfg.Theme)
if cfg.Bell {
//if u != m.From() && m.Command() != "reply" && cfg.Bell != 0 {
if u != m.From() && cfg.Bell != 0 {
out += Bel
}
case *CommandMsg:
@ -275,8 +276,7 @@ func (u *User) Send(m Message) error {
// Container for per-user configurations.
type UserConfig struct {
Highlight *regexp.Regexp
Bell bool
Systembell bool
Bell int
Quiet bool
Echo bool // Echo shows your own messages after sending, disabled for bots
Timeformat *string
@ -289,8 +289,7 @@ var DefaultUserConfig UserConfig
func init() {
DefaultUserConfig = UserConfig{
Bell: true,
Systembell: false,
Bell: 1,
Echo: true,
Quiet: false,
}

10
host.go
View File

@ -169,12 +169,10 @@ func (h *Host) Connect(term *sshd.Terminal) {
if msg, ok := message.NewPublicMsg(cmd, user).ParseCommand(); ok {
h.Room.HandleMsg(msg)
}
case "SSHCHAT_SYSTEMBELL":
if e.Value != "" && e.Value != "0" {
cmd := "/systembell"
if e.Value != "1" {
cmd += " " + e.Value
}
case "SSHCHAT_BELL":
if e.Value != "" && e.Value != "off" {
cmd := "/bell"
cmd += " " + e.Value
if msg, ok := message.NewPublicMsg(cmd, user).ParseCommand(); ok {
h.Room.HandleMsg(msg)
}