Files
mayfly-go/server/internal/mongo/application/mongo.go

144 lines
4.0 KiB
Go
Raw Normal View History

2022-05-17 20:23:08 +08:00
package application
import (
"context"
"mayfly-go/internal/common/consts"
2022-09-09 18:26:08 +08:00
"mayfly-go/internal/mongo/domain/entity"
"mayfly-go/internal/mongo/domain/repository"
"mayfly-go/internal/mongo/mgm"
tagapp "mayfly-go/internal/tag/application"
tagdto "mayfly-go/internal/tag/application/dto"
tagentity "mayfly-go/internal/tag/domain/entity"
"mayfly-go/pkg/base"
"mayfly-go/pkg/errorx"
"mayfly-go/pkg/model"
2022-05-17 20:23:08 +08:00
)
type Mongo interface {
base.App[*entity.Mongo]
2022-05-17 20:23:08 +08:00
// 分页获取机器脚本信息列表
GetPageList(condition *entity.MongoQuery, pageParam *model.PageParam, toEntity any, orderBy ...string) (*model.PageResult[any], error)
2022-05-17 20:23:08 +08:00
TestConn(entity *entity.Mongo) error
SaveMongo(ctx context.Context, entity *entity.Mongo, tagCodePaths ...string) error
2022-05-17 20:23:08 +08:00
// 删除数据库信息
Delete(ctx context.Context, id uint64) error
2022-05-17 20:23:08 +08:00
2023-08-25 19:41:52 +08:00
// 获取mongo连接实例
2022-05-17 20:23:08 +08:00
// @param id mongo id
GetMongoConn(id uint64) (*mgm.MongoConn, error)
2022-05-17 20:23:08 +08:00
}
2022-09-09 18:26:08 +08:00
type mongoAppImpl struct {
base.AppImpl[*entity.Mongo, repository.Mongo]
tagApp tagapp.TagTree `inject:"TagTreeApp"`
2024-01-21 22:52:20 +08:00
}
// 注入MongoRepo
func (d *mongoAppImpl) InjectMongoRepo(repo repository.Mongo) {
d.Repo = repo
2022-05-17 20:23:08 +08:00
}
// 分页获取数据库信息列表
func (d *mongoAppImpl) GetPageList(condition *entity.MongoQuery, pageParam *model.PageParam, toEntity any, orderBy ...string) (*model.PageResult[any], error) {
return d.GetRepo().GetList(condition, pageParam, toEntity, orderBy...)
2022-05-17 20:23:08 +08:00
}
func (d *mongoAppImpl) Delete(ctx context.Context, id uint64) error {
2024-05-05 14:53:30 +08:00
mongoEntity, err := d.GetById(id)
if err != nil {
return errorx.NewBiz("mongo信息不存在")
}
mgm.CloseConn(id)
return d.Tx(ctx,
func(ctx context.Context) error {
return d.DeleteById(ctx, id)
},
func(ctx context.Context) error {
return d.tagApp.SaveResourceTag(ctx, &tagdto.SaveResourceTag{ResourceTag: &tagdto.ResourceTag{
2024-04-12 13:24:20 +08:00
Type: tagentity.TagTypeMongo,
Code: mongoEntity.Code,
}})
})
2022-05-17 20:23:08 +08:00
}
func (d *mongoAppImpl) TestConn(me *entity.Mongo) error {
conn, err := me.ToMongoInfo().Conn()
if err != nil {
return err
}
conn.Close()
return nil
}
func (d *mongoAppImpl) SaveMongo(ctx context.Context, m *entity.Mongo, tagCodePaths ...string) error {
2023-12-20 23:01:51 +08:00
oldMongo := &entity.Mongo{Name: m.Name, SshTunnelMachineId: m.SshTunnelMachineId}
err := d.GetByCond(oldMongo)
2022-05-17 20:23:08 +08:00
if m.Id == 0 {
if err == nil {
return errorx.NewBiz("该名称已存在")
}
2024-04-06 18:19:17 +08:00
if d.CountByCond(&entity.Mongo{Code: m.Code}) > 0 {
return errorx.NewBiz("该编码已存在")
}
return d.Tx(ctx, func(ctx context.Context) error {
return d.Insert(ctx, m)
}, func(ctx context.Context) error {
return d.tagApp.SaveResourceTag(ctx, &tagdto.SaveResourceTag{
ResourceTag: &tagdto.ResourceTag{
Type: tagentity.TagTypeMongo,
Code: m.Code,
},
ParentTagCodePaths: tagCodePaths,
2024-04-06 18:19:17 +08:00
})
})
}
// 如果存在该库,则校验修改的库是否为该库
if err == nil && oldMongo.Id != m.Id {
return errorx.NewBiz("该名称已存在")
2022-05-17 20:23:08 +08:00
}
2023-12-20 23:01:51 +08:00
// 如果调整了ssh等会查不到旧数据故需要根据id获取旧信息将code赋值给标签进行关联
if oldMongo.Code == "" {
2024-05-05 14:53:30 +08:00
oldMongo, _ = d.GetById(m.Id)
2023-12-20 23:01:51 +08:00
}
// 先关闭连接
mgm.CloseConn(m.Id)
2024-04-06 18:19:17 +08:00
m.Code = ""
return d.Tx(ctx, func(ctx context.Context) error {
return d.UpdateById(ctx, m)
}, func(ctx context.Context) error {
if oldMongo.Name != m.Name {
if err := d.tagApp.UpdateTagName(ctx, tagentity.TagTypeMachine, oldMongo.Code, m.Name); err != nil {
return err
}
}
return d.tagApp.SaveResourceTag(ctx, &tagdto.SaveResourceTag{
ResourceTag: &tagdto.ResourceTag{
Type: tagentity.TagTypeMongo,
Code: oldMongo.Code,
},
ParentTagCodePaths: tagCodePaths,
2024-04-06 18:19:17 +08:00
})
})
2022-05-17 20:23:08 +08:00
}
func (d *mongoAppImpl) GetMongoConn(id uint64) (*mgm.MongoConn, error) {
return mgm.GetMongoConn(id, func() (*mgm.MongoInfo, error) {
2024-05-05 14:53:30 +08:00
me, err := d.GetById(id)
2022-05-17 20:23:08 +08:00
if err != nil {
return nil, errorx.NewBiz("mongo信息不存在")
2022-05-17 20:23:08 +08:00
}
2024-04-12 13:24:20 +08:00
return me.ToMongoInfo(d.tagApp.ListTagPathByTypeAndCode(consts.ResourceTypeMongo, me.Code)...), nil
2022-05-17 20:23:08 +08:00
})
}