284 lines
		
	
	
		
			7.6 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			284 lines
		
	
	
		
			7.6 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 repository
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"encoding/json"
 | |
| 	"fmt"
 | |
| 	"runtime/debug"
 | |
| 	"strconv"
 | |
| 	"sync"
 | |
| 	"time"
 | |
| 
 | |
| 	redisV9 "github.com/redis/go-redis/v9"
 | |
| 	"gorm.io/gorm"
 | |
| 
 | |
| 	"github.com/coze-dev/coze-studio/backend/domain/app/entity"
 | |
| 	"github.com/coze-dev/coze-studio/backend/domain/app/internal/dal"
 | |
| 	"github.com/coze-dev/coze-studio/backend/domain/app/internal/dal/query"
 | |
| 	"github.com/coze-dev/coze-studio/backend/infra/contract/idgen"
 | |
| 	"github.com/coze-dev/coze-studio/backend/pkg/lang/ptr"
 | |
| 	"github.com/coze-dev/coze-studio/backend/pkg/logs"
 | |
| 	"github.com/coze-dev/coze-studio/backend/pkg/taskgroup"
 | |
| )
 | |
| 
 | |
| type appRepoImpl struct {
 | |
| 	idGen idgen.IDGenerator
 | |
| 	query *query.Query
 | |
| 
 | |
| 	appDraftDAO         *dal.APPDraftDAO
 | |
| 	appReleaseRecordDAO *dal.APPReleaseRecordDAO
 | |
| 	appConnectorRefDAO  *dal.APPConnectorReleaseRefDAO
 | |
| 	cacheCli            *dal.AppCache
 | |
| }
 | |
| 
 | |
| type APPRepoComponents struct {
 | |
| 	IDGen    idgen.IDGenerator
 | |
| 	DB       *gorm.DB
 | |
| 	CacheCli *redisV9.Client
 | |
| }
 | |
| 
 | |
