feat: manually mirror opencoze's code from bytedance
Change-Id: I09a73aadda978ad9511264a756b2ce51f5761adf
This commit is contained in:
253
backend/domain/plugin/internal/dal/plugin.go
Normal file
253
backend/domain/plugin/internal/dal/plugin.go
Normal file
@@ -0,0 +1,253 @@
|
||||
/*
|
||||
* Copyright 2025 coze-dev Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package dal
|
||||
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
|
||||
"gorm.io/gen/field"
|
||||
"gorm.io/gorm"
|
||||
|
||||
"github.com/coze-dev/coze-studio/backend/api/model/crossdomain/plugin"
|
||||
"github.com/coze-dev/coze-studio/backend/api/model/plugin_develop_common"
|
||||
"github.com/coze-dev/coze-studio/backend/domain/plugin/entity"
|
||||
"github.com/coze-dev/coze-studio/backend/domain/plugin/internal/dal/model"
|
||||
"github.com/coze-dev/coze-studio/backend/domain/plugin/internal/dal/query"
|
||||
"github.com/coze-dev/coze-studio/backend/infra/contract/idgen"
|
||||
"github.com/coze-dev/coze-studio/backend/pkg/lang/slices"
|
||||
)
|
||||
|
||||
func NewPluginDAO(db *gorm.DB, idGen idgen.IDGenerator) *PluginDAO {
|
||||
return &PluginDAO{
|
||||
idGen: idGen,
|
||||
query: query.Use(db),
|
||||
}
|
||||
}
|
||||
|
||||
type PluginDAO struct {
|
||||
idGen idgen.IDGenerator
|
||||
query *query.Query
|
||||
}
|
||||
|
||||
type pluginPO model.Plugin
|
||||
|
||||
func (p pluginPO) ToDO() *entity.PluginInfo {
|
||||
return entity.NewPluginInfo(&plugin.PluginInfo{
|
||||
ID: p.ID,
|
||||
SpaceID: p.SpaceID,
|
||||
DeveloperID: p.DeveloperID,
|
||||
IconURI: &p.IconURI,
|
||||
ServerURL: &p.ServerURL,
|
||||
PluginType: plugin_develop_common.PluginType(p.PluginType),
|
||||
CreatedAt: p.CreatedAt,
|
||||
UpdatedAt: p.UpdatedAt,
|
||||
Version: &p.Version,
|
||||
VersionDesc: &p.VersionDesc,
|
||||
Manifest: p.Manifest,
|
||||
OpenapiDoc: p.OpenapiDoc,
|
||||
})
|
||||
}
|
||||
|
||||
func (p *PluginDAO) getSelected(opt *PluginSelectedOption) (selected []field.Expr) {
|
||||
if opt == nil {
|
||||
return selected
|
||||
}
|
||||
|
||||
table := p.query.Plugin
|
||||
|
||||
if opt.PluginID {
|
||||
selected = append(selected, table.ID)
|
||||
}
|
||||
if opt.OpenapiDoc {
|
||||
selected = append(selected, table.OpenapiDoc)
|
||||
}
|
||||
if opt.Version {
|
||||
selected = append(selected, table.Version)
|
||||
}
|
||||
if opt.Manifest {
|
||||
selected = append(selected, table.Manifest)
|
||||
}
|
||||
if opt.IconURI {
|
||||
selected = append(selected, table.IconURI)
|
||||
}
|
||||
|
||||
return selected
|
||||
}
|
||||
|
||||
func (p *PluginDAO) Get(ctx context.Context, pluginID int64, opt *PluginSelectedOption) (plugin *entity.PluginInfo, exist bool, err error) {
|
||||
table := p.query.Plugin
|
||||
|
||||
pl, err := table.WithContext(ctx).
|
||||
Where(table.ID.Eq(pluginID)).
|
||||
Select(p.getSelected(opt)...).
|
||||
First()
|
||||
if err != nil {
|
||||
if errors.Is(err, gorm.ErrRecordNotFound) {
|
||||
return nil, false, nil
|
||||
}
|
||||
return nil, false, err
|
||||
}
|
||||
|
||||
plugin = pluginPO(*pl).ToDO()
|
||||
|
||||
return plugin, true, nil
|
||||
}
|
||||
|
||||
func (p *PluginDAO) MGet(ctx context.Context, pluginIDs []int64, opt *PluginSelectedOption) (plugins []*entity.PluginInfo, err error) {
|
||||
plugins = make([]*entity.PluginInfo, 0, len(pluginIDs))
|
||||
|
||||
table := p.query.Plugin
|
||||
chunks := slices.Chunks(pluginIDs, 10)
|
||||
|
||||
for _, chunk := range chunks {
|
||||
pls, err := table.WithContext(ctx).
|
||||
Select(p.getSelected(opt)...).
|
||||
Where(table.ID.In(chunk...)).
|
||||
Find()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
for _, pl := range pls {
|
||||
plugins = append(plugins, pluginPO(*pl).ToDO())
|
||||
}
|
||||
}
|
||||
|
||||
return plugins, nil
|
||||
}
|
||||
|
||||
func (p *PluginDAO) List(ctx context.Context, spaceID int64, pageInfo entity.PageInfo) (plugins []*entity.PluginInfo, total int64, err error) {
|
||||
if pageInfo.SortBy == nil || pageInfo.OrderByACS == nil {
|
||||
return nil, 0, fmt.Errorf("sortBy or orderByACS is empty")
|
||||
}
|
||||
|
||||
var orderExpr field.Expr
|
||||
table := p.query.Plugin
|
||||
|
||||
switch *pageInfo.SortBy {
|
||||
case entity.SortByCreatedAt:
|
||||
if *pageInfo.OrderByACS {
|
||||
orderExpr = table.CreatedAt.Asc()
|
||||
} else {
|
||||
orderExpr = table.CreatedAt.Desc()
|
||||
}
|
||||
case entity.SortByUpdatedAt:
|
||||
if *pageInfo.OrderByACS {
|
||||
orderExpr = table.UpdatedAt.Asc()
|
||||
} else {
|
||||
orderExpr = table.UpdatedAt.Desc()
|
||||
}
|
||||
default:
|
||||
return nil, 0, fmt.Errorf("invalid sortBy '%v'", *pageInfo.SortBy)
|
||||
}
|
||||
|
||||
offset := (pageInfo.Page - 1) * pageInfo.Size
|
||||
pls, total, err := table.WithContext(ctx).
|
||||
Where(table.SpaceID.Eq(spaceID)).
|
||||
Order(orderExpr).
|
||||
FindByPage(offset, pageInfo.Size)
|
||||
if err != nil {
|
||||
return nil, 0, err
|
||||
}
|
||||
|
||||
plugins = make([]*entity.PluginInfo, 0, len(pls))
|
||||
for _, pl := range pls {
|
||||
plugins = append(plugins, pluginPO(*pl).ToDO())
|
||||
}
|
||||
|
||||
return plugins, total, nil
|
||||
}
|
||||
|
||||
func (p *PluginDAO) UpsertWithTX(ctx context.Context, tx *query.QueryTx, plugin *entity.PluginInfo) (err error) {
|
||||
table := tx.Plugin
|
||||
_, err = table.WithContext(ctx).Select(table.ID).Where(table.ID.Eq(plugin.ID)).First()
|
||||
if err != nil {
|
||||
if !errors.Is(err, gorm.ErrRecordNotFound) {
|
||||
return err
|
||||
}
|
||||
|
||||
m := &model.Plugin{
|
||||
ID: plugin.ID,
|
||||
SpaceID: plugin.SpaceID,
|
||||
DeveloperID: plugin.DeveloperID,
|
||||
AppID: plugin.GetAPPID(),
|
||||
Manifest: plugin.Manifest,
|
||||
OpenapiDoc: plugin.OpenapiDoc,
|
||||
PluginType: int32(plugin.PluginType),
|
||||
IconURI: plugin.GetIconURI(),
|
||||
ServerURL: plugin.GetServerURL(),
|
||||
Version: plugin.GetVersion(),
|
||||
VersionDesc: plugin.GetVersionDesc(),
|
||||
}
|
||||
|
||||
return table.WithContext(ctx).Create(m)
|
||||
}
|
||||
|
||||
updateMap := map[string]any{}
|
||||
if plugin.APPID != nil {
|
||||
updateMap[table.AppID.ColumnName().String()] = *plugin.APPID
|
||||
}
|
||||
if plugin.IconURI != nil {
|
||||
updateMap[table.IconURI.ColumnName().String()] = *plugin.IconURI
|
||||
}
|
||||
if plugin.Version != nil {
|
||||
updateMap[table.Version.ColumnName().String()] = *plugin.Version
|
||||
}
|
||||
if plugin.VersionDesc != nil {
|
||||
updateMap[table.VersionDesc.ColumnName().String()] = *plugin.VersionDesc
|
||||
}
|
||||
if plugin.ServerURL != nil {
|
||||
updateMap[table.ServerURL.ColumnName().String()] = *plugin.ServerURL
|
||||
}
|
||||
if plugin.Manifest != nil {
|
||||
b, err := json.Marshal(plugin.Manifest)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
updateMap[table.Manifest.ColumnName().String()] = b
|
||||
}
|
||||
if plugin.OpenapiDoc != nil {
|
||||
b, err := json.Marshal(plugin.OpenapiDoc)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
updateMap[table.OpenapiDoc.ColumnName().String()] = b
|
||||
}
|
||||
|
||||
_, err = table.WithContext(ctx).
|
||||
Where(table.ID.Eq(plugin.ID)).
|
||||
Updates(updateMap)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (p *PluginDAO) DeleteWithTX(ctx context.Context, tx *query.QueryTx, pluginID int64) (err error) {
|
||||
table := tx.Plugin
|
||||
_, err = table.WithContext(ctx).
|
||||
Where(table.ID.Eq(pluginID)).
|
||||
Delete()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
Reference in New Issue
Block a user