2021-05-08 18:00:33 +08:00
|
|
|
|
package entity
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
2022-08-02 21:44:01 +08:00
|
|
|
|
"mayfly-go/internal/common/utils"
|
2022-06-02 17:41:11 +08:00
|
|
|
|
"mayfly-go/pkg/model"
|
2021-05-08 18:00:33 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
type Machine struct {
|
|
|
|
|
|
model.Model
|
2022-07-23 16:41:04 +08:00
|
|
|
|
ProjectId uint64 `json:"projectId"`
|
|
|
|
|
|
ProjectName string `json:"projectName"`
|
|
|
|
|
|
Name string `json:"name"`
|
|
|
|
|
|
Ip string `json:"ip"` // IP地址
|
|
|
|
|
|
Username string `json:"username"` // 用户名
|
|
|
|
|
|
AuthMethod int8 `json:"authMethod"` // 授权认证方式
|
|
|
|
|
|
Password string `json:"-"`
|
|
|
|
|
|
Port int `json:"port"` // 端口号
|
|
|
|
|
|
Status int8 `json:"status"` // 状态 1:启用;2:停用
|
|
|
|
|
|
Remark string `json:"remark"` // 备注
|
|
|
|
|
|
EnableSshTunnel int8 `json:"enableSshTunnel"` // 是否启用ssh隧道
|
|
|
|
|
|
SshTunnelMachineId uint64 `json:"sshTunnelMachineId"` // ssh隧道机器id
|
2021-05-08 18:00:33 +08:00
|
|
|
|
}
|
2022-04-27 10:59:02 +08:00
|
|
|
|
|
|
|
|
|
|
const (
|
2022-07-20 23:25:52 +08:00
|
|
|
|
MachineStatusEnable int8 = 1 // 启用状态
|
|
|
|
|
|
MachineStatusDisable int8 = -1 // 禁用状态
|
|
|
|
|
|
MachineAuthMethodPassword int8 = 1 // 密码登录
|
|
|
|
|
|
MachineAuthMethodPublicKey int8 = 2 // 公钥免密登录
|
2022-04-27 10:59:02 +08:00
|
|
|
|
)
|
2022-08-02 21:44:01 +08:00
|
|
|
|
|
|
|
|
|
|
func (m *Machine) PwdEncrypt() {
|
|
|
|
|
|
// 密码替换为加密后的密码
|
|
|
|
|
|
m.Password = utils.PwdAesEncrypt(m.Password)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (m *Machine) PwdDecrypt() {
|
|
|
|
|
|
// 密码替换为解密后的密码
|
|
|
|
|
|
m.Password = utils.PwdAesDecrypt(m.Password)
|
|
|
|
|
|
}
|