coze-studio/backend/domain/plugin/internal/dal/plugin_version.go

211 lines
5.4 KiB
Go

/*
* 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"
"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 NewPluginVersionDAO(db *gorm.DB, idGen idgen.IDGenerator) *PluginVersionDAO {
return &PluginVersionDAO{
idGen: idGen,
query: query.Use(db),
}
}
type PluginVersionDAO struct {
idGen idgen.IDGenerator
query *query.Query
}
type pluginVersionPO model.PluginVersion
func (p pluginVersionPO) ToDO() *entity.PluginInfo {
return entity.NewPluginInfo(&plugin.PluginInfo{
ID: p.PluginID,
SpaceID: p.SpaceID,
APPID: &p.AppID,
DeveloperID: p.DeveloperID,
PluginType: plugin_develop_common.PluginType(p.PluginType),
IconURI: &p.IconURI,
ServerURL: &p.ServerURL,
CreatedAt: p.CreatedAt,
Version: &p.Version,
VersionDesc: &p.VersionDesc,
Manifest: p.Manifest,
OpenapiDoc: p.OpenapiDoc,
})
}
func (p *PluginVersionDAO) getSelected(opt *PluginSelectedOption) (selected []field.Expr) {
if opt == nil {
return selected
}
table := p.query.PluginVersion
if opt.PluginID {
selected = append(selected, table.PluginID)
}
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 *PluginVersionDAO) Get(ctx context.Context, pluginID int64, version string) (plugin *entity.PluginInfo, exist bool, err error) {
table := p.query.PluginVersion
pl, err := table.WithContext(ctx).
Where(
table.PluginID.Eq(pluginID),
table.Version.Eq(version),
).First()
if err != nil {
if errors.Is(err, gorm.ErrRecordNotFound) {
return nil, false, nil
}
return nil, false, err
}
plugin = pluginVersionPO(*pl).ToDO()
return plugin, true, nil
}
func (p *PluginVersionDAO) MGet(ctx context.Context, vPlugins []entity.VersionPlugin, opt *PluginSelectedOption) (plugins []*entity.PluginInfo, err error) {
plugins = make([]*entity.PluginInfo, 0, len(vPlugins))
table := p.query.PluginVersion
chunks := slices.Chunks(vPlugins, 10)
for _, chunk := range chunks {
q := table.WithContext(ctx).
Select(p.getSelected(opt)...).
Where(
table.Where(
table.PluginID.Eq(chunk[0].PluginID),
table.Version.Eq(chunk[0].Version),
),
)
for i, v := range chunk {
if i == 0 {
continue
}
q = q.Or(
table.PluginID.Eq(v.PluginID),
table.Version.Eq(v.Version),
)
}
pls, err := q.Find()
if err != nil {
return nil, err
}
for _, pl := range pls {
plugins = append(plugins, pluginVersionPO(*pl).ToDO())
}
}
return plugins, nil
}
func (p *PluginVersionDAO) ListVersions(ctx context.Context, pluginID int64, pageInfo entity.PageInfo) (plugins []*entity.PluginInfo, total int64, err error) {
table := p.query.PluginVersion
offset := (pageInfo.Page - 1) * pageInfo.Size
pls, total, err := table.WithContext(ctx).
Where(table.PluginID.Eq(pluginID)).
Select(table.CreatedAt, table.Manifest, table.Version, table.VersionDesc).
Order(table.CreatedAt.Desc()).
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, pluginVersionPO(*pl).ToDO())
}
return plugins, total, nil
}
func (p *PluginVersionDAO) CreateWithTX(ctx context.Context, tx *query.QueryTx, plugin *entity.PluginInfo) (err error) {
if plugin.GetVersion() == "" {
return fmt.Errorf("invalid plugin version")
}
id, err := p.idGen.GenID(ctx)
if err != nil {
return err
}
table := tx.PluginVersion
err = table.WithContext(ctx).Create(&model.PluginVersion{
ID: id,
SpaceID: plugin.SpaceID,
PluginID: plugin.ID,
DeveloperID: plugin.DeveloperID,
AppID: plugin.GetAPPID(),
PluginType: int32(plugin.PluginType),
IconURI: plugin.GetIconURI(),
ServerURL: plugin.GetServerURL(),
Version: plugin.GetVersion(),
VersionDesc: plugin.GetVersionDesc(),
Manifest: plugin.Manifest,
OpenapiDoc: plugin.OpenapiDoc,
})
if err != nil {
return err
}
return nil
}
func (p *PluginVersionDAO) DeleteWithTX(ctx context.Context, tx *query.QueryTx, pluginID int64) (err error) {
table := tx.PluginVersion
_, err = table.WithContext(ctx).
Where(table.PluginID.Eq(pluginID)).
Delete()
return err
}