2022-05-17 20:23:08 +08:00
|
|
|
package persistence
|
|
|
|
|
|
|
|
|
|
import (
|
2022-09-09 18:26:08 +08:00
|
|
|
"mayfly-go/internal/mongo/domain/entity"
|
|
|
|
|
"mayfly-go/internal/mongo/domain/repository"
|
2022-06-02 17:41:11 +08:00
|
|
|
"mayfly-go/pkg/biz"
|
2023-07-01 14:34:42 +08:00
|
|
|
"mayfly-go/pkg/gormx"
|
2022-06-02 17:41:11 +08:00
|
|
|
"mayfly-go/pkg/model"
|
2022-05-17 20:23:08 +08:00
|
|
|
)
|
|
|
|
|
|
2022-09-09 18:26:08 +08:00
|
|
|
type mongoRepoImpl struct{}
|
2022-05-17 20:23:08 +08:00
|
|
|
|
2022-09-09 18:26:08 +08:00
|
|
|
func newMongoRepo() repository.Mongo {
|
|
|
|
|
return new(mongoRepoImpl)
|
|
|
|
|
}
|
2022-05-17 20:23:08 +08:00
|
|
|
|
|
|
|
|
// 分页获取数据库信息列表
|
2023-07-01 14:34:42 +08:00
|
|
|
func (d *mongoRepoImpl) GetList(condition *entity.MongoQuery, pageParam *model.PageParam, toEntity any, orderBy ...string) *model.PageResult[any] {
|
|
|
|
|
qd := gormx.NewQuery(new(entity.Mongo)).
|
|
|
|
|
Like("name", condition.Name).
|
|
|
|
|
In("tag_id", condition.TagIds).
|
2023-07-08 20:05:55 +08:00
|
|
|
RLike("tag_path", condition.TagPath).
|
2023-07-01 14:34:42 +08:00
|
|
|
OrderByAsc("tag_path")
|
|
|
|
|
return gormx.PageQuery(qd, pageParam, toEntity)
|
2022-05-17 20:23:08 +08:00
|
|
|
}
|
|
|
|
|
|
2022-10-26 20:49:29 +08:00
|
|
|
func (d *mongoRepoImpl) Count(condition *entity.MongoQuery) int64 {
|
2023-06-01 12:31:32 +08:00
|
|
|
where := make(map[string]any)
|
2022-10-26 20:49:29 +08:00
|
|
|
if len(condition.TagIds) > 0 {
|
|
|
|
|
where["tag_id"] = condition.TagIds
|
|
|
|
|
}
|
2023-07-01 14:34:42 +08:00
|
|
|
return gormx.CountByCond(new(entity.Mongo), where)
|
2022-05-17 20:23:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 根据条件获取
|
2022-09-09 18:26:08 +08:00
|
|
|
func (d *mongoRepoImpl) Get(condition *entity.Mongo, cols ...string) error {
|
2023-07-01 14:34:42 +08:00
|
|
|
return gormx.GetBy(condition, cols...)
|
2022-05-17 20:23:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 根据id获取
|
2022-09-09 18:26:08 +08:00
|
|
|
func (d *mongoRepoImpl) GetById(id uint64, cols ...string) *entity.Mongo {
|
2022-05-17 20:23:08 +08:00
|
|
|
db := new(entity.Mongo)
|
2023-07-01 14:34:42 +08:00
|
|
|
if err := gormx.GetById(db, id, cols...); err != nil {
|
2022-05-17 20:23:08 +08:00
|
|
|
return nil
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
return db
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-09 18:26:08 +08:00
|
|
|
func (d *mongoRepoImpl) Insert(db *entity.Mongo) {
|
2023-07-01 14:34:42 +08:00
|
|
|
biz.ErrIsNil(gormx.Insert(db), "新增mongo信息失败")
|
2022-05-17 20:23:08 +08:00
|
|
|
}
|
|
|
|
|
|
2022-09-09 18:26:08 +08:00
|
|
|
func (d *mongoRepoImpl) Update(db *entity.Mongo) {
|
2023-07-01 14:34:42 +08:00
|
|
|
biz.ErrIsNil(gormx.UpdateById(db), "更新mongo信息失败")
|
2022-05-17 20:23:08 +08:00
|
|
|
}
|
|
|
|
|
|
2022-09-09 18:26:08 +08:00
|
|
|
func (d *mongoRepoImpl) Delete(id uint64) {
|
2023-07-01 14:34:42 +08:00
|
|
|
gormx.DeleteById(new(entity.Mongo), id)
|
2022-05-17 20:23:08 +08:00
|
|
|
}
|