mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-27 07:16:19 +09:00
6aebbe9279
Major changes: 1. Core Architecture: Decoupled Bots from Users. Bots now have independent lifecycles, member management (bot_members), and dedicated configurations. 2. Channel Gateway: - Implemented a unified Channel Manager supporting Feishu, Telegram, and Local (Web/CLI) adapters. - Added message processing pipeline to normalize interactions across different platforms. - Introduced a Contact system for identity binding and guest access policies. 3. Database & Tooling: - Consolidated all migrations into 0001_init with updated schema for bots, channels, and contacts. - Optimized sqlc.yaml to automatically track the migrations directory. 4. Agent Enhancements: - Introduced ToolContext to provide Agents with platform-aware execution capabilities (e.g., messaging, contact lookups). - Added tool logging and fallback mechanisms for toolChoice execution. 5. UI & Docs: Updated frontend stores, UI components, and Swagger documentation to align with the new Bot-centric model.
74 lines
1.8 KiB
Go
74 lines
1.8 KiB
Go
package channel
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
"sync"
|
|
)
|
|
|
|
type ChannelDescriptor struct {
|
|
Type ChannelType
|
|
DisplayName string
|
|
NormalizeConfig func(map[string]interface{}) (map[string]interface{}, error)
|
|
NormalizeUserConfig func(map[string]interface{}) (map[string]interface{}, error)
|
|
}
|
|
|
|
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 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 normalizeChannelType(raw string) ChannelType {
|
|
normalized := strings.TrimSpace(strings.ToLower(raw))
|
|
if normalized == "" {
|
|
return ""
|
|
}
|
|
return ChannelType(normalized)
|
|
}
|