mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-11 09:45:43 +08:00
88 lines
2.3 KiB
Go
88 lines
2.3 KiB
Go
package service
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/1Panel-dev/1Panel/app/dto"
|
|
"github.com/1Panel-dev/1Panel/app/model"
|
|
"github.com/1Panel-dev/1Panel/constant"
|
|
"github.com/jinzhu/copier"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
type HostService struct{}
|
|
|
|
type IHostService interface {
|
|
GetHostInfo(id uint) (*model.Host, error)
|
|
SearchForTree(search dto.SearchForTree) ([]dto.HostTree, error)
|
|
Create(hostDto dto.HostOperate) (*dto.HostInfo, error)
|
|
Update(id uint, upMap map[string]interface{}) error
|
|
Delete(id uint) error
|
|
}
|
|
|
|
func NewIHostService() IHostService {
|
|
return &HostService{}
|
|
}
|
|
|
|
func (u *HostService) GetHostInfo(id uint) (*model.Host, error) {
|
|
host, err := hostRepo.Get(commonRepo.WithByID(id))
|
|
if err != nil {
|
|
return nil, constant.ErrRecordNotFound
|
|
}
|
|
return &host, err
|
|
}
|
|
|
|
func (u *HostService) SearchForTree(search dto.SearchForTree) ([]dto.HostTree, error) {
|
|
hosts, err := hostRepo.GetList(hostRepo.WithByInfo(search.Info))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
groups, err := groupRepo.GetList()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var datas []dto.HostTree
|
|
for _, group := range groups {
|
|
var data dto.HostTree
|
|
data.ID = group.ID + 10000
|
|
data.Label = group.Name
|
|
for _, host := range hosts {
|
|
label := fmt.Sprintf("%s@%s:%d", host.User, host.Addr, host.Port)
|
|
if host.GroupBelong == group.Name {
|
|
data.Children = append(data.Children, dto.TreeChild{ID: host.ID, Label: label})
|
|
}
|
|
}
|
|
datas = append(datas, data)
|
|
}
|
|
return datas, err
|
|
}
|
|
|
|
func (u *HostService) Create(hostDto dto.HostOperate) (*dto.HostInfo, error) {
|
|
host, _ := hostRepo.Get(commonRepo.WithByName(hostDto.Name))
|
|
if host.ID != 0 {
|
|
return nil, constant.ErrRecordExist
|
|
}
|
|
if err := copier.Copy(&host, &hostDto); err != nil {
|
|
return nil, errors.WithMessage(constant.ErrStructTransform, err.Error())
|
|
}
|
|
if err := hostRepo.Create(&host); err != nil {
|
|
return nil, err
|
|
}
|
|
var hostinfo dto.HostInfo
|
|
if err := copier.Copy(&hostinfo, &host); err != nil {
|
|
return nil, errors.WithMessage(constant.ErrStructTransform, err.Error())
|
|
}
|
|
return &hostinfo, nil
|
|
}
|
|
|
|
func (u *HostService) Delete(id uint) error {
|
|
host, _ := hostRepo.Get(commonRepo.WithByID(id))
|
|
if host.ID == 0 {
|
|
return constant.ErrRecordNotFound
|
|
}
|
|
return hostRepo.Delete(commonRepo.WithByID(id))
|
|
}
|
|
|
|
func (u *HostService) Update(id uint, upMap map[string]interface{}) error {
|
|
return hostRepo.Update(id, upMap)
|
|
}
|