mirror of
https://github.com/sipeed/picoclaw.git
synced 2026-05-25 16:00:35 +00:00
85 lines
2.5 KiB
Go
85 lines
2.5 KiB
Go
package bus
|
|
|
|
import "strings"
|
|
|
|
// NewOutboundContext builds the minimal normalized addressing context required
|
|
// to deliver an outbound text message or reply.
|
|
func NewOutboundContext(channel, chatID, replyToMessageID string) InboundContext {
|
|
return normalizeInboundContext(InboundContext{
|
|
Channel: strings.TrimSpace(channel),
|
|
ChatID: strings.TrimSpace(chatID),
|
|
ReplyToMessageID: strings.TrimSpace(replyToMessageID),
|
|
})
|
|
}
|
|
|
|
// NormalizeOutboundMessage ensures Context is normalized and keeps convenience
|
|
// mirrors in sync for runtime consumers.
|
|
func NormalizeOutboundMessage(msg OutboundMessage) OutboundMessage {
|
|
msg.Channel = strings.TrimSpace(msg.Channel)
|
|
msg.ChatID = strings.TrimSpace(msg.ChatID)
|
|
msg.ReplyToMessageID = strings.TrimSpace(msg.ReplyToMessageID)
|
|
if msg.Context.Channel == "" {
|
|
msg.Context.Channel = msg.Channel
|
|
}
|
|
if msg.Context.ChatID == "" {
|
|
msg.Context.ChatID = msg.ChatID
|
|
}
|
|
if msg.Context.ReplyToMessageID == "" {
|
|
msg.Context.ReplyToMessageID = msg.ReplyToMessageID
|
|
}
|
|
msg.Context = normalizeInboundContext(msg.Context)
|
|
if msg.Channel == "" {
|
|
msg.Channel = msg.Context.Channel
|
|
}
|
|
if msg.ChatID == "" {
|
|
msg.ChatID = msg.Context.ChatID
|
|
}
|
|
if msg.ReplyToMessageID == "" {
|
|
msg.ReplyToMessageID = msg.Context.ReplyToMessageID
|
|
}
|
|
if msg.Context.ReplyToMessageID == "" {
|
|
msg.Context.ReplyToMessageID = msg.ReplyToMessageID
|
|
}
|
|
msg.Scope = cloneOutboundScope(msg.Scope)
|
|
return msg
|
|
}
|
|
|
|
// NormalizeOutboundMediaMessage ensures media outbound messages also carry a
|
|
// normalized context while keeping convenience mirrors in sync.
|
|
func NormalizeOutboundMediaMessage(msg OutboundMediaMessage) OutboundMediaMessage {
|
|
msg.Channel = strings.TrimSpace(msg.Channel)
|
|
msg.ChatID = strings.TrimSpace(msg.ChatID)
|
|
if msg.Context.Channel == "" {
|
|
msg.Context.Channel = msg.Channel
|
|
}
|
|
if msg.Context.ChatID == "" {
|
|
msg.Context.ChatID = msg.ChatID
|
|
}
|
|
msg.Context = normalizeInboundContext(msg.Context)
|
|
if msg.Channel == "" {
|
|
msg.Channel = msg.Context.Channel
|
|
}
|
|
if msg.ChatID == "" {
|
|
msg.ChatID = msg.Context.ChatID
|
|
}
|
|
msg.Scope = cloneOutboundScope(msg.Scope)
|
|
return msg
|
|
}
|
|
|
|
func cloneOutboundScope(scope *OutboundScope) *OutboundScope {
|
|
if scope == nil {
|
|
return nil
|
|
}
|
|
cloned := *scope
|
|
if len(scope.Dimensions) > 0 {
|
|
cloned.Dimensions = append([]string(nil), scope.Dimensions...)
|
|
}
|
|
if len(scope.Values) > 0 {
|
|
cloned.Values = make(map[string]string, len(scope.Values))
|
|
for key, value := range scope.Values {
|
|
cloned.Values[key] = value
|
|
}
|
|
}
|
|
return &cloned
|
|
}
|