ergo/irc/roleplay.go

119 lines
3.6 KiB
Go
Raw Normal View History

2017-03-27 14:15:02 +02:00
// Copyright (c) 2016-2017 Daniel Oaks <daniel@danieloaks.net>
2016-11-01 14:56:21 +01:00
// released under the MIT license
package irc
import (
2020-03-19 22:09:52 +01:00
"bytes"
2016-11-01 14:56:21 +01:00
2020-03-19 22:09:52 +01:00
"github.com/oragono/oragono/irc/history"
"github.com/oragono/oragono/irc/modes"
2020-03-19 22:09:52 +01:00
"github.com/oragono/oragono/irc/utils"
2016-11-01 14:56:21 +01:00
)
const (
2016-11-01 15:42:25 +01:00
npcNickMask = "*%s*!%s@npc.fakeuser.invalid"
2016-11-01 14:56:21 +01:00
sceneNickMask = "=Scene=!%s@npc.fakeuser.invalid"
)
2020-03-19 22:09:52 +01:00
func sendRoleplayMessage(server *Server, client *Client, source string, targetString string, isAction bool, messageParts []string, rb *ResponseBuffer) {
config := server.Config()
if !config.Roleplay.enabled {
rb.Add(nil, client.server.name, ERR_CANNOTSENDRP, targetString, client.t("Roleplaying has been disabled by the server administrators"))
return
}
if config.Roleplay.RequireOper && !client.HasRoleCapabs("roleplay") {
rb.Add(nil, client.server.name, ERR_CANNOTSENDRP, targetString, client.t("Insufficient privileges"))
return
}
// block attempts to send CTCP messages to Tor clients
if len(messageParts) > 0 && len(messageParts[0]) > 0 && messageParts[0][0] == '\x01' {
return
}
var buf bytes.Buffer
2016-11-01 14:56:21 +01:00
if isAction {
2020-03-19 22:09:52 +01:00
buf.WriteString("\x01ACTION ")
}
for i, part := range messageParts {
buf.WriteString(part)
if i != len(messageParts)-1 {
buf.WriteByte(' ')
2019-02-26 03:50:43 +01:00
}
2020-03-19 22:09:52 +01:00
}
if config.Roleplay.addSuffix {
buf.WriteString(" (")
buf.WriteString(client.Nick())
buf.WriteString(")")
2016-11-01 14:56:21 +01:00
}
2020-03-19 22:09:52 +01:00
splitMessage := utils.MakeMessage(buf.String())
2016-11-01 14:56:21 +01:00
target, cerr := CasefoldChannel(targetString)
if cerr == nil {
channel := server.channels.Get(target)
if channel == nil {
2018-02-05 15:21:08 +01:00
rb.Add(nil, server.name, ERR_NOSUCHCHANNEL, client.nick, targetString, client.t("No such channel"))
2016-11-01 14:56:21 +01:00
return
}
2020-03-19 22:09:52 +01:00
targetString = channel.Name()
2016-11-01 14:56:21 +01:00
if !channel.CanSpeak(client) {
2020-03-19 22:09:52 +01:00
rb.Add(nil, client.server.name, ERR_CANNOTSENDTOCHAN, targetString, client.t("Cannot send to channel"))
2016-11-01 14:56:21 +01:00
return
}
2018-04-23 00:47:10 +02:00
if !channel.flags.HasMode(modes.ChanRoleplaying) {
2020-03-19 22:09:52 +01:00
rb.Add(nil, client.server.name, ERR_CANNOTSENDRP, targetString, client.t("Channel doesn't have roleplaying mode available"))
return
}
if config.Roleplay.RequireChanops && !channel.ClientIsAtLeast(client, modes.ChannelOperator) {
rb.Add(nil, client.server.name, ERR_CANNOTSENDRP, targetString, client.t("Insufficient privileges"))
2016-11-01 15:42:25 +01:00
return
}
2017-10-23 01:50:16 +02:00
for _, member := range channel.Members() {
for _, session := range member.Sessions() {
// see discussion on #865: clients do not understand how to do local echo
// of roleplay commands, so send them a copy whether they have echo-message
// or not
if rb.session == session {
2020-03-19 22:09:52 +01:00
rb.AddSplitMessageFromClient(source, "", nil, "PRIVMSG", targetString, splitMessage)
} else {
2020-03-19 22:09:52 +01:00
session.sendSplitMsgFromClientInternal(false, source, "", nil, "PRIVMSG", targetString, splitMessage)
}
2018-02-05 15:21:08 +01:00
}
2016-11-01 14:56:21 +01:00
}
2020-03-19 22:09:52 +01:00
channel.AddHistoryItem(history.Item{
Type: history.Privmsg,
Message: splitMessage,
Nick: source,
2020-05-12 18:05:40 +02:00
}, client.Account())
2016-11-01 14:56:21 +01:00
} else {
target, err := CasefoldName(targetString)
user := server.clients.Get(target)
if err != nil || user == nil {
2018-02-05 15:21:08 +01:00
rb.Add(nil, server.name, ERR_NOSUCHNICK, client.nick, target, client.t("No such nick"))
2016-11-01 14:56:21 +01:00
return
}
2016-11-01 15:42:25 +01:00
2018-04-23 00:47:10 +02:00
if !user.HasMode(modes.UserRoleplaying) {
2018-02-05 15:21:08 +01:00
rb.Add(nil, client.server.name, ERR_CANNOTSENDRP, user.nick, client.t("User doesn't have roleplaying mode enabled"))
2016-11-01 15:42:25 +01:00
return
}
2019-02-17 20:29:04 +01:00
cnick := client.Nick()
tnick := user.Nick()
2020-03-19 22:09:52 +01:00
for _, session := range user.Sessions() {
session.sendSplitMsgFromClientInternal(false, source, "", nil, "PRIVMSG", tnick, splitMessage)
2016-11-01 14:56:21 +01:00
}
2019-04-28 21:10:03 +02:00
if user.Away() {
2016-11-01 14:56:21 +01:00
//TODO(dan): possibly implement cooldown of away notifications to users
2019-02-17 20:29:04 +01:00
rb.Add(nil, server.name, RPL_AWAY, cnick, tnick, user.AwayMessage())
2016-11-01 14:56:21 +01:00
}
}
}