108 lines
2.7 KiB
Go
108 lines
2.7 KiB
Go
/*
|
|
* Copyright 2023 The Dragonfly 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 service
|
|
|
|
import (
|
|
"context"
|
|
|
|
"d7y.io/dragonfly/v2/manager/models"
|
|
"d7y.io/dragonfly/v2/manager/types"
|
|
"d7y.io/dragonfly/v2/pkg/structure"
|
|
)
|
|
|
|
func (s *service) CreateModel(ctx context.Context, json types.CreateModelRequest) (*models.Model, error) {
|
|
evaluation, err := structure.StructToMap(json.Evaluation)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
model := models.Model{
|
|
Type: json.Type,
|
|
BIO: json.BIO,
|
|
Version: json.Version,
|
|
Evaluation: evaluation,
|
|
SchedulerID: json.SchedulerID,
|
|
}
|
|
|
|
if err := s.db.WithContext(ctx).Create(&model).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &model, nil
|
|
}
|
|
|
|
func (s *service) DestroyModel(ctx context.Context, id uint) error {
|
|
model := models.Model{}
|
|
if err := s.db.WithContext(ctx).First(&model, id).Error; err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := s.db.WithContext(ctx).Unscoped().Delete(&models.Model{}, id).Error; err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (s *service) UpdateModel(ctx context.Context, id uint, json types.UpdateModelRequest) (*models.Model, error) {
|
|
var (
|
|
evaluation map[string]any
|
|
err error
|
|
)
|
|
if json.Evaluation != nil {
|
|
evaluation, err = structure.StructToMap(json.Evaluation)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
model := models.Model{}
|
|
if err := s.db.WithContext(ctx).First(&model, id).Updates(models.Model{
|
|
BIO: json.BIO,
|
|
State: json.State,
|
|
Evaluation: evaluation,
|
|
SchedulerID: json.SchedulerID,
|
|
}).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &model, nil
|
|
}
|
|
|
|
func (s *service) GetModel(ctx context.Context, id uint) (*models.Model, error) {
|
|
model := models.Model{}
|
|
if err := s.db.WithContext(ctx).First(&model, id).Error; err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &model, nil
|
|
}
|
|
|
|
func (s *service) GetModels(ctx context.Context, q types.GetModelsQuery) ([]models.Model, int64, error) {
|
|
var count int64
|
|
var model []models.Model
|
|
if err := s.db.WithContext(ctx).Scopes(models.Paginate(q.Page, q.PerPage)).Where(&models.Model{
|
|
Type: q.Type,
|
|
Version: q.Version,
|
|
SchedulerID: q.SchedulerID,
|
|
}).Find(&model).Limit(-1).Offset(-1).Count(&count).Error; err != nil {
|
|
return nil, 0, err
|
|
}
|
|
|
|
return model, count, nil
|
|
}
|