init push

This commit is contained in:
2026-05-21 19:52:45 +08:00
commit e3f75311ab
1280 changed files with 179173 additions and 0 deletions

55
backend/repo/cache/kb.go vendored Normal file
View File

@@ -0,0 +1,55 @@
package cache
import (
"context"
"encoding/json"
"errors"
"github.com/chaitin/panda-wiki/domain"
"github.com/chaitin/panda-wiki/store/cache"
"github.com/redis/go-redis/v9"
)
type KBRepo struct {
cache *cache.Cache
}
func NewKBRepo(cache *cache.Cache) *KBRepo {
return &KBRepo{cache: cache}
}
func (r *KBRepo) GetKB(ctx context.Context, kbID string) (*domain.KnowledgeBase, error) {
kbStr, err := r.cache.Get(ctx, kbID).Result()
if err != nil {
if errors.Is(err, redis.Nil) {
return nil, nil
}
return nil, err
}
if kbStr == "" {
return nil, nil
}
var kb domain.KnowledgeBase
err = json.Unmarshal([]byte(kbStr), &kb)
if err != nil {
return nil, err
}
return &kb, nil
}
func (r *KBRepo) SetKB(ctx context.Context, kbID string, kb *domain.KnowledgeBase) error {
kbStr, err := json.Marshal(kb)
if err != nil {
return err
}
return r.cache.Set(ctx, kbID, kbStr, 0).Err()
}
func (r *KBRepo) DeleteKB(ctx context.Context, kbID string) error {
return r.cache.Del(ctx, kbID).Err()
}
func (r *KBRepo) ClearSession(ctx context.Context) error {
return r.cache.DeleteKeysWithPrefix(ctx, "session_")
}