2021-05-08 18:00:33 +08:00
|
|
|
package persistence
|
|
|
|
|
|
|
|
|
|
import (
|
2021-12-11 11:19:47 +08:00
|
|
|
"fmt"
|
2022-09-09 18:26:08 +08:00
|
|
|
"mayfly-go/internal/machine/domain/entity"
|
|
|
|
|
"mayfly-go/internal/machine/domain/repository"
|
2022-07-23 16:41:04 +08:00
|
|
|
"mayfly-go/pkg/biz"
|
2022-06-02 17:41:11 +08:00
|
|
|
"mayfly-go/pkg/model"
|
2021-05-08 18:00:33 +08:00
|
|
|
)
|
|
|
|
|
|
2022-09-09 18:26:08 +08:00
|
|
|
type machineRepoImpl struct{}
|
2021-05-08 18:00:33 +08:00
|
|
|
|
2022-09-09 18:26:08 +08:00
|
|
|
func newMachineRepo() repository.Machine {
|
|
|
|
|
return new(machineRepoImpl)
|
|
|
|
|
}
|
2021-05-08 18:00:33 +08:00
|
|
|
|
|
|
|
|
// 分页获取机器信息列表
|
2023-06-01 12:31:32 +08:00
|
|
|
func (m *machineRepoImpl) GetMachineList(condition *entity.MachineQuery, pageParam *model.PageParam, toEntity any, orderBy ...string) *model.PageResult {
|
2022-10-26 20:49:29 +08:00
|
|
|
sql := "SELECT m.* FROM t_machine m WHERE 1 = 1 "
|
2022-10-31 18:39:52 +08:00
|
|
|
|
2023-06-01 12:31:32 +08:00
|
|
|
values := make([]any, 0)
|
2021-12-11 11:19:47 +08:00
|
|
|
if condition.Ip != "" {
|
2022-10-31 18:39:52 +08:00
|
|
|
sql = sql + " AND m.ip LIKE ?"
|
|
|
|
|
values = append(values, "%"+condition.Ip+"%")
|
2021-12-11 11:19:47 +08:00
|
|
|
}
|
2022-04-24 20:26:58 +08:00
|
|
|
if condition.Name != "" {
|
2022-10-31 18:39:52 +08:00
|
|
|
sql = sql + " AND m.name LIKE ?"
|
|
|
|
|
values = append(values, "%"+condition.Name+"%")
|
2022-04-24 20:26:58 +08:00
|
|
|
}
|
2022-10-26 20:49:29 +08:00
|
|
|
if len(condition.TagIds) > 0 {
|
2023-03-06 16:59:57 +08:00
|
|
|
sql = fmt.Sprintf("%s AND m.tag_id IN ? ", sql)
|
|
|
|
|
values = append(values, condition.TagIds)
|
2022-10-26 20:49:29 +08:00
|
|
|
}
|
|
|
|
|
if condition.TagPathLike != "" {
|
2022-10-31 18:39:52 +08:00
|
|
|
sql = sql + " AND m.tag_path LIKE ?"
|
|
|
|
|
values = append(values, condition.TagPathLike+"%")
|
2022-10-26 20:49:29 +08:00
|
|
|
}
|
2022-10-29 20:08:15 +08:00
|
|
|
sql = sql + " ORDER BY m.tag_path"
|
2022-10-31 18:39:52 +08:00
|
|
|
return model.GetPageBySql(sql, pageParam, toEntity, values...)
|
2021-05-08 18:00:33 +08:00
|
|
|
}
|
|
|
|
|
|
2022-10-26 20:49:29 +08:00
|
|
|
func (m *machineRepoImpl) Count(condition *entity.MachineQuery) 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
|
|
|
|
|
}
|
|
|
|
|
if condition.TagId != 0 {
|
|
|
|
|
where["tag_id"] = condition.TagId
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return model.CountByMap(new(entity.Machine), where)
|
2021-09-11 14:04:09 +08:00
|
|
|
}
|
|
|
|
|
|
2021-05-08 18:00:33 +08:00
|
|
|
// 根据条件获取账号信息
|
2022-09-09 18:26:08 +08:00
|
|
|
func (m *machineRepoImpl) GetMachine(condition *entity.Machine, cols ...string) error {
|
2021-05-08 18:00:33 +08:00
|
|
|
return model.GetBy(condition, cols...)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 根据id获取
|
2022-09-09 18:26:08 +08:00
|
|
|
func (m *machineRepoImpl) GetById(id uint64, cols ...string) *entity.Machine {
|
2021-05-08 18:00:33 +08:00
|
|
|
machine := new(entity.Machine)
|
|
|
|
|
if err := model.GetById(machine, id, cols...); err != nil {
|
|
|
|
|
return nil
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
return machine
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-09 18:26:08 +08:00
|
|
|
func (m *machineRepoImpl) Create(entity *entity.Machine) {
|
2022-07-23 16:41:04 +08:00
|
|
|
biz.ErrIsNilAppendErr(model.Insert(entity), "创建机器信息失败: %s")
|
2021-05-08 18:00:33 +08:00
|
|
|
}
|
|
|
|
|
|
2022-09-09 18:26:08 +08:00
|
|
|
func (m *machineRepoImpl) UpdateById(entity *entity.Machine) {
|
2022-07-23 16:41:04 +08:00
|
|
|
biz.ErrIsNilAppendErr(model.UpdateById(entity), "更新机器信息失败: %s")
|
2021-05-08 18:00:33 +08:00
|
|
|
}
|