| func NewAPPRepo(components *APPRepoComponents) AppRepository {
 | |
| 	return &appRepoImpl{
 | |
| 		idGen:               components.IDGen,
 | |
| 		query:               query.Use(components.DB),
 | |
| 		appDraftDAO:         dal.NewAPPDraftDAO(components.DB, components.IDGen),
 | |
| 		appReleaseRecordDAO: dal.NewAPPReleaseRecordDAO(components.DB, components.IDGen),
 | |
| 		appConnectorRefDAO:  dal.NewAPPConnectorReleaseRefDAO(components.DB, components.IDGen),
 | |
| 		cacheCli:            dal.NewAppCache(components.CacheCli),
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (a *appRepoImpl) CreateDraftAPP(ctx context.Context, app *entity.APP) (appID int64, err error) {
 | |
| 	appID, err = a.appDraftDAO.Create(ctx, app)
 | |
| 	if err != nil {
 | |
| 		return 0, err
 | |
| 	}
 | |
| 
 | |
| 	return appID, nil
 | |
| }
 | |
| 
 | |
| func (a *appRepoImpl) GetDraftAPP(ctx context.Context, appID int64) (app *entity.APP, exist bool, err error) {
 | |
| 	return a.appDraftDAO.Get(ctx, appID)
 | |
| }
 | |
| 
 | |
| func (a *appRepoImpl) CheckDraftAPPExist(ctx context.Context, appID int64) (exist bool, err error) {
 | |
| 	return a.appDraftDAO.CheckExist(ctx, appID)
 | |
| }
 | |
| 
 | |
| func (a *appRepoImpl) DeleteDraftAPP(ctx context.Context, appID int64) (err error) {
 | |
| 	table := a.query.AppDraft
 | |
| 
 | |
| 	_, err = table.WithContext(ctx).
 | |
| 		Where(table.ID.Eq(appID)).
 | |
| 		Delete()
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (a *appRepoImpl) UpdateDraftAPP(ctx context.Context, app *entity.APP) (err error) {
 | |
| 	return a.appDraftDAO.Update(ctx, app)
 | |
| }
 | |
| 
 | |
| func (a *appRepoImpl) GetPublishRecord(ctx context.Context, req *GetPublishRecordRequest) (record *entity.PublishRecord, exist bool, err error) {
 | |
| 	var app *entity.APP
 | |
| 	if req.RecordID != nil {
 | |
| 		app, exist, err = a.appReleaseRecordDAO.GetReleaseRecordWithID(ctx, *req.RecordID)
 | |
| 	} else if req.OldestSuccess {
 | |
| 		app, exist, err = a.appReleaseRecordDAO.GetOldestReleaseSuccessRecord(ctx, req.APPID)
 | |
| 	} else {
 | |
| 		app, exist, err = a.appReleaseRecordDAO.GetLatestReleaseRecord(ctx, req.APPID)
 | |
| 	}
 | |
| 	if err != nil {
 | |
| 		return nil, false, err
 | |
| 	}
 | |
| 	if !exist {
 | |
| 		return nil, false, nil
 | |
| 	}
 | |
| 
 | |
| 	publishRecords, err := a.appConnectorRefDAO.GetAllConnectorRecords(ctx, app.GetPublishRecordID())
 | |
| 	if err != nil {
 | |
| 		return nil, false, err
 | |
| 	}
 | |
| 
 | |
| 	record = &entity.PublishRecord{
 | |
| 		APP:                     app,
 | |
| 		ConnectorPublishRecords: publishRecords,
 | |
| 	}
 | |
| 
 | |
| 	return record, true, nil
 | |
| }
 | |
| 
 | |
| func (a *appRepoImpl) CheckAPPVersionExist(ctx context.Context, appID int64, version string) (exist bool, err error) {
 | |
| 	_, exist, err = a.appReleaseRecordDAO.GetReleaseRecordWithVersion(ctx, appID, version)
 | |
| 	return exist, err
 | |
| }
 | |
| 
 | |
| func (a *appRepoImpl) CreateAPPPublishRecord(ctx context.Context, record *entity.PublishRecord) (recordID int64, err error) {
 | |
| 	tx := a.query.Begin()
 | |
| 	if tx.Error != nil {
 | |
| 		return 0, tx.Error
 | |
| 	}
 | |
| 
 | |
| 	defer func() {
 | |
| 		if r := recover(); r != nil {
 | |
| 			if e := tx.Rollback(); e != nil {
 | |
| 				logs.CtxErrorf(ctx, "rollback failed, err=%v", e)
 | |
| 			}
 | |
| 			err = fmt.Errorf("catch panic: %v\nstack=%s", r, string(debug.Stack()))
 | |
| 			return
 | |
| 		}
 | |
| 		if err != nil {
 | |
| 			if e := tx.Rollback(); e != nil {
 | |
| 				logs.CtxErrorf(ctx, "rollback failed, err=%v", e)
 | |
| 			}
 | |
| 		}
 | |
| 	}()
 | |
| 
 | |
| 	recordID, err = a.appReleaseRecordDAO.CreateWithTX(ctx, tx, record.APP)
 | |
| 	if err != nil {
 | |
| 		return 0, err
 | |
| 	}
 | |
| 
 | |
| 	err = a.appConnectorRefDAO.BatchCreateWithTX(ctx, tx, recordID, record.ConnectorPublishRecords)
 | |
| 	if err != nil {
 | |
| 		return 0, err
 | |
| 	}
 | |
| 
 | |
| 	err = tx.Commit()
 | |
| 	if err != nil {
 | |
| 		return 0, err
 | |
| 	}
 | |
| 
 | |
| 	return recordID, nil
 | |
| }
 | |
| 
 | |
| func (a *appRepoImpl) UpdateAPPPublishStatus(ctx context.Context, req *UpdateAPPPublishStatusRequest) (err error) {
 | |
| 	return a.appReleaseRecordDAO.UpdatePublishStatus(ctx, req.RecordID, req.PublishStatus, req.PublishRecordExtraInfo)
 | |
| }
 | |
| 
 | |
| func (a *appRepoImpl) UpdateConnectorPublishStatus(ctx context.Context, recordID int64, status entity.ConnectorPublishStatus) (err error) {
 | |
| 	return a.appConnectorRefDAO.UpdatePublishStatus(ctx, recordID, status)
 | |
| }
 | |
| 
 | |
| func (a *appRepoImpl) GetAPPAllPublishRecords(ctx context.Context, appID int64, opts ...APPSelectedOptions) (records []*entity.PublishRecord, err error) {
 | |
| 	var opt *dal.APPSelectedOption
 | |
| 	if len(opts) > 0 {
 | |
| 		opt = &dal.APPSelectedOption{}
 | |
| 		for _, o := range opts {
 | |
| 			o(opt)
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	apps, err := a.appReleaseRecordDAO.GetAPPAllPublishRecords(ctx, appID, opt)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	tasks := taskgroup.NewTaskGroup(ctx, 5)
 | |
| 	lock := sync.Mutex{}
 | |
| 	for _, r := range apps {
 | |
| 		tasks.Go(func() error {
 | |
| 			connectorPublishRecords, err := a.appConnectorRefDAO.GetAllConnectorPublishRecords(ctx, r.GetPublishRecordID())
 | |
| 			if err != nil {
 | |
| 				return err
 | |
| 			}
 | |
| 
 | |
| 			lock.Lock()
 | |
| 			records = append(records, &entity.PublishRecord{
 | |
| 				APP:                     r,
 | |
| 				ConnectorPublishRecords: connectorPublishRecords,
 | |
| 			})
 | |
| 			lock.Unlock()
 | |
| 
 | |
| 			return nil
 | |
| 		})
 | |
| 	}
 | |
| 
 | |
| 	err = tasks.Wait()
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	return records, nil
 | |
| }
 | |
| 
 | |
| func (a *appRepoImpl) InitResourceCopyTask(ctx context.Context, result *entity.ResourceCopyResult) (taskID string, err error) {
 | |
| 	id, err := a.idGen.GenID(ctx)
 | |
| 	if err != nil {
 | |
| 		return "", err
 | |
| 	}
 | |
| 
 | |
| 	taskID = strconv.FormatInt(id, 10)
 | |
| 
 | |
| 	b, err := json.Marshal(result)
 | |
| 	if err != nil {
 | |
| 		return "", err
 | |
| 	}
 | |
| 
 | |
| 	key := a.makeResourceCopyTaskResultKey(taskID)
 | |
| 	err = a.cacheCli.Set(ctx, key, string(b), ptr.Of(time.Hour))
 | |
| 	if err != nil {
 | |
| 		return "", err
 | |
| 	}
 | |
| 
 | |
| 	return taskID, nil
 | |
| }
 | |
| 
 | |
| func (a *appRepoImpl) SaveResourceCopyTaskResult(ctx context.Context, taskID string, result *entity.ResourceCopyResult) (err error) {
 | |
| 	b, err := json.Marshal(result)
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	key := a.makeResourceCopyTaskResultKey(taskID)
 | |
| 	err = a.cacheCli.Set(ctx, key, string(b), ptr.Of(time.Hour))
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (a *appRepoImpl) GetResourceCopyTaskResult(ctx context.Context, taskID string) (result *entity.ResourceCopyResult, exist bool, err error) {
 | |
| 	key := a.makeResourceCopyTaskResultKey(taskID)
 | |
| 
 | |
| 	b, exist, err := a.cacheCli.Get(ctx, key)
 | |
| 	if err != nil {
 | |
| 		return nil, false, err
 | |
| 	}
 | |
| 	if !exist {
 | |
| 		return nil, false, nil
 | |
| 	}
 | |
| 
 | |
| 	result = &entity.ResourceCopyResult{}
 | |
| 	err = json.Unmarshal([]byte(b), result)
 | |
| 	if err != nil {
 | |
| 		return nil, false, err
 | |
| 	}
 | |
| 
 | |
| 	return result, true, nil
 | |
| }
 | |
| 
 | |
| func (a *appRepoImpl) makeResourceCopyTaskResultKey(taskID string) string {
 | |
| 	return fmt.Sprintf("resource_copy_task_result_%s", taskID)
 | |
| }
 |