mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-27 07:16:19 +09:00
5a35ef34ac
- Refactor channel manager with support for Sender/Receiver interfaces and hot-swappable adapters. - Implement identity routing and pre-authentication logic for inbound messages. - Update database schema to support bot pre-auth keys and extended channel session metadata. - Add Telegram and Feishu channel configuration and adapter enhancements. - Update Swagger documentation and internal handlers for channel management. Co-authored-by: Cursor <cursoragent@cursor.com>
138 lines
3.4 KiB
Go
138 lines
3.4 KiB
Go
package channel
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
"sync"
|
|
)
|
|
|
|
type ChannelDescriptor struct {
|
|
Type ChannelType
|
|
DisplayName string
|
|
NormalizeConfig func(map[string]any) (map[string]any, error)
|
|
NormalizeUserConfig func(map[string]any) (map[string]any, error)
|
|
ResolveTarget func(map[string]any) (string, error)
|
|
MatchBinding func(map[string]any, BindingCriteria) bool
|
|
BuildUserConfig func(Identity) map[string]any
|
|
Configless bool
|
|
Capabilities ChannelCapabilities
|
|
OutboundPolicy OutboundPolicy
|
|
ConfigSchema ConfigSchema
|
|
UserConfigSchema ConfigSchema
|
|
TargetSpec TargetSpec
|
|
NormalizeTarget func(string) string
|
|
}
|
|
|
|
type channelRegistry struct {
|
|
mu sync.RWMutex
|
|
items map[ChannelType]ChannelDescriptor
|
|
}
|
|
|
|
var registry = &channelRegistry{
|
|
items: map[ChannelType]ChannelDescriptor{},
|
|
}
|
|
|
|
func RegisterChannel(desc ChannelDescriptor) error {
|
|
normalized := normalizeChannelType(string(desc.Type))
|
|
if normalized == "" {
|
|
return fmt.Errorf("channel type is required")
|
|
}
|
|
desc.Type = normalized
|
|
if strings.TrimSpace(desc.DisplayName) == "" {
|
|
desc.DisplayName = normalized.String()
|
|
}
|
|
registry.mu.Lock()
|
|
defer registry.mu.Unlock()
|
|
if _, exists := registry.items[desc.Type]; exists {
|
|
return fmt.Errorf("channel type already registered: %s", desc.Type)
|
|
}
|
|
registry.items[desc.Type] = desc
|
|
return nil
|
|
}
|
|
|
|
func MustRegisterChannel(desc ChannelDescriptor) {
|
|
if err := RegisterChannel(desc); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
func UnregisterChannel(channelType ChannelType) bool {
|
|
normalized := normalizeChannelType(channelType.String())
|
|
if normalized == "" {
|
|
return false
|
|
}
|
|
registry.mu.Lock()
|
|
defer registry.mu.Unlock()
|
|
if _, exists := registry.items[normalized]; !exists {
|
|
return false
|
|
}
|
|
delete(registry.items, normalized)
|
|
return true
|
|
}
|
|
|
|
func GetChannelDescriptor(channelType ChannelType) (ChannelDescriptor, bool) {
|
|
normalized := normalizeChannelType(channelType.String())
|
|
registry.mu.RLock()
|
|
defer registry.mu.RUnlock()
|
|
desc, ok := registry.items[normalized]
|
|
return desc, ok
|
|
}
|
|
|
|
func ListChannelDescriptors() []ChannelDescriptor {
|
|
registry.mu.RLock()
|
|
defer registry.mu.RUnlock()
|
|
items := make([]ChannelDescriptor, 0, len(registry.items))
|
|
for _, item := range registry.items {
|
|
items = append(items, item)
|
|
}
|
|
return items
|
|
}
|
|
|
|
func GetChannelCapabilities(channelType ChannelType) (ChannelCapabilities, bool) {
|
|
desc, ok := GetChannelDescriptor(channelType)
|
|
if !ok {
|
|
return ChannelCapabilities{}, false
|
|
}
|
|
return desc.Capabilities, true
|
|
}
|
|
|
|
func GetChannelOutboundPolicy(channelType ChannelType) (OutboundPolicy, bool) {
|
|
desc, ok := GetChannelDescriptor(channelType)
|
|
if !ok {
|
|
return OutboundPolicy{}, false
|
|
}
|
|
return desc.OutboundPolicy, true
|
|
}
|
|
|
|
func GetChannelConfigSchema(channelType ChannelType) (ConfigSchema, bool) {
|
|
desc, ok := GetChannelDescriptor(channelType)
|
|
if !ok {
|
|
return ConfigSchema{}, false
|
|
}
|
|
return desc.ConfigSchema, true
|
|
}
|
|
|
|
func GetChannelUserConfigSchema(channelType ChannelType) (ConfigSchema, bool) {
|
|
desc, ok := GetChannelDescriptor(channelType)
|
|
if !ok {
|
|
return ConfigSchema{}, false
|
|
}
|
|
return desc.UserConfigSchema, true
|
|
}
|
|
|
|
func IsConfigless(channelType ChannelType) bool {
|
|
desc, ok := GetChannelDescriptor(channelType)
|
|
if !ok {
|
|
return false
|
|
}
|
|
return desc.Configless
|
|
}
|
|
|
|
func normalizeChannelType(raw string) ChannelType {
|
|
normalized := strings.TrimSpace(strings.ToLower(raw))
|
|
if normalized == "" {
|
|
return ""
|
|
}
|
|
return ChannelType(normalized)
|
|
}
|