2021-05-08 18:00:33 +08:00
|
|
|
|
package application
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
2023-11-07 21:05:21 +08:00
|
|
|
|
"context"
|
|
|
|
|
|
"fmt"
|
2023-12-05 23:03:51 +08:00
|
|
|
|
"mayfly-go/internal/common/consts"
|
2023-07-01 14:34:42 +08:00
|
|
|
|
"mayfly-go/internal/machine/api/vo"
|
2022-09-09 18:26:08 +08:00
|
|
|
|
"mayfly-go/internal/machine/domain/entity"
|
|
|
|
|
|
"mayfly-go/internal/machine/domain/repository"
|
2023-11-07 21:05:21 +08:00
|
|
|
|
"mayfly-go/internal/machine/infrastructure/cache"
|
2023-10-30 17:34:56 +08:00
|
|
|
|
"mayfly-go/internal/machine/mcm"
|
2023-12-05 23:03:51 +08:00
|
|
|
|
tagapp "mayfly-go/internal/tag/application"
|
2023-10-26 17:15:49 +08:00
|
|
|
|
"mayfly-go/pkg/base"
|
|
|
|
|
|
"mayfly-go/pkg/errorx"
|
2023-12-13 14:01:13 +08:00
|
|
|
|
"mayfly-go/pkg/global"
|
2023-11-07 21:05:21 +08:00
|
|
|
|
"mayfly-go/pkg/logx"
|
2022-06-02 17:41:11 +08:00
|
|
|
|
"mayfly-go/pkg/model"
|
2023-11-07 21:05:21 +08:00
|
|
|
|
"mayfly-go/pkg/scheduler"
|
2023-12-05 23:03:51 +08:00
|
|
|
|
"mayfly-go/pkg/utils/stringx"
|
2023-11-07 21:05:21 +08:00
|
|
|
|
"time"
|
2021-05-08 18:00:33 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
2021-07-28 18:03:19 +08:00
|
|
|
|
type Machine interface {
|
2023-10-26 17:15:49 +08:00
|
|
|
|
base.App[*entity.Machine]
|
2021-05-08 18:00:33 +08:00
|
|
|
|
|
2024-01-07 21:46:25 +08:00
|
|
|
|
SaveMachine(ctx context.Context, m *entity.Machine, tagIds ...uint64) error
|
2023-03-06 16:59:57 +08:00
|
|
|
|
|
|
|
|
|
|
// 测试机器连接
|
2023-10-26 17:15:49 +08:00
|
|
|
|
TestConn(me *entity.Machine) error
|
2021-05-08 18:00:33 +08:00
|
|
|
|
|
2022-04-27 10:59:02 +08:00
|
|
|
|
// 调整机器状态
|
2023-11-07 21:05:21 +08:00
|
|
|
|
ChangeStatus(ctx context.Context, id uint64, status int8) error
|
2022-04-27 10:59:02 +08:00
|
|
|
|
|
2023-11-07 21:05:21 +08:00
|
|
|
|
Delete(ctx context.Context, id uint64) error
|
2021-05-08 18:00:33 +08:00
|
|
|
|
|
|
|
|
|
|
// 分页获取机器信息列表
|
2023-10-26 17:15:49 +08:00
|
|
|
|
GetMachineList(condition *entity.MachineQuery, pageParam *model.PageParam, toEntity *[]*vo.MachineVO, orderBy ...string) (*model.PageResult[*[]*vo.MachineVO], error)
|
2021-05-08 18:00:33 +08:00
|
|
|
|
|
|
|
|
|
|
// 获取机器连接
|
2023-10-30 17:34:56 +08:00
|
|
|
|
GetCli(id uint64) (*mcm.Cli, error)
|
2022-07-23 16:41:04 +08:00
|
|
|
|
|
|
|
|
|
|
// 获取ssh隧道机器连接
|
2023-10-30 17:34:56 +08:00
|
|
|
|
GetSshTunnelMachine(id int) (*mcm.SshTunnelMachine, error)
|
2023-11-07 21:05:21 +08:00
|
|
|
|
|
|
|
|
|
|
// 定时更新机器状态信息
|
|
|
|
|
|
TimerUpdateStats()
|
|
|
|
|
|
|
|
|
|
|
|
// 获取机器运行时状态信息
|
|
|
|
|
|
GetMachineStats(machineId uint64) (*mcm.Stats, error)
|
2021-05-08 18:00:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-07-28 18:03:19 +08:00
|
|
|
|
type machineAppImpl struct {
|
2023-10-26 17:15:49 +08:00
|
|
|
|
base.AppImpl[*entity.Machine, repository.Machine]
|
|
|
|
|
|
|
2024-01-23 19:30:28 +08:00
|
|
|
|
authCertApp AuthCert `inject:"AuthCertApp"`
|
|
|
|
|
|
tagApp tagapp.TagTree `inject:"TagTreeApp"`
|
2024-01-21 22:52:20 +08:00
|
|
|
|
}
|
2023-12-05 23:03:51 +08:00
|
|
|
|
|
2024-01-21 22:52:20 +08:00
|
|
|
|
// 注入MachineRepo
|
|
|
|
|
|
func (m *machineAppImpl) InjectMachineRepo(repo repository.Machine) {
|
|
|
|
|
|
m.Repo = repo
|
2021-05-08 18:00:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 分页获取机器信息列表
|
2023-10-26 17:15:49 +08:00
|
|
|
|
func (m *machineAppImpl) GetMachineList(condition *entity.MachineQuery, pageParam *model.PageParam, toEntity *[]*vo.MachineVO, orderBy ...string) (*model.PageResult[*[]*vo.MachineVO], error) {
|
|
|
|
|
|
return m.GetRepo().GetMachineList(condition, pageParam, toEntity, orderBy...)
|
2021-05-08 18:00:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-01-07 21:46:25 +08:00
|
|
|
|
func (m *machineAppImpl) SaveMachine(ctx context.Context, me *entity.Machine, tagIds ...uint64) error {
|
2023-12-11 01:00:09 +08:00
|
|
|
|
oldMachine := &entity.Machine{
|
|
|
|
|
|
Ip: me.Ip,
|
|
|
|
|
|
Port: me.Port,
|
|
|
|
|
|
Username: me.Username,
|
|
|
|
|
|
SshTunnelMachineId: me.SshTunnelMachineId,
|
2023-03-17 09:46:41 +08:00
|
|
|
|
}
|
2023-12-11 01:00:09 +08:00
|
|
|
|
|
2023-10-26 17:15:49 +08:00
|
|
|
|
err := m.GetBy(oldMachine)
|
2021-07-28 18:03:19 +08:00
|
|
|
|
|
2024-01-05 08:55:34 +08:00
|
|
|
|
if errEnc := me.PwdEncrypt(); errEnc != nil {
|
|
|
|
|
|
return errorx.NewBiz(errEnc.Error())
|
|
|
|
|
|
}
|
2023-03-06 16:59:57 +08:00
|
|
|
|
if me.Id == 0 {
|
2023-10-26 17:15:49 +08:00
|
|
|
|
if err == nil {
|
|
|
|
|
|
return errorx.NewBiz("该机器信息已存在")
|
|
|
|
|
|
}
|
2023-12-05 23:03:51 +08:00
|
|
|
|
resouceCode := stringx.Rand(16)
|
|
|
|
|
|
me.Code = resouceCode
|
2022-04-27 10:59:02 +08:00
|
|
|
|
// 新增机器,默认启用状态
|
|
|
|
|
|
me.Status = entity.MachineStatusEnable
|
2023-12-05 23:03:51 +08:00
|
|
|
|
|
|
|
|
|
|
return m.Tx(ctx, func(ctx context.Context) error {
|
|
|
|
|
|
return m.Insert(ctx, me)
|
|
|
|
|
|
}, func(ctx context.Context) error {
|
2024-01-23 19:30:28 +08:00
|
|
|
|
return m.tagApp.RelateResource(ctx, resouceCode, consts.TagResourceTypeMachine, tagIds)
|
2023-12-05 23:03:51 +08:00
|
|
|
|
})
|
2021-05-08 18:00:33 +08:00
|
|
|
|
}
|
2023-03-06 16:59:57 +08:00
|
|
|
|
|
|
|
|
|
|
// 如果存在该库,则校验修改的库是否为该库
|
2023-10-26 17:15:49 +08:00
|
|
|
|
if err == nil && oldMachine.Id != me.Id {
|
|
|
|
|
|
return errorx.NewBiz("该机器信息已存在")
|
2023-03-06 16:59:57 +08:00
|
|
|
|
}
|
2023-12-20 23:01:51 +08:00
|
|
|
|
// 如果调整了ssh username等会查不到旧数据,故需要根据id获取旧信息将code赋值给标签进行关联
|
|
|
|
|
|
if oldMachine.Code == "" {
|
|
|
|
|
|
oldMachine, _ = m.GetById(new(entity.Machine), me.Id)
|
|
|
|
|
|
}
|
2023-03-06 16:59:57 +08:00
|
|
|
|
|
|
|
|
|
|
// 关闭连接
|
2023-10-30 17:34:56 +08:00
|
|
|
|
mcm.DeleteCli(me.Id)
|
2023-12-05 23:03:51 +08:00
|
|
|
|
return m.Tx(ctx, func(ctx context.Context) error {
|
|
|
|
|
|
return m.UpdateById(ctx, me)
|
|
|
|
|
|
}, func(ctx context.Context) error {
|
2024-01-23 19:30:28 +08:00
|
|
|
|
return m.tagApp.RelateResource(ctx, oldMachine.Code, consts.TagResourceTypeMachine, tagIds)
|
2023-12-05 23:03:51 +08:00
|
|
|
|
})
|
2023-03-06 16:59:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2023-10-26 17:15:49 +08:00
|
|
|
|
func (m *machineAppImpl) TestConn(me *entity.Machine) error {
|
2023-03-06 16:59:57 +08:00
|
|
|
|
me.Id = 0
|
2023-10-26 17:15:49 +08:00
|
|
|
|
mi, err := m.toMachineInfo(me)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return err
|
|
|
|
|
|
}
|
2023-10-30 17:34:56 +08:00
|
|
|
|
cli, err := mi.Conn()
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return err
|
|
|
|
|
|
}
|
|
|
|
|
|
cli.Close()
|
|
|
|
|
|
return nil
|
2021-05-08 18:00:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2023-11-07 21:05:21 +08:00
|
|
|
|
func (m *machineAppImpl) ChangeStatus(ctx context.Context, id uint64, status int8) error {
|
2022-04-27 10:59:02 +08:00
|
|
|
|
if status == entity.MachineStatusDisable {
|
|
|
|
|
|
// 关闭连接
|
2023-10-30 17:34:56 +08:00
|
|
|
|
mcm.DeleteCli(id)
|
2022-04-27 10:59:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
machine := new(entity.Machine)
|
|
|
|
|
|
machine.Id = id
|
|
|
|
|
|
machine.Status = status
|
2023-11-07 21:05:21 +08:00
|
|
|
|
return m.UpdateById(ctx, machine)
|
2022-04-27 10:59:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-05-08 18:00:33 +08:00
|
|
|
|
// 根据条件获取机器信息
|
2023-11-07 21:05:21 +08:00
|
|
|
|
func (m *machineAppImpl) Delete(ctx context.Context, id uint64) error {
|
2023-12-13 14:01:13 +08:00
|
|
|
|
machine, err := m.GetById(new(entity.Machine), id)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return errorx.NewBiz("机器信息不存在")
|
|
|
|
|
|
}
|
2021-07-28 18:03:19 +08:00
|
|
|
|
// 关闭连接
|
2023-10-30 17:34:56 +08:00
|
|
|
|
mcm.DeleteCli(id)
|
2023-12-13 14:01:13 +08:00
|
|
|
|
|
|
|
|
|
|
// 发布机器删除事件
|
|
|
|
|
|
global.EventBus.Publish(ctx, consts.DeleteMachineEventTopic, machine)
|
|
|
|
|
|
return m.Tx(ctx,
|
|
|
|
|
|
func(ctx context.Context) error {
|
|
|
|
|
|
return m.DeleteById(ctx, id)
|
|
|
|
|
|
}, func(ctx context.Context) error {
|
|
|
|
|
|
var tagIds []uint64
|
2024-01-23 19:30:28 +08:00
|
|
|
|
return m.tagApp.RelateResource(ctx, machine.Code, consts.TagResourceTypeMachine, tagIds)
|
2023-12-13 14:01:13 +08:00
|
|
|
|
})
|
2021-07-28 18:03:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2023-10-30 17:34:56 +08:00
|
|
|
|
func (m *machineAppImpl) GetCli(machineId uint64) (*mcm.Cli, error) {
|
|
|
|
|
|
return mcm.GetMachineCli(machineId, func(mid uint64) (*mcm.MachineInfo, error) {
|
2023-03-06 16:59:57 +08:00
|
|
|
|
return m.toMachineInfoById(mid)
|
2021-05-08 18:00:33 +08:00
|
|
|
|
})
|
|
|
|
|
|
}
|
2022-07-23 16:41:04 +08:00
|
|
|
|
|
2023-10-30 17:34:56 +08:00
|
|
|
|
func (m *machineAppImpl) GetSshTunnelMachine(machineId int) (*mcm.SshTunnelMachine, error) {
|
|
|
|
|
|
return mcm.GetSshTunnelMachine(machineId, func(mid uint64) (*mcm.MachineInfo, error) {
|
2023-03-06 16:59:57 +08:00
|
|
|
|
return m.toMachineInfoById(mid)
|
2022-07-23 16:41:04 +08:00
|
|
|
|
})
|
|
|
|
|
|
}
|
2023-03-06 16:59:57 +08:00
|
|
|
|
|
2023-11-07 21:05:21 +08:00
|
|
|
|
func (m *machineAppImpl) TimerUpdateStats() {
|
|
|
|
|
|
logx.Debug("开始定时收集并缓存服务器状态信息...")
|
|
|
|
|
|
scheduler.AddFun("@every 2m", func() {
|
|
|
|
|
|
machineIds := new([]entity.Machine)
|
|
|
|
|
|
m.GetRepo().ListByCond(&entity.Machine{Status: entity.MachineStatusEnable}, machineIds, "id")
|
|
|
|
|
|
for _, ma := range *machineIds {
|
|
|
|
|
|
go func(mid uint64) {
|
|
|
|
|
|
defer func() {
|
|
|
|
|
|
if err := recover(); err != nil {
|
|
|
|
|
|
logx.ErrorTrace(fmt.Sprintf("定时获取机器[id=%d]状态信息失败", mid), err.(error))
|
|
|
|
|
|
}
|
|
|
|
|
|
}()
|
|
|
|
|
|
logx.Debugf("定时获取机器[id=%d]状态信息开始", mid)
|
|
|
|
|
|
cli, err := m.GetCli(mid)
|
|
|
|
|
|
// ssh获取客户端失败,则更新机器状态为禁用
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
updateMachine := &entity.Machine{Status: entity.MachineStatusDisable}
|
|
|
|
|
|
updateMachine.Id = mid
|
|
|
|
|
|
now := time.Now()
|
|
|
|
|
|
updateMachine.UpdateTime = &now
|
|
|
|
|
|
m.UpdateById(context.TODO(), updateMachine)
|
|
|
|
|
|
}
|
|
|
|
|
|
cache.SaveMachineStats(mid, cli.GetAllStats())
|
|
|
|
|
|
logx.Debugf("定时获取机器[id=%d]状态信息结束", mid)
|
|
|
|
|
|
}(ma.Id)
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (m *machineAppImpl) GetMachineStats(machineId uint64) (*mcm.Stats, error) {
|
|
|
|
|
|
return cache.GetMachineStats(machineId)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-03-06 16:59:57 +08:00
|
|
|
|
// 生成机器信息,根据授权凭证id填充用户密码等
|
2023-10-30 17:34:56 +08:00
|
|
|
|
func (m *machineAppImpl) toMachineInfoById(machineId uint64) (*mcm.MachineInfo, error) {
|
2023-10-26 17:15:49 +08:00
|
|
|
|
me, err := m.GetById(new(entity.Machine), machineId)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return nil, errorx.NewBiz("机器信息不存在")
|
|
|
|
|
|
}
|
|
|
|
|
|
if me.Status != entity.MachineStatusEnable {
|
|
|
|
|
|
return nil, errorx.NewBiz("该机器已被停用")
|
|
|
|
|
|
}
|
2023-03-06 16:59:57 +08:00
|
|
|
|
|
2023-10-30 17:34:56 +08:00
|
|
|
|
if mi, err := m.toMachineInfo(me); err != nil {
|
|
|
|
|
|
return nil, err
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return mi, nil
|
|
|
|
|
|
}
|
2023-03-06 16:59:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2023-10-30 17:34:56 +08:00
|
|
|
|
func (m *machineAppImpl) toMachineInfo(me *entity.Machine) (*mcm.MachineInfo, error) {
|
|
|
|
|
|
mi := new(mcm.MachineInfo)
|
2023-03-06 16:59:57 +08:00
|
|
|
|
mi.Id = me.Id
|
|
|
|
|
|
mi.Name = me.Name
|
|
|
|
|
|
mi.Ip = me.Ip
|
|
|
|
|
|
mi.Port = me.Port
|
|
|
|
|
|
mi.Username = me.Username
|
2024-01-23 19:30:28 +08:00
|
|
|
|
mi.TagPath = m.tagApp.ListTagPathByResource(consts.TagResourceTypeMachine, me.Code)
|
2023-03-06 16:59:57 +08:00
|
|
|
|
mi.EnableRecorder = me.EnableRecorder
|
|
|
|
|
|
|
|
|
|
|
|
if me.UseAuthCert() {
|
2024-01-23 19:30:28 +08:00
|
|
|
|
ac, err := m.authCertApp.GetById(new(entity.AuthCert), uint64(me.AuthCertId))
|
2023-10-26 17:15:49 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
|
return nil, errorx.NewBiz("授权凭证信息已不存在,请重新关联")
|
|
|
|
|
|
}
|
2023-03-06 16:59:57 +08:00
|
|
|
|
mi.AuthMethod = ac.AuthMethod
|
2024-01-05 08:55:34 +08:00
|
|
|
|
if err := ac.PwdDecrypt(); err != nil {
|
|
|
|
|
|
return nil, errorx.NewBiz(err.Error())
|
|
|
|
|
|
}
|
2023-03-06 16:59:57 +08:00
|
|
|
|
mi.Password = ac.Password
|
|
|
|
|
|
mi.Passphrase = ac.Passphrase
|
|
|
|
|
|
} else {
|
|
|
|
|
|
mi.AuthMethod = entity.AuthCertAuthMethodPassword
|
|
|
|
|
|
if me.Id != 0 {
|
2024-01-05 08:55:34 +08:00
|
|
|
|
if err := me.PwdDecrypt(); err != nil {
|
|
|
|
|
|
return nil, errorx.NewBiz(err.Error())
|
|
|
|
|
|
}
|
2023-03-06 16:59:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
mi.Password = me.Password
|
|
|
|
|
|
}
|
2023-10-30 17:34:56 +08:00
|
|
|
|
|
|
|
|
|
|
// 使用了ssh隧道,则将隧道机器信息也附上
|
|
|
|
|
|
if me.SshTunnelMachineId > 0 {
|
|
|
|
|
|
sshTunnelMe, err := m.GetById(new(entity.Machine), uint64(me.SshTunnelMachineId))
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return nil, errorx.NewBiz("隧道机器信息不存在")
|
|
|
|
|
|
}
|
|
|
|
|
|
sshTunnelMi, err := m.toMachineInfo(sshTunnelMe)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return nil, err
|
|
|
|
|
|
}
|
|
|
|
|
|
mi.SshTunnelMachine = sshTunnelMi
|
|
|
|
|
|
}
|
2023-10-26 17:15:49 +08:00
|
|
|
|
return mi, nil
|
2023-03-06 16:59:57 +08:00
|
|
|
|
}
|