From 9791606f62a83dd88d7abc525d5c54ff00a05b1d Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Sun, 30 Mar 2025 21:32:55 -0400 Subject: [PATCH] allow customizing the NPC and SCENE nickmasks (#2237) See #2229 --- default.yaml | 6 ++++++ irc/config.go | 8 ++++++++ irc/roleplay.go | 8 ++++---- traditional.yaml | 6 ++++++ 4 files changed, 24 insertions(+), 4 deletions(-) diff --git a/default.yaml b/default.yaml index cc139e78..0078d4ae 100644 --- a/default.yaml +++ b/default.yaml @@ -946,6 +946,12 @@ roleplay: # add the real nickname, in parentheses, to the end of every roleplay message? add-suffix: true + # allow customizing the NUH's sent for NPC and SCENE commands + # NPC: the first %s is the NPC name, the second is the user's real nick + #npc-nick-mask: "*%s*!%s@npc.fakeuser.invalid" + # SCENE: the %s is the client's real nick + #scene-nick-mask: "=Scene=!%s@npc.fakeuser.invalid" + # external services can integrate with the ircd using JSON Web Tokens (https://jwt.io). # in effect, the server can sign a token attesting that the client is present on # the server, is a member of a particular channel, etc. diff --git a/irc/config.go b/irc/config.go index 231fdd09..57f9ecd7 100644 --- a/irc/config.go +++ b/irc/config.go @@ -627,6 +627,8 @@ type Config struct { RequireOper bool `yaml:"require-oper"` AddSuffix *bool `yaml:"add-suffix"` addSuffix bool + NPCNickMask string `yaml:"npc-nick-mask"` + SceneNickMask string `yaml:"scene-nick-mask"` } Extjwt struct { @@ -1611,6 +1613,12 @@ func LoadConfig(filename string) (config *Config, err error) { } config.Roleplay.addSuffix = utils.BoolDefaultTrue(config.Roleplay.AddSuffix) + if config.Roleplay.NPCNickMask == "" { + config.Roleplay.NPCNickMask = defaultNPCNickMask + } + if config.Roleplay.SceneNickMask == "" { + config.Roleplay.SceneNickMask = defaultSceneNickMask + } config.Datastore.MySQL.ExpireTime = time.Duration(config.History.Restrictions.ExpireTime) config.Datastore.MySQL.TrackAccountMessages = config.History.Retention.EnableAccountIndexing diff --git a/irc/roleplay.go b/irc/roleplay.go index 97625644..363d70fb 100644 --- a/irc/roleplay.go +++ b/irc/roleplay.go @@ -13,8 +13,8 @@ import ( ) const ( - npcNickMask = "*%s*!%s@npc.fakeuser.invalid" - sceneNickMask = "=Scene=!%s@npc.fakeuser.invalid" + defaultNPCNickMask = "*%s*!%s@npc.fakeuser.invalid" + defaultSceneNickMask = "=Scene=!%s@npc.fakeuser.invalid" ) func sendRoleplayMessage(server *Server, client *Client, source string, targetString string, isScene, isAction bool, messageParts []string, rb *ResponseBuffer) { @@ -30,7 +30,7 @@ func sendRoleplayMessage(server *Server, client *Client, source string, targetSt var sourceMask string if isScene { - sourceMask = fmt.Sprintf(sceneNickMask, client.Nick()) + sourceMask = fmt.Sprintf(server.Config().Roleplay.SceneNickMask, client.Nick()) } else { cfSource, cfSourceErr := CasefoldName(source) skelSource, skelErr := Skeleton(source) @@ -39,7 +39,7 @@ func sendRoleplayMessage(server *Server, client *Client, source string, targetSt rb.Add(nil, client.server.name, ERR_CANNOTSENDRP, targetString, client.t("Invalid roleplay name")) return } - sourceMask = fmt.Sprintf(npcNickMask, source, client.Nick()) + sourceMask = fmt.Sprintf(server.Config().Roleplay.NPCNickMask, source, client.Nick()) } // block attempts to send CTCP messages to Tor clients diff --git a/traditional.yaml b/traditional.yaml index 75ec2605..90b53d6d 100644 --- a/traditional.yaml +++ b/traditional.yaml @@ -917,6 +917,12 @@ roleplay: # add the real nickname, in parentheses, to the end of every roleplay message? add-suffix: true + # allow customizing the NUH's sent for NPC and SCENE commands + # NPC: the first %s is the NPC name, the second is the user's real nick + #npc-nick-mask: "*%s*!%s@npc.fakeuser.invalid" + # SCENE: the %s is the client's real nick + #scene-nick-mask: "=Scene=!%s@npc.fakeuser.invalid" + # external services can integrate with the ircd using JSON Web Tokens (https://jwt.io). # in effect, the server can sign a token attesting that the client is present on # the server, is a member of a particular channel, etc.