3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-14 16:09:32 +01:00

services: Explicitly show when commands have been disabled in the HELP output

This commit is contained in:
Daniel Oaks 2018-05-19 09:00:22 +10:00
parent de7b679fc5
commit f142bf065d

View File

@ -134,18 +134,24 @@ func serviceHelpHandler(service *ircService, server *Server, client *Client, par
if params == "" { if params == "" {
// show general help // show general help
var shownHelpLines sort.StringSlice var shownHelpLines sort.StringSlice
var disabledCommands bool
for _, commandInfo := range service.Commands { for _, commandInfo := range service.Commands {
// skip commands user can't access // skip commands user can't access
if 0 < len(commandInfo.capabs) && !client.HasRoleCapabs(commandInfo.capabs...) { if 0 < len(commandInfo.capabs) && !client.HasRoleCapabs(commandInfo.capabs...) {
continue continue
} }
if commandInfo.enabled != nil && !commandInfo.enabled(server) { if commandInfo.enabled != nil && !commandInfo.enabled(server) {
disabledCommands = true
continue continue
} }
shownHelpLines = append(shownHelpLines, " "+client.t(commandInfo.helpShort)) shownHelpLines = append(shownHelpLines, " "+client.t(commandInfo.helpShort))
} }
if disabledCommands {
shownHelpLines = append(shownHelpLines, " "+client.t("... and other commands which have been disabled"))
}
// sort help lines // sort help lines
sort.Sort(shownHelpLines) sort.Sort(shownHelpLines)