Major rewrite of the Go backend to support:
- Three API format imports: openai, anthropic, compatible
- Three protocol conversions: Chat Completions, Responses, Messages
- Hub-and-spoke architecture with Chat as intermediate format
Deleted:
- opencat.go (old entry)
- store/, team/, pkg/team/, pkg/store/ (old data layer)
- internal/model/, internal/consts/ (old types)
- internal/service/team/, internal/controller/team/ (old handlers)
- llm/ (removed LLM client library, pure proxy mode)
- dist/, assets/ (old build artifacts)
Added:
- internal/store/ — 9 GORM models + multi-DB support
- internal/pkg/ — crypto (AES-GCM), apikey, jwt, ratelimit, resp, tokenizer
- internal/channel/ — channel selection, weighted LB, health checks
- internal/proxy/convert/ — 6 protocol conversion functions + SSE streaming
- internal/proxy/ — gateway with request dispatch and upstream selection
- internal/usage/ — async usage recorder with batch writes
- internal/api/ — management API (auth, users, keys, channels, models)
- Makefile for build/test/deploy
Fixed API to match frontend expectations:
- Login response wraps token in { data: { token } }
- GET /api/profile route added
- Profile response wraps user in { code, data }
- Role returned as number (10=admin, 1=user)
69 lines
1.5 KiB
Go
69 lines
1.5 KiB
Go
package dao
|
|
|
|
import (
|
|
"errors"
|
|
"opencatd-open/internal/store"
|
|
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type ApiKeyDAO struct {
|
|
db *gorm.DB
|
|
}
|
|
|
|
func NewApiKeyDAO(db *gorm.DB) *ApiKeyDAO {
|
|
return &ApiKeyDAO{db: db}
|
|
}
|
|
|
|
func (d *ApiKeyDAO) Create(apiKey *store.APIKey) error {
|
|
if apiKey == nil {
|
|
return errors.New("apiKey is nil")
|
|
}
|
|
return d.db.Create(apiKey).Error
|
|
}
|
|
|
|
func (d *ApiKeyDAO) GetByID(id uint64) (*store.APIKey, error) {
|
|
var apiKey store.APIKey
|
|
err := d.db.First(&apiKey, id).Error
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &apiKey, nil
|
|
}
|
|
|
|
func (d *ApiKeyDAO) GetByHash(keyHash string) (*store.APIKey, error) {
|
|
var apiKey store.APIKey
|
|
err := d.db.Where("key_hash = ? AND status = ?", keyHash, store.KeyStatusActive).First(&apiKey).Error
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &apiKey, nil
|
|
}
|
|
|
|
func (d *ApiKeyDAO) ListByUserID(userID uint64, limit, offset int) ([]*store.APIKey, int64, error) {
|
|
var apiKeys []*store.APIKey
|
|
var total int64
|
|
db := d.db.Where("user_id = ?", userID)
|
|
db.Model(&store.APIKey{}).Count(&total)
|
|
err := db.Limit(limit).Offset(offset).Order("created_at DESC").Find(&apiKeys).Error
|
|
return apiKeys, total, err
|
|
}
|
|
|
|
func (d *ApiKeyDAO) Update(apiKey *store.APIKey) error {
|
|
if apiKey == nil {
|
|
return errors.New("apiKey is nil")
|
|
}
|
|
return d.db.Save(apiKey).Error
|
|
}
|
|
|
|
func (d *ApiKeyDAO) Delete(id uint64) error {
|
|
return d.db.Delete(&store.APIKey{}, id).Error
|
|
}
|
|
|
|
func (d *ApiKeyDAO) BatchDelete(ids []uint64) error {
|
|
if len(ids) == 0 {
|
|
return errors.New("ids is empty")
|
|
}
|
|
return d.db.Delete(&store.APIKey{}, ids).Error
|
|
}
|